xref: /webtrees/app/Module/ReviewChangesModule.php (revision 3df1e584fbd868b51c2f8559129ab0652c3acaa3)
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 */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
2176692c8bSGreg Roach
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
234459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon;
240e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
260f97530bSGreg Roachuse Fisharebest\Webtrees\Services\MailService;
27*3df1e584SGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
28e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService;
290e62c4b8SGreg Roachuse Fisharebest\Webtrees\Site;
304c9729fbSGreg Roachuse Fisharebest\Webtrees\SiteUser;
310e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
32e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\TreeUser;
3377654037SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
341e7a7a28SGreg Roachuse Illuminate\Support\Str;
356ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
368c2e8227SGreg Roach
378c2e8227SGreg Roach/**
388c2e8227SGreg Roach * Class ReviewChangesModule
398c2e8227SGreg Roach */
4037eb8894SGreg Roachclass ReviewChangesModule extends AbstractModule implements ModuleBlockInterface
41c1010edaSGreg Roach{
4249a243cbSGreg Roach    use ModuleBlockTrait;
4349a243cbSGreg Roach
44*3df1e584SGreg Roach    /** @var MailService */
450f97530bSGreg Roach    private $mail_service;
460f97530bSGreg Roach
47*3df1e584SGreg Roach    /** @var UserService */
48e5a6b4d4SGreg Roach    private $user_service;
49e5a6b4d4SGreg Roach
50*3df1e584SGreg Roach    /** @var TreeService */
51*3df1e584SGreg Roach    private $tree_service;
52*3df1e584SGreg Roach
53e5a6b4d4SGreg Roach    /**
54e5a6b4d4SGreg Roach     * ReviewChangesModule constructor.
55e5a6b4d4SGreg Roach     *
560f97530bSGreg Roach     * @param MailService $mail_service
57*3df1e584SGreg Roach     * @param TreeService $tree_service
58e5a6b4d4SGreg Roach     * @param UserService $user_service
59e5a6b4d4SGreg Roach     */
60*3df1e584SGreg Roach    public function __construct(
61*3df1e584SGreg Roach        MailService $mail_service,
62*3df1e584SGreg Roach        TreeService $tree_service,
63*3df1e584SGreg Roach        UserService $user_service
64*3df1e584SGreg Roach    ) {
650f97530bSGreg Roach        $this->mail_service = $mail_service;
66*3df1e584SGreg Roach        $this->tree_service = $tree_service;
67e5a6b4d4SGreg Roach        $this->user_service = $user_service;
68e5a6b4d4SGreg Roach    }
69e5a6b4d4SGreg Roach
70e5a6b4d4SGreg Roach    /**
710cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
72961ec755SGreg Roach     *
73961ec755SGreg Roach     * @return string
74961ec755SGreg Roach     */
7549a243cbSGreg Roach    public function title(): string
76c1010edaSGreg Roach    {
77bbb76c12SGreg Roach        /* I18N: Name of a module */
78bbb76c12SGreg Roach        return I18N::translate('Pending changes');
798c2e8227SGreg Roach    }
808c2e8227SGreg Roach
81961ec755SGreg Roach    /**
82961ec755SGreg Roach     * A sentence describing what this module does.
83961ec755SGreg Roach     *
84961ec755SGreg Roach     * @return string
85961ec755SGreg Roach     */
8649a243cbSGreg Roach    public function description(): string
87c1010edaSGreg Roach    {
88bbb76c12SGreg Roach        /* I18N: Description of the “Pending changes” module */
89bbb76c12SGreg Roach        return I18N::translate('A list of changes that need to be reviewed by a moderator, and email notifications.');
908c2e8227SGreg Roach    }
918c2e8227SGreg Roach
9276692c8bSGreg Roach    /**
9376692c8bSGreg Roach     * Generate the HTML content of this block.
9476692c8bSGreg Roach     *
95e490cd80SGreg Roach     * @param Tree     $tree
9676692c8bSGreg Roach     * @param int      $block_id
973caaa4d2SGreg Roach     * @param string   $context
983caaa4d2SGreg Roach     * @param string[] $config
9976692c8bSGreg Roach     *
10076692c8bSGreg Roach     * @return string
10176692c8bSGreg Roach     */
1023caaa4d2SGreg Roach    public function getBlock(Tree $tree, int $block_id, string $context, array $config = []): string
103c1010edaSGreg Roach    {
1044459dc9aSGreg Roach        $sendmail = (bool) $this->getBlockSetting($block_id, 'sendmail', '1');
1054459dc9aSGreg Roach        $days     = (int) $this->getBlockSetting($block_id, 'days', '1');
1068c2e8227SGreg Roach
1073caaa4d2SGreg Roach        extract($config, EXTR_OVERWRITE);
1088c2e8227SGreg Roach
10977654037SGreg Roach        $changes_exist = DB::table('change')
11077654037SGreg Roach            ->where('status', 'pending')
11177654037SGreg Roach            ->exists();
1128c2e8227SGreg Roach
1134459dc9aSGreg Roach        if ($changes_exist && $sendmail) {
114ad98d39dSGreg Roach            $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
115ad98d39dSGreg Roach            $next_email_timestamp = $last_email_timestamp->addDays($days);
116ad98d39dSGreg Roach
1178c2e8227SGreg Roach            // There are pending changes - tell moderators/managers/administrators about them.
118ad98d39dSGreg Roach            if ($next_email_timestamp < Carbon::now()) {
1198c2e8227SGreg Roach                // Which users have pending changes?
120e5a6b4d4SGreg Roach                foreach ($this->user_service->all() as $user) {
1218c2e8227SGreg Roach                    if ($user->getPreference('contactmethod') !== 'none') {
122*3df1e584SGreg Roach                        foreach ($this->tree_service->all() as $tmp_tree) {
12386bc3d8aSRico Sonntag                            if ($tmp_tree->hasPendingEdit() && Auth::isManager($tmp_tree, $user)) {
1248c2e8227SGreg Roach                                I18N::init($user->getPreference('language'));
1258857be8bSGreg Roach
1260f97530bSGreg Roach                                $this->mail_service->send(
1274c9729fbSGreg Roach                                    new SiteUser(),
1288c2e8227SGreg Roach                                    $user,
129e5a6b4d4SGreg Roach                                    new TreeUser($tmp_tree),
1308c2e8227SGreg Roach                                    I18N::translate('Pending changes'),
131c1010edaSGreg Roach                                    view('emails/pending-changes-text', [
13286bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
133c1010edaSGreg Roach                                        'user' => $user,
134c1010edaSGreg Roach                                    ]),
135c1010edaSGreg Roach                                    view('emails/pending-changes-html', [
13686bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
137c1010edaSGreg Roach                                        'user' => $user,
138c1010edaSGreg Roach                                    ])
1398c2e8227SGreg Roach                                );
1408c2e8227SGreg Roach                                I18N::init(WT_LOCALE);
1418c2e8227SGreg Roach                            }
1428c2e8227SGreg Roach                        }
1438c2e8227SGreg Roach                    }
1448c2e8227SGreg Roach                }
1454459dc9aSGreg Roach                Site::setPreference('LAST_CHANGE_EMAIL', (string) Carbon::now()->unix());
1468c2e8227SGreg Roach            }
1478c2e8227SGreg Roach        }
148e490cd80SGreg Roach        if (Auth::isEditor($tree) && $tree->hasPendingEdit()) {
1498c2e8227SGreg Roach            $content = '';
150e490cd80SGreg Roach            if (Auth::isModerator($tree)) {
151d72b284aSGreg Roach                $content .= '<a href="' . e(route('show-pending', ['tree' => $tree->name()])) . '">' . I18N::translate('There are pending changes for you to moderate.') . '</a><br>';
1528c2e8227SGreg Roach            }
1534459dc9aSGreg Roach            if ($sendmail) {
154ca52a408SGreg Roach                $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
155ca52a408SGreg Roach                $next_email_timestamp = $last_email_timestamp->copy()->addDays($days);
156ca52a408SGreg Roach
1574459dc9aSGreg Roach                $content .= I18N::translate('Last email reminder was sent ') . view('components/datetime', ['timestamp' => $last_email_timestamp]) . '<br>';
1584459dc9aSGreg Roach                $content .= I18N::translate('Next email reminder will be sent after ') . view('components/datetime', ['timestamp' => $next_email_timestamp]) . '<br><br>';
1598c2e8227SGreg Roach            }
1608c2e8227SGreg Roach            $content .= '<ul>';
16177654037SGreg Roach
16277654037SGreg Roach            $changes = DB::table('change')
16377654037SGreg Roach                ->where('gedcom_id', '=', $tree->id())
1648cef4ae1SGreg Roach                ->where('status', '=', 'pending')
16577654037SGreg Roach                ->select(['xref'])
16677654037SGreg Roach                ->get();
16777654037SGreg Roach
1688c2e8227SGreg Roach            foreach ($changes as $change) {
169e490cd80SGreg Roach                $record = GedcomRecord::getInstance($change->xref, $tree);
1708c2e8227SGreg Roach                if ($record->canShow()) {
17139ca88baSGreg Roach                    $content .= '<li><a href="' . e($record->url()) . '">' . $record->fullName() . '</a></li>';
1728c2e8227SGreg Roach                }
1738c2e8227SGreg Roach            }
1748c2e8227SGreg Roach            $content .= '</ul>';
1758c2e8227SGreg Roach
1763caaa4d2SGreg Roach            if ($context !== self::CONTEXT_EMBED) {
177147e99aaSGreg Roach                return view('modules/block-template', [
1781e7a7a28SGreg Roach                    'block'      => Str::kebab($this->name()),
1799c6524dcSGreg Roach                    'id'         => $block_id,
1803caaa4d2SGreg Roach                    'config_url' => $this->configUrl($tree, $context, $block_id),
18149a243cbSGreg Roach                    'title'      => $this->title(),
1829c6524dcSGreg Roach                    'content'    => $content,
1839c6524dcSGreg Roach                ]);
1848c2e8227SGreg Roach            }
185b2ce94c6SRico Sonntag
186b2ce94c6SRico Sonntag            return $content;
1878c2e8227SGreg Roach        }
18815d603e7SGreg Roach
18915d603e7SGreg Roach        return '';
1908c2e8227SGreg Roach    }
1918c2e8227SGreg Roach
1923caaa4d2SGreg Roach    /**
1933caaa4d2SGreg Roach     * Should this block load asynchronously using AJAX?
1943caaa4d2SGreg Roach     *
1953caaa4d2SGreg Roach     * Simple blocks are faster in-line, more complex ones can be loaded later.
1963caaa4d2SGreg Roach     *
1973caaa4d2SGreg Roach     * @return bool
1983caaa4d2SGreg Roach     */
199c1010edaSGreg Roach    public function loadAjax(): bool
200c1010edaSGreg Roach    {
2018c2e8227SGreg Roach        return false;
2028c2e8227SGreg Roach    }
2038c2e8227SGreg Roach
2043caaa4d2SGreg Roach    /**
2053caaa4d2SGreg Roach     * Can this block be shown on the user’s home page?
2063caaa4d2SGreg Roach     *
2073caaa4d2SGreg Roach     * @return bool
2083caaa4d2SGreg Roach     */
209c1010edaSGreg Roach    public function isUserBlock(): bool
210c1010edaSGreg Roach    {
2118c2e8227SGreg Roach        return true;
2128c2e8227SGreg Roach    }
2138c2e8227SGreg Roach
2143caaa4d2SGreg Roach    /**
2153caaa4d2SGreg Roach     * Can this block be shown on the tree’s home page?
2163caaa4d2SGreg Roach     *
2173caaa4d2SGreg Roach     * @return bool
2183caaa4d2SGreg Roach     */
21963276d8fSGreg Roach    public function isTreeBlock(): bool
220c1010edaSGreg Roach    {
2218c2e8227SGreg Roach        return true;
2228c2e8227SGreg Roach    }
2238c2e8227SGreg Roach
22476692c8bSGreg Roach    /**
225a45f9889SGreg Roach     * Update the configuration for a block.
226a45f9889SGreg Roach     *
2276ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
228a45f9889SGreg Roach     * @param int     $block_id
229a45f9889SGreg Roach     *
230a45f9889SGreg Roach     * @return void
231a45f9889SGreg Roach     */
2326ccdf4f0SGreg Roach    public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void
233a45f9889SGreg Roach    {
234b6b9dcc9SGreg Roach        $params = $request->getParsedBody();
235b6b9dcc9SGreg Roach
236b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'days', $params['days']);
237b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'sendmail', $params['sendmail']);
238a45f9889SGreg Roach    }
239a45f9889SGreg Roach
240a45f9889SGreg Roach    /**
24176692c8bSGreg Roach     * An HTML form to edit block settings
24276692c8bSGreg Roach     *
243e490cd80SGreg Roach     * @param Tree $tree
24476692c8bSGreg Roach     * @param int  $block_id
245a9430be8SGreg Roach     *
2463caaa4d2SGreg Roach     * @return string
24776692c8bSGreg Roach     */
2483caaa4d2SGreg Roach    public function editBlockConfiguration(Tree $tree, int $block_id): string
249c1010edaSGreg Roach    {
250e2a378d3SGreg Roach        $sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
251e2a378d3SGreg Roach        $days     = $this->getBlockSetting($block_id, 'days', '1');
2528c2e8227SGreg Roach
2533caaa4d2SGreg Roach        return view('modules/review_changes/config', [
254c385536dSGreg Roach            'days'     => $days,
255c385536dSGreg Roach            'sendmail' => $sendmail,
256c385536dSGreg Roach        ]);
2578c2e8227SGreg Roach    }
2588c2e8227SGreg Roach}
259