xref: /webtrees/app/Module/ReviewChangesModule.php (revision d72b284a0846ca045e548a1c77ad11813bcbab92)
18c2e8227SGreg Roach<?php
23976b470SGreg Roach
38c2e8227SGreg Roach/**
48c2e8227SGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
68c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
78c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
88c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
98c2e8227SGreg Roach * (at your option) any later version.
108c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
118c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
128c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
138c2e8227SGreg Roach * GNU General Public License for more details.
148c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
158c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
168c2e8227SGreg Roach */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
18e7f56f2aSGreg Roach
1976692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
2076692c8bSGreg Roach
210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
224459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
250f97530bSGreg Roachuse Fisharebest\Webtrees\Services\MailService;
26e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Site;
284c9729fbSGreg Roachuse Fisharebest\Webtrees\SiteUser;
290e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
30e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\TreeUser;
3177654037SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
321e7a7a28SGreg Roachuse Illuminate\Support\Str;
336ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
348c2e8227SGreg Roach
358c2e8227SGreg Roach/**
368c2e8227SGreg Roach * Class ReviewChangesModule
378c2e8227SGreg Roach */
3837eb8894SGreg Roachclass ReviewChangesModule extends AbstractModule implements ModuleBlockInterface
39c1010edaSGreg Roach{
4049a243cbSGreg Roach    use ModuleBlockTrait;
4149a243cbSGreg Roach
42961ec755SGreg Roach    /**
430f97530bSGreg Roach     * @var MailService
440f97530bSGreg Roach     */
450f97530bSGreg Roach    private $mail_service;
460f97530bSGreg Roach
470f97530bSGreg Roach    /**
48e5a6b4d4SGreg Roach     * @var UserService
49e5a6b4d4SGreg Roach     */
50e5a6b4d4SGreg Roach    private $user_service;
51e5a6b4d4SGreg Roach
52e5a6b4d4SGreg Roach    /**
53e5a6b4d4SGreg Roach     * ReviewChangesModule constructor.
54e5a6b4d4SGreg Roach     *
550f97530bSGreg Roach     * @param MailService $mail_service
56e5a6b4d4SGreg Roach     * @param UserService $user_service
57e5a6b4d4SGreg Roach     */
580f97530bSGreg Roach    public function __construct(MailService $mail_service, UserService $user_service)
59e5a6b4d4SGreg Roach    {
600f97530bSGreg Roach        $this->mail_service = $mail_service;
61e5a6b4d4SGreg Roach        $this->user_service = $user_service;
62e5a6b4d4SGreg Roach    }
63e5a6b4d4SGreg Roach
64e5a6b4d4SGreg Roach    /**
650cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
66961ec755SGreg Roach     *
67961ec755SGreg Roach     * @return string
68961ec755SGreg Roach     */
6949a243cbSGreg Roach    public function title(): string
70c1010edaSGreg Roach    {
71bbb76c12SGreg Roach        /* I18N: Name of a module */
72bbb76c12SGreg Roach        return I18N::translate('Pending changes');
738c2e8227SGreg Roach    }
748c2e8227SGreg Roach
75961ec755SGreg Roach    /**
76961ec755SGreg Roach     * A sentence describing what this module does.
77961ec755SGreg Roach     *
78961ec755SGreg Roach     * @return string
79961ec755SGreg Roach     */
8049a243cbSGreg Roach    public function description(): string
81c1010edaSGreg Roach    {
82bbb76c12SGreg Roach        /* I18N: Description of the “Pending changes” module */
83bbb76c12SGreg Roach        return I18N::translate('A list of changes that need to be reviewed by a moderator, and email notifications.');
848c2e8227SGreg Roach    }
858c2e8227SGreg Roach
8676692c8bSGreg Roach    /**
8776692c8bSGreg Roach     * Generate the HTML content of this block.
8876692c8bSGreg Roach     *
89e490cd80SGreg Roach     * @param Tree     $tree
9076692c8bSGreg Roach     * @param int      $block_id
913caaa4d2SGreg Roach     * @param string   $context
923caaa4d2SGreg Roach     * @param string[] $config
9376692c8bSGreg Roach     *
9476692c8bSGreg Roach     * @return string
9576692c8bSGreg Roach     */
963caaa4d2SGreg Roach    public function getBlock(Tree $tree, int $block_id, string $context, array $config = []): string
97c1010edaSGreg Roach    {
984459dc9aSGreg Roach        $sendmail = (bool) $this->getBlockSetting($block_id, 'sendmail', '1');
994459dc9aSGreg Roach        $days     = (int) $this->getBlockSetting($block_id, 'days', '1');
1008c2e8227SGreg Roach
1013caaa4d2SGreg Roach        extract($config, EXTR_OVERWRITE);
1028c2e8227SGreg Roach
10377654037SGreg Roach        $changes_exist = DB::table('change')
10477654037SGreg Roach            ->where('status', 'pending')
10577654037SGreg Roach            ->exists();
1068c2e8227SGreg Roach
1074459dc9aSGreg Roach        if ($changes_exist && $sendmail) {
108ad98d39dSGreg Roach            $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
109ad98d39dSGreg Roach            $next_email_timestamp = $last_email_timestamp->addDays($days);
110ad98d39dSGreg Roach
1118c2e8227SGreg Roach            // There are pending changes - tell moderators/managers/administrators about them.
112ad98d39dSGreg Roach            if ($next_email_timestamp < Carbon::now()) {
1138c2e8227SGreg Roach                // Which users have pending changes?
114e5a6b4d4SGreg Roach                foreach ($this->user_service->all() as $user) {
1158c2e8227SGreg Roach                    if ($user->getPreference('contactmethod') !== 'none') {
11686bc3d8aSRico Sonntag                        foreach (Tree::getAll() as $tmp_tree) {
11786bc3d8aSRico Sonntag                            if ($tmp_tree->hasPendingEdit() && Auth::isManager($tmp_tree, $user)) {
1188c2e8227SGreg Roach                                I18N::init($user->getPreference('language'));
1198857be8bSGreg Roach
1200f97530bSGreg Roach                                $this->mail_service->send(
1214c9729fbSGreg Roach                                    new SiteUser(),
1228c2e8227SGreg Roach                                    $user,
123e5a6b4d4SGreg Roach                                    new TreeUser($tmp_tree),
1248c2e8227SGreg Roach                                    I18N::translate('Pending changes'),
125c1010edaSGreg Roach                                    view('emails/pending-changes-text', [
12686bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
127c1010edaSGreg Roach                                        'user' => $user,
128c1010edaSGreg Roach                                    ]),
129c1010edaSGreg Roach                                    view('emails/pending-changes-html', [
13086bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
131c1010edaSGreg Roach                                        'user' => $user,
132c1010edaSGreg Roach                                    ])
1338c2e8227SGreg Roach                                );
1348c2e8227SGreg Roach                                I18N::init(WT_LOCALE);
1358c2e8227SGreg Roach                            }
1368c2e8227SGreg Roach                        }
1378c2e8227SGreg Roach                    }
1388c2e8227SGreg Roach                }
1394459dc9aSGreg Roach                Site::setPreference('LAST_CHANGE_EMAIL', (string) Carbon::now()->unix());
1408c2e8227SGreg Roach            }
1418c2e8227SGreg Roach        }
142e490cd80SGreg Roach        if (Auth::isEditor($tree) && $tree->hasPendingEdit()) {
1438c2e8227SGreg Roach            $content = '';
144e490cd80SGreg Roach            if (Auth::isModerator($tree)) {
145*d72b284aSGreg Roach                $content .= '<a href="' . e(route('show-pending', ['tree' => $tree->name()])) . '">' . I18N::translate('There are pending changes for you to moderate.') . '</a><br>';
1468c2e8227SGreg Roach            }
1474459dc9aSGreg Roach            if ($sendmail) {
148ca52a408SGreg Roach                $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
149ca52a408SGreg Roach                $next_email_timestamp = $last_email_timestamp->copy()->addDays($days);
150ca52a408SGreg Roach
1514459dc9aSGreg Roach                $content .= I18N::translate('Last email reminder was sent ') . view('components/datetime', ['timestamp' => $last_email_timestamp]) . '<br>';
1524459dc9aSGreg Roach                $content .= I18N::translate('Next email reminder will be sent after ') . view('components/datetime', ['timestamp' => $next_email_timestamp]) . '<br><br>';
1538c2e8227SGreg Roach            }
1548c2e8227SGreg Roach            $content .= '<ul>';
15577654037SGreg Roach
15677654037SGreg Roach            $changes = DB::table('change')
15777654037SGreg Roach                ->where('gedcom_id', '=', $tree->id())
1588cef4ae1SGreg Roach                ->where('status', '=', 'pending')
15977654037SGreg Roach                ->select(['xref'])
16077654037SGreg Roach                ->get();
16177654037SGreg Roach
1628c2e8227SGreg Roach            foreach ($changes as $change) {
163e490cd80SGreg Roach                $record = GedcomRecord::getInstance($change->xref, $tree);
1648c2e8227SGreg Roach                if ($record->canShow()) {
16539ca88baSGreg Roach                    $content .= '<li><a href="' . e($record->url()) . '">' . $record->fullName() . '</a></li>';
1668c2e8227SGreg Roach                }
1678c2e8227SGreg Roach            }
1688c2e8227SGreg Roach            $content .= '</ul>';
1698c2e8227SGreg Roach
1703caaa4d2SGreg Roach            if ($context !== self::CONTEXT_EMBED) {
171147e99aaSGreg Roach                return view('modules/block-template', [
1721e7a7a28SGreg Roach                    'block'      => Str::kebab($this->name()),
1739c6524dcSGreg Roach                    'id'         => $block_id,
1743caaa4d2SGreg Roach                    'config_url' => $this->configUrl($tree, $context, $block_id),
17549a243cbSGreg Roach                    'title'      => $this->title(),
1769c6524dcSGreg Roach                    'content'    => $content,
1779c6524dcSGreg Roach                ]);
1788c2e8227SGreg Roach            }
179b2ce94c6SRico Sonntag
180b2ce94c6SRico Sonntag            return $content;
1818c2e8227SGreg Roach        }
18215d603e7SGreg Roach
18315d603e7SGreg Roach        return '';
1848c2e8227SGreg Roach    }
1858c2e8227SGreg Roach
1863caaa4d2SGreg Roach    /**
1873caaa4d2SGreg Roach     * Should this block load asynchronously using AJAX?
1883caaa4d2SGreg Roach     *
1893caaa4d2SGreg Roach     * Simple blocks are faster in-line, more complex ones can be loaded later.
1903caaa4d2SGreg Roach     *
1913caaa4d2SGreg Roach     * @return bool
1923caaa4d2SGreg Roach     */
193c1010edaSGreg Roach    public function loadAjax(): bool
194c1010edaSGreg Roach    {
1958c2e8227SGreg Roach        return false;
1968c2e8227SGreg Roach    }
1978c2e8227SGreg Roach
1983caaa4d2SGreg Roach    /**
1993caaa4d2SGreg Roach     * Can this block be shown on the user’s home page?
2003caaa4d2SGreg Roach     *
2013caaa4d2SGreg Roach     * @return bool
2023caaa4d2SGreg Roach     */
203c1010edaSGreg Roach    public function isUserBlock(): bool
204c1010edaSGreg Roach    {
2058c2e8227SGreg Roach        return true;
2068c2e8227SGreg Roach    }
2078c2e8227SGreg Roach
2083caaa4d2SGreg Roach    /**
2093caaa4d2SGreg Roach     * Can this block be shown on the tree’s home page?
2103caaa4d2SGreg Roach     *
2113caaa4d2SGreg Roach     * @return bool
2123caaa4d2SGreg Roach     */
21363276d8fSGreg Roach    public function isTreeBlock(): bool
214c1010edaSGreg Roach    {
2158c2e8227SGreg Roach        return true;
2168c2e8227SGreg Roach    }
2178c2e8227SGreg Roach
21876692c8bSGreg Roach    /**
219a45f9889SGreg Roach     * Update the configuration for a block.
220a45f9889SGreg Roach     *
2216ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
222a45f9889SGreg Roach     * @param int     $block_id
223a45f9889SGreg Roach     *
224a45f9889SGreg Roach     * @return void
225a45f9889SGreg Roach     */
2266ccdf4f0SGreg Roach    public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void
227a45f9889SGreg Roach    {
228b6b9dcc9SGreg Roach        $params = $request->getParsedBody();
229b6b9dcc9SGreg Roach
230b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'days', $params['days']);
231b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'sendmail', $params['sendmail']);
232a45f9889SGreg Roach    }
233a45f9889SGreg Roach
234a45f9889SGreg Roach    /**
23576692c8bSGreg Roach     * An HTML form to edit block settings
23676692c8bSGreg Roach     *
237e490cd80SGreg Roach     * @param Tree $tree
23876692c8bSGreg Roach     * @param int  $block_id
239a9430be8SGreg Roach     *
2403caaa4d2SGreg Roach     * @return string
24176692c8bSGreg Roach     */
2423caaa4d2SGreg Roach    public function editBlockConfiguration(Tree $tree, int $block_id): string
243c1010edaSGreg Roach    {
244e2a378d3SGreg Roach        $sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
245e2a378d3SGreg Roach        $days     = $this->getBlockSetting($block_id, 'days', '1');
2468c2e8227SGreg Roach
2473caaa4d2SGreg Roach        return view('modules/review_changes/config', [
248c385536dSGreg Roach            'days'     => $days,
249c385536dSGreg Roach            'sendmail' => $sendmail,
250c385536dSGreg Roach        ]);
2518c2e8227SGreg Roach    }
2528c2e8227SGreg Roach}
253