mirror of
https://github.com/YunoHost-Apps/webtrees_ynh.git
synced 2024-09-03 18:26:37 +02:00
199 lines
6.9 KiB
PHP
199 lines
6.9 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* webtrees: online genealogy
|
||
|
* Copyright (C) 2016 webtrees development team
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
namespace Fisharebest\Webtrees\Module;
|
||
|
|
||
|
use Fisharebest\Webtrees\Auth;
|
||
|
use Fisharebest\Webtrees\Database;
|
||
|
use Fisharebest\Webtrees\Filter;
|
||
|
use Fisharebest\Webtrees\Functions\FunctionsDate;
|
||
|
use Fisharebest\Webtrees\Functions\FunctionsEdit;
|
||
|
use Fisharebest\Webtrees\GedcomRecord;
|
||
|
use Fisharebest\Webtrees\I18N;
|
||
|
use Fisharebest\Webtrees\Mail;
|
||
|
use Fisharebest\Webtrees\Site;
|
||
|
use Fisharebest\Webtrees\Theme;
|
||
|
use Fisharebest\Webtrees\Tree;
|
||
|
use Fisharebest\Webtrees\User;
|
||
|
|
||
|
/**
|
||
|
* Class ReviewChangesModule
|
||
|
*/
|
||
|
class ReviewChangesModule extends AbstractModule implements ModuleBlockInterface {
|
||
|
/** {@inheritdoc} */
|
||
|
public function getTitle() {
|
||
|
return /* I18N: Name of a module */ I18N::translate('Pending changes');
|
||
|
}
|
||
|
|
||
|
/** {@inheritdoc} */
|
||
|
public function getDescription() {
|
||
|
return /* I18N: Description of the “Pending changes” module */ I18N::translate('A list of changes that need to be reviewed by a moderator, and email notifications.');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Generate the HTML content of this block.
|
||
|
*
|
||
|
* @param int $block_id
|
||
|
* @param bool $template
|
||
|
* @param string[] $cfg
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getBlock($block_id, $template = true, $cfg = array()) {
|
||
|
global $ctype, $WT_TREE;
|
||
|
|
||
|
$sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
|
||
|
$days = $this->getBlockSetting($block_id, 'days', '1');
|
||
|
$block = $this->getBlockSetting($block_id, 'block', '1');
|
||
|
|
||
|
foreach (array('days', 'sendmail', 'block') as $name) {
|
||
|
if (array_key_exists($name, $cfg)) {
|
||
|
$$name = $cfg[$name];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$changes = Database::prepare(
|
||
|
"SELECT 1" .
|
||
|
" FROM `##change`" .
|
||
|
" WHERE status='pending'" .
|
||
|
" LIMIT 1"
|
||
|
)->fetchOne();
|
||
|
|
||
|
if ($changes === '1' && $sendmail === '1') {
|
||
|
// There are pending changes - tell moderators/managers/administrators about them.
|
||
|
if (WT_TIMESTAMP - Site::getPreference('LAST_CHANGE_EMAIL') > (60 * 60 * 24 * $days)) {
|
||
|
// Which users have pending changes?
|
||
|
foreach (User::all() as $user) {
|
||
|
if ($user->getPreference('contactmethod') !== 'none') {
|
||
|
foreach (Tree::getAll() as $tree) {
|
||
|
if ($tree->hasPendingEdit() && Auth::isManager($tree, $user)) {
|
||
|
I18N::init($user->getPreference('language'));
|
||
|
Mail::systemMessage(
|
||
|
$tree,
|
||
|
$user,
|
||
|
I18N::translate('Pending changes'),
|
||
|
I18N::translate('There are pending changes for you to moderate.') .
|
||
|
Mail::EOL . Mail::EOL .
|
||
|
'<a href="' . WT_BASE_URL . 'index.php?ged=' . $WT_TREE->getNameUrl() . '">' . WT_BASE_URL . 'index.php?ged=' . $WT_TREE->getNameUrl() . '</a>'
|
||
|
);
|
||
|
I18N::init(WT_LOCALE);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
Site::setPreference('LAST_CHANGE_EMAIL', WT_TIMESTAMP);
|
||
|
}
|
||
|
}
|
||
|
if (Auth::isEditor($WT_TREE) && $WT_TREE->hasPendingEdit()) {
|
||
|
$id = $this->getName() . $block_id;
|
||
|
$class = $this->getName() . '_block';
|
||
|
if ($ctype === 'user' || Auth::isManager($WT_TREE)) {
|
||
|
$title = '<a class="icon-admin" title="' . I18N::translate('Preferences') . '" href="block_edit.php?block_id=' . $block_id . '&ged=' . $WT_TREE->getNameHtml() . '&ctype=' . $ctype . '"></a>';
|
||
|
} else {
|
||
|
$title = '';
|
||
|
}
|
||
|
$title .= $this->getTitle();
|
||
|
|
||
|
$content = '';
|
||
|
if (Auth::isModerator($WT_TREE)) {
|
||
|
$content .= "<a href=\"#\" onclick=\"window.open('edit_changes.php','_blank', chan_window_specs); return false;\">" . I18N::translate('There are pending changes for you to moderate.') . "</a><br>";
|
||
|
}
|
||
|
if ($sendmail === '1') {
|
||
|
$content .= I18N::translate('Last email reminder was sent ') . FunctionsDate::formatTimestamp(Site::getPreference('LAST_CHANGE_EMAIL')) . "<br>";
|
||
|
$content .= I18N::translate('Next email reminder will be sent after ') . FunctionsDate::formatTimestamp(Site::getPreference('LAST_CHANGE_EMAIL') + (60 * 60 * 24 * $days)) . "<br><br>";
|
||
|
}
|
||
|
$content .= '<ul>';
|
||
|
$changes = Database::prepare(
|
||
|
"SELECT xref" .
|
||
|
" FROM `##change`" .
|
||
|
" WHERE status='pending'" .
|
||
|
" AND gedcom_id=?" .
|
||
|
" GROUP BY xref"
|
||
|
)->execute(array($WT_TREE->getTreeId()))->fetchAll();
|
||
|
foreach ($changes as $change) {
|
||
|
$record = GedcomRecord::getInstance($change->xref, $WT_TREE);
|
||
|
if ($record->canShow()) {
|
||
|
$content .= '<li><a href="' . $record->getHtmlUrl() . '">' . $record->getFullName() . '</a></li>';
|
||
|
}
|
||
|
}
|
||
|
$content .= '</ul>';
|
||
|
|
||
|
if ($template) {
|
||
|
if ($block) {
|
||
|
$class .= ' small_inner_block';
|
||
|
}
|
||
|
|
||
|
return Theme::theme()->formatBlock($id, $title, $class, $content);
|
||
|
} else {
|
||
|
return $content;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/** {@inheritdoc} */
|
||
|
public function loadAjax() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/** {@inheritdoc} */
|
||
|
public function isUserBlock() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/** {@inheritdoc} */
|
||
|
public function isGedcomBlock() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* An HTML form to edit block settings
|
||
|
*
|
||
|
* @param int $block_id
|
||
|
*/
|
||
|
public function configureBlock($block_id) {
|
||
|
if (Filter::postBool('save') && Filter::checkCsrf()) {
|
||
|
$this->setBlockSetting($block_id, 'days', Filter::postInteger('num', 1, 180, 1));
|
||
|
$this->setBlockSetting($block_id, 'sendmail', Filter::postBool('sendmail'));
|
||
|
$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));
|
||
|
}
|
||
|
|
||
|
$sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
|
||
|
$days = $this->getBlockSetting($block_id, 'days', '1');
|
||
|
$block = $this->getBlockSetting($block_id, 'block', '1');
|
||
|
|
||
|
?>
|
||
|
<tr>
|
||
|
<td colspan="2">
|
||
|
<?php echo I18N::translate('This block will show editors a list of records with pending changes that need to be reviewed by a moderator. It also generates daily emails to moderators whenever pending changes exist.'); ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
<?php
|
||
|
echo '<tr><td class="descriptionbox wrap width33">';
|
||
|
echo /* I18N: Label for a configuration option */ I18N::translate('Send out reminder emails');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo FunctionsEdit::editFieldYesNo('sendmail', $sendmail);
|
||
|
echo '<br>';
|
||
|
echo I18N::translate('Reminder email frequency (days)') . " <input type='text' name='days' value='" . $days . "' size='2'>";
|
||
|
echo '</td></tr>';
|
||
|
|
||
|
echo '<tr><td class="descriptionbox wrap width33">';
|
||
|
echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow');
|
||
|
echo '</td><td class="optionbox">';
|
||
|
echo FunctionsEdit::editFieldYesNo('block', $block);
|
||
|
echo '</td></tr>';
|
||
|
}
|
||
|
}
|