xref: /webtrees/app/Module/UpcomingAnniversariesModule.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2018 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Module;
19
20use Fisharebest\Webtrees\Auth;
21use Fisharebest\Webtrees\GedcomTag;
22use Fisharebest\Webtrees\I18N;
23use Fisharebest\Webtrees\Services\CalendarService;
24use Fisharebest\Webtrees\Tree;
25use Symfony\Component\HttpFoundation\Request;
26
27/**
28 * Class UpcomingAnniversariesModule
29 */
30class UpcomingAnniversariesModule extends AbstractModule implements ModuleBlockInterface
31{
32    // Default values for new blocks.
33    const DEFAULT_DAYS   = '7';
34    const DEFAULT_FILTER = '1';
35    const DEFAULT_SORT   = 'alpha';
36    const DEFAULT_STYLE  = 'table';
37
38    // Can show this number of days into the future.
39    const MIN_DAYS = 1;
40    const MAX_DAYS = 30;
41
42    // All standard GEDCOM 5.5.1 events except CENS, RESI and EVEN
43    const ALL_EVENTS = [
44        'ADOP',
45        'ANUL',
46        'BAPM',
47        'BARM',
48        'BASM',
49        'BIRT',
50        'BLES',
51        'BURI',
52        'CHR',
53        'CHRA',
54        'CONF',
55        'CREM',
56        'DEAT',
57        'DIV',
58        'DIVF',
59        'EMIG',
60        'ENGA',
61        'FCOM',
62        'GRAD',
63        'IMMI',
64        'MARB',
65        'MARC',
66        'MARL',
67        'MARR',
68        'MARS',
69        'NATU',
70        'ORDN',
71        'PROB',
72        'RETI',
73        'WILL',
74    ];
75
76    const DEFAULT_EVENTS = [
77        'BIRT',
78        'MARR',
79        'DEAT',
80    ];
81
82    /**
83     * How should this module be labelled on tabs, menus, etc.?
84     *
85     * @return string
86     */
87    public function getTitle(): string
88    {
89        /* I18N: Name of a module */
90        return I18N::translate('Upcoming events');
91    }
92
93    /**
94     * A sentence describing what this module does.
95     *
96     * @return string
97     */
98    public function getDescription(): string
99    {
100        /* I18N: Description of the “Upcoming events” module */
101        return I18N::translate('A list of the anniversaries that will occur in the near future.');
102    }
103
104    /**
105     * Generate the HTML content of this block.
106     *
107     * @param Tree     $tree
108     * @param int      $block_id
109     * @param bool     $template
110     * @param string[] $cfg
111     *
112     * @return string
113     */
114    public function getBlock(Tree $tree, int $block_id, bool $template = true, array $cfg = []): string
115    {
116        global $ctype;
117
118        $calendar_service = new CalendarService();
119
120        $default_events = implode(',', self::DEFAULT_EVENTS);
121
122        $days      = (int) $this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
123        $filter    = (bool) $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
124        $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE);
125        $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT);
126        $events    = $this->getBlockSetting($block_id, 'events', $default_events);
127
128        extract($cfg, EXTR_OVERWRITE);
129
130        $event_array = explode(',', $events);
131
132        // If we are only showing living individuals, then we don't need to search for DEAT events.
133        if ($filter) {
134            $death_events = explode('|', WT_EVENTS_DEAT);
135            $event_array  = array_diff($event_array, $death_events);
136        }
137
138        $events_filter = implode('|', $event_array);
139
140        $startjd = WT_CLIENT_JD + 1;
141        $endjd   = WT_CLIENT_JD + $days;
142
143        $facts = $calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortStyle, $tree);
144
145        if (empty($facts)) {
146            if ($endjd == $startjd) {
147                $content = view('modules/upcoming_events/empty', [
148                    'message' => I18N::translate('No events exist for tomorrow.'),
149                ]);
150            } else {
151                /* I18N: translation for %s==1 is unused; it is translated separately as “tomorrow” */                $content = view('modules/upcoming_events/empty', [
152                    '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)),
153                ]);
154            }
155        } elseif ($infoStyle === 'list') {
156            $content = view('modules/upcoming_events/list', [
157                'facts' => $facts,
158            ]);
159        } else {
160            $content = view('modules/upcoming_events/table', [
161                'facts' => $facts,
162            ]);
163        }
164
165        if ($template) {
166            if ($ctype === 'gedcom' && Auth::isManager($tree)) {
167                $config_url = route('tree-page-block-edit', [
168                    'block_id' => $block_id,
169                    'ged'      => $tree->getName(),
170                ]);
171            } elseif ($ctype === 'user' && Auth::check()) {
172                $config_url = route('user-page-block-edit', [
173                    'block_id' => $block_id,
174                    'ged'      => $tree->getName(),
175                ]);
176            } else {
177                $config_url = '';
178            }
179
180            return view('modules/block-template', [
181                'block'      => str_replace('_', '-', $this->getName()),
182                'id'         => $block_id,
183                'config_url' => $config_url,
184                'title'      => $this->getTitle(),
185                'content'    => $content,
186            ]);
187        }
188
189        return $content;
190    }
191
192    /** {@inheritdoc} */
193    public function loadAjax(): bool
194    {
195        return true;
196    }
197
198    /** {@inheritdoc} */
199    public function isUserBlock(): bool
200    {
201        return true;
202    }
203
204    /** {@inheritdoc} */
205    public function isGedcomBlock(): bool
206    {
207        return true;
208    }
209
210    /**
211     * Update the configuration for a block.
212     *
213     * @param Request $request
214     * @param int     $block_id
215     *
216     * @return void
217     */
218    public function saveBlockConfiguration(Request $request, int $block_id)
219    {
220        $this->setBlockSetting($block_id, 'days', $request->get('days', self::DEFAULT_DAYS));
221        $this->setBlockSetting($block_id, 'filter', $request->get('filter', ''));
222        $this->setBlockSetting($block_id, 'infoStyle', $request->get('infoStyle', self::DEFAULT_STYLE));
223        $this->setBlockSetting($block_id, 'sortStyle', $request->get('sortStyle', self::DEFAULT_SORT));
224        $this->setBlockSetting($block_id, 'events', implode(',', (array) $request->get('events')));
225    }
226
227    /**
228     * An HTML form to edit block settings
229     *
230     * @param Tree $tree
231     * @param int  $block_id
232     *
233     * @return void
234     */
235    public function editBlockConfiguration(Tree $tree, int $block_id)
236    {
237        $default_events = implode(',', self::DEFAULT_EVENTS);
238
239        $days      = (int) $this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
240        $filter    = $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
241        $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE);
242        $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT);
243        $events    = $this->getBlockSetting($block_id, 'events', $default_events);
244
245        $event_array = explode(',', $events);
246
247        $all_events = [];
248        foreach (self::ALL_EVENTS as $event) {
249            $all_events[$event] = GedcomTag::getLabel($event);
250        }
251
252        $info_styles = [
253            /* I18N: An option in a list-box */
254            'list'  => I18N::translate('list'),
255            /* I18N: An option in a list-box */
256            'table' => I18N::translate('table'),
257        ];
258
259        $sort_styles = [
260            /* I18N: An option in a list-box */
261            'alpha' => I18N::translate('sort by name'),
262            /* I18N: An option in a list-box */
263            'anniv' => I18N::translate('sort by date'),
264        ];
265
266        echo view('modules/upcoming_events/config', [
267            'all_events'  => $all_events,
268            'days'        => $days,
269            'event_array' => $event_array,
270            'filter'      => $filter,
271            'infoStyle'   => $infoStyle,
272            'info_styles' => $info_styles,
273            'max_days'    => self::MAX_DAYS,
274            'sortStyle'   => $sortStyle,
275            'sort_styles' => $sort_styles,
276        ]);
277    }
278}
279