xref: /webtrees/app/Module/UpcomingAnniversariesModule.php (revision 1ff45046fabc22237b5d0d8e489c96f031fc598d)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2023 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Module;
21
22use Fisharebest\Webtrees\Auth;
23use Fisharebest\Webtrees\Gedcom;
24use Fisharebest\Webtrees\I18N;
25use Fisharebest\Webtrees\Registry;
26use Fisharebest\Webtrees\Services\CalendarService;
27use Fisharebest\Webtrees\Tree;
28use Fisharebest\Webtrees\Validator;
29use Illuminate\Support\Str;
30use Psr\Http\Message\ServerRequestInterface;
31
32/**
33 * Class UpcomingAnniversariesModule
34 */
35class UpcomingAnniversariesModule extends AbstractModule implements ModuleBlockInterface
36{
37    use ModuleBlockTrait;
38
39    private const SORT_STYLE_DATE = 'anniv';
40    private const SORT_STYLE_NAME = 'alpha';
41
42    private const LAYOUT_STYLE_LIST  = 'list';
43    private const LAYOUT_STYLE_TABLE = 'table';
44
45    // Default values for new blocks.
46    private const DEFAULT_DAYS   = '7';
47    private const DEFAULT_FILTER = '1';
48    private const DEFAULT_SORT   = self::SORT_STYLE_NAME;
49    private const DEFAULT_STYLE  = self::LAYOUT_STYLE_TABLE;
50
51    // Initial sorting for datatables
52    private const DATATABLES_ORDER = [
53        self::SORT_STYLE_NAME => [[0, 'asc']],
54        self::SORT_STYLE_DATE => [[1, 'asc']],
55    ];
56
57    // Can show this number of days into the future.
58    private const MAX_DAYS = 30;
59
60    // Pagination
61    private const LIMIT_LOW  = 10;
62    private const LIMIT_HIGH = 20;
63
64    // All standard GEDCOM 5.5.1 events except CENS, RESI and EVEN
65    private const ALL_EVENTS = [
66        'ADOP' => 'INDI:ADOP',
67        'ANUL' => 'FAM:ANUL',
68        'BAPM' => 'INDI:BAPM',
69        'BARM' => 'INDI:BARM',
70        'BASM' => 'INDI:BASM',
71        'BIRT' => 'INDI:BIRT',
72        'BLES' => 'INDI:BLES',
73        'BURI' => 'INDI:BURI',
74        'CHR'  => 'INDI:CHR',
75        'CHRA' => 'INDI:CHRA',
76        'CONF' => 'INDI:CONF',
77        'CREM' => 'INDI:CREM',
78        'DEAT' => 'INDI:DEAT',
79        'DIV'  => 'FAM:DIV',
80        'DIVF' => 'FAM:DIVF',
81        'EMIG' => 'INDI:EMIG',
82        'ENGA' => 'FAM:ENGA',
83        'FCOM' => 'INDI:FCOM',
84        'GRAD' => 'INDI:GRAD',
85        'IMMI' => 'INDI:IMMI',
86        'MARB' => 'FAM:MARB',
87        'MARC' => 'FAM:MARC',
88        'MARL' => 'FAM:MARL',
89        'MARR' => 'FAM:MARR',
90        'MARS' => 'FAM:MARS',
91        'NATU' => 'INDI:NATU',
92        'ORDN' => 'INDI:ORDN',
93        'PROB' => 'INDI:PROB',
94        'RETI' => 'INDI:RETI',
95        'WILL' => 'INDI:WILL',
96    ];
97
98    private const DEFAULT_EVENTS = [
99        'BIRT',
100        'MARR',
101        'DEAT',
102    ];
103
104    private CalendarService $calendar_service;
105
106    /**
107     * @param CalendarService $calendar_service
108     */
109    public function __construct(CalendarService $calendar_service)
110    {
111        $this->calendar_service = $calendar_service;
112    }
113
114    /**
115     * How should this module be identified in the control panel, etc.?
116     *
117     * @return string
118     */
119    public function title(): string
120    {
121        /* I18N: Name of a module */
122        return I18N::translate('Upcoming events');
123    }
124
125    /**
126     * A sentence describing what this module does.
127     *
128     * @return string
129     */
130    public function description(): string
131    {
132        /* I18N: Description of the “Upcoming events” module */
133        return I18N::translate('A list of the anniversaries that will occur in the near future.');
134    }
135
136    /**
137     * Generate the HTML content of this block.
138     *
139     * @param Tree                 $tree
140     * @param int                  $block_id
141     * @param string               $context
142     * @param array<string,string> $config
143     *
144     * @return string
145     */
146    public function getBlock(Tree $tree, int $block_id, string $context, array $config = []): string
147    {
148        $default_events = implode(',', self::DEFAULT_EVENTS);
149
150        $days      = (int)$this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
151        $filter    = (bool)$this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
152        $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE);
153        $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT);
154        $events    = $this->getBlockSetting($block_id, 'events', $default_events);
155
156        extract($config, EXTR_OVERWRITE);
157
158        $event_array = explode(',', $events);
159
160        // If we are only showing living individuals, then we don't need to search for DEAT events.
161        if ($filter) {
162            $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS);
163        }
164
165        $events_filter = implode('|', $event_array);
166
167        $startjd = Registry::timestampFactory()->now()->addDays(1)->julianDay();
168        $endjd   = Registry::timestampFactory()->now()->addDays($days)->julianDay();
169
170        $facts = $this->calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortStyle, $tree);
171
172        if ($facts->isEmpty()) {
173            if ($endjd === $startjd) {
174                if ($filter && Auth::check()) {
175                    $message = I18N::translate('No events for living individuals exist for tomorrow.');
176                } else {
177                    $message = I18N::translate('No events exist for tomorrow.');
178                }
179            } else {
180                if ($filter && Auth::check()) {
181                    $message = I18N::plural('No events for living people exist for the next %s day.', 'No events for living people exist for the next %s days.', $endjd - $startjd + 1, I18N::number($endjd - $startjd + 1));
182                } else {
183                    $message = I18N::plural('No events exist for the next %s day.', 'No events exist for the next %s days.', $endjd - $startjd + 1, I18N::number($endjd - $startjd + 1));
184                }
185            }
186
187            $content = view('modules/upcoming_events/empty', ['message' => $message]);
188        } elseif ($infoStyle === 'list') {
189            $content = view('lists/anniversaries-list', [
190                'id'         => $block_id,
191                'facts'      => $facts,
192                'limit_low'  => self::LIMIT_LOW,
193                'limit_high' => self::LIMIT_HIGH,
194            ]);
195        } else {
196            $content = view('lists/anniversaries-table', [
197                'facts'      => $facts,
198                'limit_low'  => self::LIMIT_LOW,
199                'limit_high' => self::LIMIT_HIGH,
200                'order'      => self::DATATABLES_ORDER[$sortStyle],
201            ]);
202        }
203
204        if ($context !== self::CONTEXT_EMBED) {
205            return view('modules/block-template', [
206                'block'      => Str::kebab($this->name()),
207                'id'         => $block_id,
208                'config_url' => $this->configUrl($tree, $context, $block_id),
209                'title'      => $this->title(),
210                'content'    => $content,
211            ]);
212        }
213
214        return $content;
215    }
216
217    /**
218     * Should this block load asynchronously using AJAX?
219     *
220     * Simple blocks are faster in-line, more complex ones can be loaded later.
221     *
222     * @return bool
223     */
224    public function loadAjax(): bool
225    {
226        return true;
227    }
228
229    /**
230     * Can this block be shown on the user’s home page?
231     *
232     * @return bool
233     */
234    public function isUserBlock(): bool
235    {
236        return true;
237    }
238
239    /**
240     * Can this block be shown on the tree’s home page?
241     *
242     * @return bool
243     */
244    public function isTreeBlock(): bool
245    {
246        return true;
247    }
248
249    /**
250     * Update the configuration for a block.
251     *
252     * @param ServerRequestInterface $request
253     * @param int                    $block_id
254     *
255     * @return void
256     */
257    public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void
258    {
259        $days       = Validator::parsedBody($request)->isBetween(1, self::MAX_DAYS)->integer('days');
260        $filter     = Validator::parsedBody($request)->boolean('filter');
261        $info_style = Validator::parsedBody($request)->isInArrayKeys($this->infoStyles())->string('infoStyle');
262        $sort_style = Validator::parsedBody($request)->isInArrayKeys($this->sortStyles())->string('sortStyle');
263        $events     = Validator::parsedBody($request)->array('events');
264
265        $this->setBlockSetting($block_id, 'days', (string)$days);
266        $this->setBlockSetting($block_id, 'filter', (string)$filter);
267        $this->setBlockSetting($block_id, 'infoStyle', $info_style);
268        $this->setBlockSetting($block_id, 'sortStyle', $sort_style);
269        $this->setBlockSetting($block_id, 'events', implode(',', $events));
270    }
271
272    /**
273     * An HTML form to edit block settings
274     *
275     * @param Tree $tree
276     * @param int  $block_id
277     *
278     * @return string
279     */
280    public function editBlockConfiguration(Tree $tree, int $block_id): string
281    {
282        $default_events = implode(',', self::DEFAULT_EVENTS);
283
284        $days       = (int) $this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
285        $filter     = $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
286        $info_style = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE);
287        $sort_style = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT);
288        $events     = $this->getBlockSetting($block_id, 'events', $default_events);
289
290        $event_array = explode(',', $events);
291
292        $all_events = [];
293        foreach (self::ALL_EVENTS as $event => $tag) {
294            $all_events[$event] = Registry::elementFactory()->make($tag)->label();
295        }
296
297        return view('modules/upcoming_events/config', [
298            'all_events'  => $all_events,
299            'days'        => $days,
300            'event_array' => $event_array,
301            'filter'      => $filter,
302            'info_style'  => $info_style,
303            'info_styles' => $this->infoStyles(),
304            'max_days'    => self::MAX_DAYS,
305            'sort_style'  => $sort_style,
306            'sort_styles' => $this->sortStyles(),
307        ]);
308    }
309
310    /**
311     * @return array<string,string>
312     */
313    private function infoStyles(): array
314    {
315        return [
316            self::LAYOUT_STYLE_LIST  => /* I18N: An option in a list-box */ I18N::translate('list'),
317            self::LAYOUT_STYLE_TABLE => /* I18N: An option in a list-box */ I18N::translate('table'),
318        ];
319    }
320
321    /**
322     * @return array<string,string>
323     */
324    private function sortStyles(): array
325    {
326        return [
327            self::SORT_STYLE_NAME => /* I18N: An option in a list-box */ I18N::translate('sort by name'),
328            self::SORT_STYLE_DATE => /* I18N: An option in a list-box */ I18N::translate('sort by date'),
329        ];
330    }
331}
332