xref: /webtrees/app/Module/ReviewChangesModule.php (revision 13abd6f3a37322f885d85df150e105d27ad81f8d)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roach/**
38c2e8227SGreg Roach * webtrees: online genealogy
4369c0ce6SGreg Roach * Copyright (C) 2016 webtrees development team
58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
88c2e8227SGreg Roach * (at your option) any later version.
98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128c2e8227SGreg Roach * GNU General Public License for more details.
138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
158c2e8227SGreg Roach */
1676692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
1776692c8bSGreg Roach
180e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Database;
200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter;
213d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsDate;
223d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsEdit;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Mail;
260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Site;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Theme;
280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
290e62c4b8SGreg Roachuse Fisharebest\Webtrees\User;
308c2e8227SGreg Roach
318c2e8227SGreg Roach/**
328c2e8227SGreg Roach * Class ReviewChangesModule
338c2e8227SGreg Roach */
34e2a378d3SGreg Roachclass ReviewChangesModule extends AbstractModule implements ModuleBlockInterface {
358c2e8227SGreg Roach	/** {@inheritdoc} */
368c2e8227SGreg Roach	public function getTitle() {
378c2e8227SGreg Roach		return /* I18N: Name of a module */ I18N::translate('Pending changes');
388c2e8227SGreg Roach	}
398c2e8227SGreg Roach
408c2e8227SGreg Roach	/** {@inheritdoc} */
418c2e8227SGreg Roach	public function getDescription() {
4274dc1ba0SGreg Roach		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.');
438c2e8227SGreg Roach	}
448c2e8227SGreg Roach
4576692c8bSGreg Roach	/**
4676692c8bSGreg Roach	 * Generate the HTML content of this block.
4776692c8bSGreg Roach	 *
4876692c8bSGreg Roach	 * @param int      $block_id
4976692c8bSGreg Roach	 * @param bool     $template
50727f238cSGreg Roach	 * @param string[] $cfg
5176692c8bSGreg Roach	 *
5276692c8bSGreg Roach	 * @return string
5376692c8bSGreg Roach	 */
54*13abd6f3SGreg Roach	public function getBlock($block_id, $template = true, $cfg = []) {
558c2e8227SGreg Roach		global $ctype, $WT_TREE;
568c2e8227SGreg Roach
57e2a378d3SGreg Roach		$sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
58e2a378d3SGreg Roach		$days     = $this->getBlockSetting($block_id, 'days', '1');
59e2a378d3SGreg Roach		$block    = $this->getBlockSetting($block_id, 'block', '1');
608c2e8227SGreg Roach
61*13abd6f3SGreg Roach		foreach (['days', 'sendmail', 'block'] as $name) {
628c2e8227SGreg Roach			if (array_key_exists($name, $cfg)) {
638c2e8227SGreg Roach				$$name = $cfg[$name];
648c2e8227SGreg Roach			}
658c2e8227SGreg Roach		}
668c2e8227SGreg Roach
678c2e8227SGreg Roach		$changes = Database::prepare(
688c2e8227SGreg Roach			"SELECT 1" .
698c2e8227SGreg Roach			" FROM `##change`" .
708c2e8227SGreg Roach			" WHERE status='pending'" .
718c2e8227SGreg Roach			" LIMIT 1"
728c2e8227SGreg Roach		)->fetchOne();
738c2e8227SGreg Roach
748ae466efSGreg Roach		if ($changes === '1' && $sendmail === '1') {
758c2e8227SGreg Roach			// There are pending changes - tell moderators/managers/administrators about them.
768c2e8227SGreg Roach			if (WT_TIMESTAMP - Site::getPreference('LAST_CHANGE_EMAIL') > (60 * 60 * 24 * $days)) {
778c2e8227SGreg Roach				// Which users have pending changes?
788c2e8227SGreg Roach				foreach (User::all() as $user) {
798c2e8227SGreg Roach					if ($user->getPreference('contactmethod') !== 'none') {
808c2e8227SGreg Roach						foreach (Tree::getAll() as $tree) {
818c2e8227SGreg Roach							if ($tree->hasPendingEdit() && Auth::isManager($tree, $user)) {
828c2e8227SGreg Roach								I18N::init($user->getPreference('language'));
838c2e8227SGreg Roach								Mail::systemMessage(
848c2e8227SGreg Roach									$tree,
858c2e8227SGreg Roach									$user,
868c2e8227SGreg Roach									I18N::translate('Pending changes'),
878c2e8227SGreg Roach									I18N::translate('There are pending changes for you to moderate.') .
888c2e8227SGreg Roach									Mail::EOL . Mail::EOL .
894b9ff166SGreg Roach									'<a href="' . WT_BASE_URL . 'index.php?ged=' . $WT_TREE->getNameUrl() . '">' . WT_BASE_URL . 'index.php?ged=' . $WT_TREE->getNameUrl() . '</a>'
908c2e8227SGreg Roach								);
918c2e8227SGreg Roach								I18N::init(WT_LOCALE);
928c2e8227SGreg Roach							}
938c2e8227SGreg Roach						}
948c2e8227SGreg Roach					}
958c2e8227SGreg Roach				}
968c2e8227SGreg Roach				Site::setPreference('LAST_CHANGE_EMAIL', WT_TIMESTAMP);
978c2e8227SGreg Roach			}
988c2e8227SGreg Roach		}
998c2e8227SGreg Roach		if (Auth::isEditor($WT_TREE) && $WT_TREE->hasPendingEdit()) {
1008c2e8227SGreg Roach			$id    = $this->getName() . $block_id;
1018c2e8227SGreg Roach			$class = $this->getName() . '_block';
1028c2e8227SGreg Roach			if ($ctype === 'user' || Auth::isManager($WT_TREE)) {
1036d1c8039SGreg Roach				$title = '<a class="icon-admin" title="' . I18N::translate('Preferences') . '" href="block_edit.php?block_id=' . $block_id . '&amp;ged=' . $WT_TREE->getNameHtml() . '&amp;ctype=' . $ctype . '"></a>';
1048c2e8227SGreg Roach			} else {
1058c2e8227SGreg Roach				$title = '';
1068c2e8227SGreg Roach			}
1078c2e8227SGreg Roach			$title .= $this->getTitle();
1088c2e8227SGreg Roach
1098c2e8227SGreg Roach			$content = '';
1108c2e8227SGreg Roach			if (Auth::isModerator($WT_TREE)) {
1118c2e8227SGreg Roach				$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>";
1128c2e8227SGreg Roach			}
1138ae466efSGreg Roach			if ($sendmail === '1') {
1143d7a8a4cSGreg Roach				$content .= I18N::translate('Last email reminder was sent ') . FunctionsDate::formatTimestamp(Site::getPreference('LAST_CHANGE_EMAIL')) . "<br>";
1153d7a8a4cSGreg Roach				$content .= I18N::translate('Next email reminder will be sent after ') . FunctionsDate::formatTimestamp(Site::getPreference('LAST_CHANGE_EMAIL') + (60 * 60 * 24 * $days)) . "<br><br>";
1168c2e8227SGreg Roach			}
1178c2e8227SGreg Roach			$content .= '<ul>';
1188c2e8227SGreg Roach			$changes = Database::prepare(
1198c2e8227SGreg Roach				"SELECT xref" .
1208c2e8227SGreg Roach				" FROM  `##change`" .
1218c2e8227SGreg Roach				" WHERE status='pending'" .
1228c2e8227SGreg Roach				" AND   gedcom_id=?" .
1238c2e8227SGreg Roach				" GROUP BY xref"
124*13abd6f3SGreg Roach			)->execute([$WT_TREE->getTreeId()])->fetchAll();
1258c2e8227SGreg Roach			foreach ($changes as $change) {
12624ec66ceSGreg Roach				$record = GedcomRecord::getInstance($change->xref, $WT_TREE);
1278c2e8227SGreg Roach				if ($record->canShow()) {
1288c2e8227SGreg Roach					$content .= '<li><a href="' . $record->getHtmlUrl() . '">' . $record->getFullName() . '</a></li>';
1298c2e8227SGreg Roach				}
1308c2e8227SGreg Roach			}
1318c2e8227SGreg Roach			$content .= '</ul>';
1328c2e8227SGreg Roach
1338c2e8227SGreg Roach			if ($template) {
1348c2e8227SGreg Roach				if ($block) {
1358c2e8227SGreg Roach					$class .= ' small_inner_block';
1368c2e8227SGreg Roach				}
137cbc1590aSGreg Roach
1388c2e8227SGreg Roach				return Theme::theme()->formatBlock($id, $title, $class, $content);
1398c2e8227SGreg Roach			} else {
1408c2e8227SGreg Roach				return $content;
1418c2e8227SGreg Roach			}
1428c2e8227SGreg Roach		}
1438c2e8227SGreg Roach	}
1448c2e8227SGreg Roach
1458c2e8227SGreg Roach	/** {@inheritdoc} */
1468c2e8227SGreg Roach	public function loadAjax() {
1478c2e8227SGreg Roach		return false;
1488c2e8227SGreg Roach	}
1498c2e8227SGreg Roach
1508c2e8227SGreg Roach	/** {@inheritdoc} */
1518c2e8227SGreg Roach	public function isUserBlock() {
1528c2e8227SGreg Roach		return true;
1538c2e8227SGreg Roach	}
1548c2e8227SGreg Roach
1558c2e8227SGreg Roach	/** {@inheritdoc} */
1568c2e8227SGreg Roach	public function isGedcomBlock() {
1578c2e8227SGreg Roach		return true;
1588c2e8227SGreg Roach	}
1598c2e8227SGreg Roach
16076692c8bSGreg Roach	/**
16176692c8bSGreg Roach	 * An HTML form to edit block settings
16276692c8bSGreg Roach	 *
16376692c8bSGreg Roach	 * @param int $block_id
16476692c8bSGreg Roach	 */
1658c2e8227SGreg Roach	public function configureBlock($block_id) {
1668c2e8227SGreg Roach		if (Filter::postBool('save') && Filter::checkCsrf()) {
167e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'days', Filter::postInteger('num', 1, 180, 1));
168e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'sendmail', Filter::postBool('sendmail'));
169e2a378d3SGreg Roach			$this->setBlockSetting($block_id, 'block', Filter::postBool('block'));
1708c2e8227SGreg Roach		}
1718c2e8227SGreg Roach
172e2a378d3SGreg Roach		$sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
173e2a378d3SGreg Roach		$days     = $this->getBlockSetting($block_id, 'days', '1');
174e2a378d3SGreg Roach		$block    = $this->getBlockSetting($block_id, 'block', '1');
1758c2e8227SGreg Roach
1768c2e8227SGreg Roach	?>
1778c2e8227SGreg Roach	<tr>
1788c2e8227SGreg Roach		<td colspan="2">
17974dc1ba0SGreg Roach			<?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.'); ?>
1808c2e8227SGreg Roach		</td>
1818c2e8227SGreg Roach	</tr>
1828c2e8227SGreg Roach
1838c2e8227SGreg Roach	<?php
1848c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
185a4d5a9c2SGreg Roach		echo /* I18N: Label for a configuration option */ I18N::translate('Send out reminder emails');
1868c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1873d7a8a4cSGreg Roach		echo FunctionsEdit::editFieldYesNo('sendmail', $sendmail);
1888c2e8227SGreg Roach		echo '<br>';
1898c2e8227SGreg Roach		echo I18N::translate('Reminder email frequency (days)') . "&nbsp;<input type='text' name='days' value='" . $days . "' size='2'>";
1908c2e8227SGreg Roach		echo '</td></tr>';
1918c2e8227SGreg Roach
1928c2e8227SGreg Roach		echo '<tr><td class="descriptionbox wrap width33">';
1938c2e8227SGreg Roach		echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow');
1948c2e8227SGreg Roach		echo '</td><td class="optionbox">';
1953d7a8a4cSGreg Roach		echo FunctionsEdit::editFieldYesNo('block', $block);
1968c2e8227SGreg Roach		echo '</td></tr>';
1978c2e8227SGreg Roach	}
1988c2e8227SGreg Roach}
199