xref: /webtrees/app/Module/ReviewChangesModule.php (revision 90a2f71801fb87cd8a5109b7c84d162b5549b38c)
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
22*90a2f718SGreg Roachuse Fisharebest\Localization\Locale\LocaleInterface;
230e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth;
244459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord;
2622e73debSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\PendingChanges;
270e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
280f97530bSGreg Roachuse Fisharebest\Webtrees\Services\MailService;
293df1e584SGreg Roachuse Fisharebest\Webtrees\Services\TreeService;
30e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService;
310e62c4b8SGreg Roachuse Fisharebest\Webtrees\Site;
324c9729fbSGreg Roachuse Fisharebest\Webtrees\SiteUser;
330e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree;
34e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\TreeUser;
3577654037SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
361e7a7a28SGreg Roachuse Illuminate\Support\Str;
376ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
388c2e8227SGreg Roach
39*90a2f718SGreg Roachuse function assert;
40*90a2f718SGreg Roach
418c2e8227SGreg Roach/**
428c2e8227SGreg Roach * Class ReviewChangesModule
438c2e8227SGreg Roach */
4437eb8894SGreg Roachclass ReviewChangesModule extends AbstractModule implements ModuleBlockInterface
45c1010edaSGreg Roach{
4649a243cbSGreg Roach    use ModuleBlockTrait;
4749a243cbSGreg Roach
483df1e584SGreg Roach    /** @var MailService */
490f97530bSGreg Roach    private $mail_service;
500f97530bSGreg Roach
513df1e584SGreg Roach    /** @var UserService */
52e5a6b4d4SGreg Roach    private $user_service;
53e5a6b4d4SGreg Roach
543df1e584SGreg Roach    /** @var TreeService */
553df1e584SGreg Roach    private $tree_service;
563df1e584SGreg Roach
57e5a6b4d4SGreg Roach    /**
58e5a6b4d4SGreg Roach     * ReviewChangesModule constructor.
59e5a6b4d4SGreg Roach     *
600f97530bSGreg Roach     * @param MailService $mail_service
613df1e584SGreg Roach     * @param TreeService $tree_service
62e5a6b4d4SGreg Roach     * @param UserService $user_service
63e5a6b4d4SGreg Roach     */
643df1e584SGreg Roach    public function __construct(
653df1e584SGreg Roach        MailService $mail_service,
663df1e584SGreg Roach        TreeService $tree_service,
673df1e584SGreg Roach        UserService $user_service
683df1e584SGreg Roach    ) {
690f97530bSGreg Roach        $this->mail_service = $mail_service;
703df1e584SGreg Roach        $this->tree_service = $tree_service;
71e5a6b4d4SGreg Roach        $this->user_service = $user_service;
72e5a6b4d4SGreg Roach    }
73e5a6b4d4SGreg Roach
74e5a6b4d4SGreg Roach    /**
750cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
76961ec755SGreg Roach     *
77961ec755SGreg Roach     * @return string
78961ec755SGreg Roach     */
7949a243cbSGreg Roach    public function title(): string
80c1010edaSGreg Roach    {
81bbb76c12SGreg Roach        /* I18N: Name of a module */
82bbb76c12SGreg Roach        return I18N::translate('Pending changes');
838c2e8227SGreg Roach    }
848c2e8227SGreg Roach
85961ec755SGreg Roach    /**
86961ec755SGreg Roach     * A sentence describing what this module does.
87961ec755SGreg Roach     *
88961ec755SGreg Roach     * @return string
89961ec755SGreg Roach     */
9049a243cbSGreg Roach    public function description(): string
91c1010edaSGreg Roach    {
92bbb76c12SGreg Roach        /* I18N: Description of the “Pending changes” module */
93bbb76c12SGreg Roach        return I18N::translate('A list of changes that need to be reviewed by a moderator, and email notifications.');
948c2e8227SGreg Roach    }
958c2e8227SGreg Roach
9676692c8bSGreg Roach    /**
9776692c8bSGreg Roach     * Generate the HTML content of this block.
9876692c8bSGreg Roach     *
99e490cd80SGreg Roach     * @param Tree     $tree
10076692c8bSGreg Roach     * @param int      $block_id
1013caaa4d2SGreg Roach     * @param string   $context
1023caaa4d2SGreg Roach     * @param string[] $config
10376692c8bSGreg Roach     *
10476692c8bSGreg Roach     * @return string
10576692c8bSGreg Roach     */
1063caaa4d2SGreg Roach    public function getBlock(Tree $tree, int $block_id, string $context, array $config = []): string
107c1010edaSGreg Roach    {
108*90a2f718SGreg Roach        $locale = app(ServerRequestInterface::class)->getAttribute('locale');
109*90a2f718SGreg Roach        assert($locale instanceof LocaleInterface);
110*90a2f718SGreg Roach
1114459dc9aSGreg Roach        $sendmail = (bool) $this->getBlockSetting($block_id, 'sendmail', '1');
1124459dc9aSGreg Roach        $days     = (int) $this->getBlockSetting($block_id, 'days', '1');
1138c2e8227SGreg Roach
1143caaa4d2SGreg Roach        extract($config, EXTR_OVERWRITE);
1158c2e8227SGreg Roach
11677654037SGreg Roach        $changes_exist = DB::table('change')
11777654037SGreg Roach            ->where('status', 'pending')
11877654037SGreg Roach            ->exists();
1198c2e8227SGreg Roach
1204459dc9aSGreg Roach        if ($changes_exist && $sendmail) {
121ad98d39dSGreg Roach            $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
122ad98d39dSGreg Roach            $next_email_timestamp = $last_email_timestamp->addDays($days);
123ad98d39dSGreg Roach
1248c2e8227SGreg Roach            // There are pending changes - tell moderators/managers/administrators about them.
125ad98d39dSGreg Roach            if ($next_email_timestamp < Carbon::now()) {
1268c2e8227SGreg Roach                // Which users have pending changes?
127e5a6b4d4SGreg Roach                foreach ($this->user_service->all() as $user) {
1288c2e8227SGreg Roach                    if ($user->getPreference('contactmethod') !== 'none') {
1293df1e584SGreg Roach                        foreach ($this->tree_service->all() as $tmp_tree) {
13086bc3d8aSRico Sonntag                            if ($tmp_tree->hasPendingEdit() && Auth::isManager($tmp_tree, $user)) {
1318c2e8227SGreg Roach                                I18N::init($user->getPreference('language'));
1328857be8bSGreg Roach
1330f97530bSGreg Roach                                $this->mail_service->send(
1344c9729fbSGreg Roach                                    new SiteUser(),
1358c2e8227SGreg Roach                                    $user,
136e5a6b4d4SGreg Roach                                    new TreeUser($tmp_tree),
1378c2e8227SGreg Roach                                    I18N::translate('Pending changes'),
138c1010edaSGreg Roach                                    view('emails/pending-changes-text', [
13986bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
140c1010edaSGreg Roach                                        'user' => $user,
141c1010edaSGreg Roach                                    ]),
142c1010edaSGreg Roach                                    view('emails/pending-changes-html', [
14386bc3d8aSRico Sonntag                                        'tree' => $tmp_tree,
144c1010edaSGreg Roach                                        'user' => $user,
145c1010edaSGreg Roach                                    ])
1468c2e8227SGreg Roach                                );
147*90a2f718SGreg Roach                                I18N::init($locale->languageTag());
1488c2e8227SGreg Roach                            }
1498c2e8227SGreg Roach                        }
1508c2e8227SGreg Roach                    }
1518c2e8227SGreg Roach                }
1524459dc9aSGreg Roach                Site::setPreference('LAST_CHANGE_EMAIL', (string) Carbon::now()->unix());
1538c2e8227SGreg Roach            }
1548c2e8227SGreg Roach        }
155e490cd80SGreg Roach        if (Auth::isEditor($tree) && $tree->hasPendingEdit()) {
1568c2e8227SGreg Roach            $content = '';
157e490cd80SGreg Roach            if (Auth::isModerator($tree)) {
15822e73debSGreg Roach                $content .= '<a href="' . e(route(PendingChanges::class, ['tree' => $tree->name()])) . '">' . I18N::translate('There are pending changes for you to moderate.') . '</a><br>';
1598c2e8227SGreg Roach            }
1604459dc9aSGreg Roach            if ($sendmail) {
161ca52a408SGreg Roach                $last_email_timestamp = Carbon::createFromTimestamp((int) Site::getPreference('LAST_CHANGE_EMAIL'));
162ca52a408SGreg Roach                $next_email_timestamp = $last_email_timestamp->copy()->addDays($days);
163ca52a408SGreg Roach
1644459dc9aSGreg Roach                $content .= I18N::translate('Last email reminder was sent ') . view('components/datetime', ['timestamp' => $last_email_timestamp]) . '<br>';
1654459dc9aSGreg Roach                $content .= I18N::translate('Next email reminder will be sent after ') . view('components/datetime', ['timestamp' => $next_email_timestamp]) . '<br><br>';
1668c2e8227SGreg Roach            }
1678c2e8227SGreg Roach            $content .= '<ul>';
16877654037SGreg Roach
16977654037SGreg Roach            $changes = DB::table('change')
17077654037SGreg Roach                ->where('gedcom_id', '=', $tree->id())
1718cef4ae1SGreg Roach                ->where('status', '=', 'pending')
17277654037SGreg Roach                ->select(['xref'])
17377654037SGreg Roach                ->get();
17477654037SGreg Roach
1758c2e8227SGreg Roach            foreach ($changes as $change) {
176e490cd80SGreg Roach                $record = GedcomRecord::getInstance($change->xref, $tree);
1778c2e8227SGreg Roach                if ($record->canShow()) {
17839ca88baSGreg Roach                    $content .= '<li><a href="' . e($record->url()) . '">' . $record->fullName() . '</a></li>';
1798c2e8227SGreg Roach                }
1808c2e8227SGreg Roach            }
1818c2e8227SGreg Roach            $content .= '</ul>';
1828c2e8227SGreg Roach
1833caaa4d2SGreg Roach            if ($context !== self::CONTEXT_EMBED) {
184147e99aaSGreg Roach                return view('modules/block-template', [
1851e7a7a28SGreg Roach                    'block'      => Str::kebab($this->name()),
1869c6524dcSGreg Roach                    'id'         => $block_id,
1873caaa4d2SGreg Roach                    'config_url' => $this->configUrl($tree, $context, $block_id),
18849a243cbSGreg Roach                    'title'      => $this->title(),
1899c6524dcSGreg Roach                    'content'    => $content,
1909c6524dcSGreg Roach                ]);
1918c2e8227SGreg Roach            }
192b2ce94c6SRico Sonntag
193b2ce94c6SRico Sonntag            return $content;
1948c2e8227SGreg Roach        }
19515d603e7SGreg Roach
19615d603e7SGreg Roach        return '';
1978c2e8227SGreg Roach    }
1988c2e8227SGreg Roach
1993caaa4d2SGreg Roach    /**
2003caaa4d2SGreg Roach     * Should this block load asynchronously using AJAX?
2013caaa4d2SGreg Roach     *
2023caaa4d2SGreg Roach     * Simple blocks are faster in-line, more complex ones can be loaded later.
2033caaa4d2SGreg Roach     *
2043caaa4d2SGreg Roach     * @return bool
2053caaa4d2SGreg Roach     */
206c1010edaSGreg Roach    public function loadAjax(): bool
207c1010edaSGreg Roach    {
2088c2e8227SGreg Roach        return false;
2098c2e8227SGreg Roach    }
2108c2e8227SGreg Roach
2113caaa4d2SGreg Roach    /**
2123caaa4d2SGreg Roach     * Can this block be shown on the user’s home page?
2133caaa4d2SGreg Roach     *
2143caaa4d2SGreg Roach     * @return bool
2153caaa4d2SGreg Roach     */
216c1010edaSGreg Roach    public function isUserBlock(): bool
217c1010edaSGreg Roach    {
2188c2e8227SGreg Roach        return true;
2198c2e8227SGreg Roach    }
2208c2e8227SGreg Roach
2213caaa4d2SGreg Roach    /**
2223caaa4d2SGreg Roach     * Can this block be shown on the tree’s home page?
2233caaa4d2SGreg Roach     *
2243caaa4d2SGreg Roach     * @return bool
2253caaa4d2SGreg Roach     */
22663276d8fSGreg Roach    public function isTreeBlock(): bool
227c1010edaSGreg Roach    {
2288c2e8227SGreg Roach        return true;
2298c2e8227SGreg Roach    }
2308c2e8227SGreg Roach
23176692c8bSGreg Roach    /**
232a45f9889SGreg Roach     * Update the configuration for a block.
233a45f9889SGreg Roach     *
2346ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
235a45f9889SGreg Roach     * @param int     $block_id
236a45f9889SGreg Roach     *
237a45f9889SGreg Roach     * @return void
238a45f9889SGreg Roach     */
2396ccdf4f0SGreg Roach    public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void
240a45f9889SGreg Roach    {
241b6b9dcc9SGreg Roach        $params = $request->getParsedBody();
242b6b9dcc9SGreg Roach
243b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'days', $params['days']);
244b6b9dcc9SGreg Roach        $this->setBlockSetting($block_id, 'sendmail', $params['sendmail']);
245a45f9889SGreg Roach    }
246a45f9889SGreg Roach
247a45f9889SGreg Roach    /**
24876692c8bSGreg Roach     * An HTML form to edit block settings
24976692c8bSGreg Roach     *
250e490cd80SGreg Roach     * @param Tree $tree
25176692c8bSGreg Roach     * @param int  $block_id
252a9430be8SGreg Roach     *
2533caaa4d2SGreg Roach     * @return string
25476692c8bSGreg Roach     */
2553caaa4d2SGreg Roach    public function editBlockConfiguration(Tree $tree, int $block_id): string
256c1010edaSGreg Roach    {
257e2a378d3SGreg Roach        $sendmail = $this->getBlockSetting($block_id, 'sendmail', '1');
258e2a378d3SGreg Roach        $days     = $this->getBlockSetting($block_id, 'days', '1');
2598c2e8227SGreg Roach
2603caaa4d2SGreg Roach        return view('modules/review_changes/config', [
261c385536dSGreg Roach            'days'     => $days,
262c385536dSGreg Roach            'sendmail' => $sendmail,
263c385536dSGreg Roach        ]);
2648c2e8227SGreg Roach    }
2658c2e8227SGreg Roach}
266