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\Gedcom; 22use Fisharebest\Webtrees\GedcomTag; 23use Fisharebest\Webtrees\I18N; 24use Fisharebest\Webtrees\Services\CalendarService; 25use Fisharebest\Webtrees\Tree; 26use Symfony\Component\HttpFoundation\Request; 27 28/** 29 * Class OnThisDayModule 30 */ 31class OnThisDayModule extends AbstractModule implements ModuleBlockInterface 32{ 33 // All standard GEDCOM 5.5.1 events except CENS, RESI and EVEN 34 const ALL_EVENTS = [ 35 'ADOP', 36 'ANUL', 37 'BAPM', 38 'BARM', 39 'BASM', 40 'BIRT', 41 'BLES', 42 'BURI', 43 'CHR', 44 'CHRA', 45 'CONF', 46 'CREM', 47 'DEAT', 48 'DIV', 49 'DIVF', 50 'EMIG', 51 'ENGA', 52 'FCOM', 53 'GRAD', 54 'IMMI', 55 'MARB', 56 'MARC', 57 'MARL', 58 'MARR', 59 'MARS', 60 'NATU', 61 'ORDN', 62 'PROB', 63 'RETI', 64 'WILL', 65 ]; 66 67 const DEFAULT_EVENTS = [ 68 'BIRT', 69 'MARR', 70 'DEAT', 71 ]; 72 73 /** 74 * How should this module be labelled on tabs, menus, etc.? 75 * 76 * @return string 77 */ 78 public function getTitle(): string 79 { 80 /* I18N: Name of a module */ 81 return I18N::translate('On this day'); 82 } 83 84 /** 85 * A sentence describing what this module does. 86 * 87 * @return string 88 */ 89 public function getDescription(): string 90 { 91 /* I18N: Description of the “On this day” module */ 92 return I18N::translate('A list of the anniversaries that occur today.'); 93 } 94 95 /** 96 * Generate the HTML content of this block. 97 * 98 * @param Tree $tree 99 * @param int $block_id 100 * @param bool $template 101 * @param string[] $cfg 102 * 103 * @return string 104 */ 105 public function getBlock(Tree $tree, int $block_id, bool $template = true, array $cfg = []): string 106 { 107 global $ctype; 108 109 $calendar_service = new CalendarService(); 110 111 $default_events = implode(',', self::DEFAULT_EVENTS); 112 113 $filter = (bool) $this->getBlockSetting($block_id, 'filter', '1'); 114 $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); 115 $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha'); 116 $events = $this->getBlockSetting($block_id, 'events', $default_events); 117 118 extract($cfg, EXTR_OVERWRITE); 119 120 $event_array = explode(',', $events); 121 122 // If we are only showing living individuals, then we don't need to search for DEAT events. 123 if ($filter) { 124 $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); 125 } 126 127 $events_filter = implode('|', $event_array); 128 129 $startjd = WT_CLIENT_JD; 130 $endjd = WT_CLIENT_JD; 131 132 $facts = $calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortStyle, $tree); 133 134 if (empty($facts)) { 135 $content = view('modules/todays_events/empty'); 136 } elseif ($infoStyle === 'list') { 137 $content = view('modules/todays_events/list', [ 138 'facts' => $facts, 139 ]); 140 } else { 141 $content = view('modules/todays_events/table', [ 142 'facts' => $facts, 143 ]); 144 } 145 146 if ($template) { 147 if ($ctype === 'gedcom' && Auth::isManager($tree)) { 148 $config_url = route('tree-page-block-edit', [ 149 'block_id' => $block_id, 150 'ged' => $tree->name(), 151 ]); 152 } elseif ($ctype === 'user' && Auth::check()) { 153 $config_url = route('user-page-block-edit', [ 154 'block_id' => $block_id, 155 'ged' => $tree->name(), 156 ]); 157 } else { 158 $config_url = ''; 159 } 160 161 return view('modules/block-template', [ 162 'block' => str_replace('_', '-', $this->getName()), 163 'id' => $block_id, 164 'config_url' => $config_url, 165 'title' => $this->getTitle(), 166 'content' => $content, 167 ]); 168 } 169 170 return $content; 171 } 172 173 /** {@inheritdoc} */ 174 public function loadAjax(): bool 175 { 176 return true; 177 } 178 179 /** {@inheritdoc} */ 180 public function isUserBlock(): bool 181 { 182 return true; 183 } 184 185 /** {@inheritdoc} */ 186 public function isGedcomBlock(): bool 187 { 188 return true; 189 } 190 191 /** 192 * Update the configuration for a block. 193 * 194 * @param Request $request 195 * @param int $block_id 196 * 197 * @return void 198 */ 199 public function saveBlockConfiguration(Request $request, int $block_id) 200 { 201 $this->setBlockSetting($block_id, 'filter', $request->get('filter', '1')); 202 $this->setBlockSetting($block_id, 'infoStyle', $request->get('infoStyle', 'table')); 203 $this->setBlockSetting($block_id, 'sortStyle', $request->get('sortStyle', 'alpha')); 204 $this->setBlockSetting($block_id, 'events', implode(',', (array) $request->get('events'))); 205 } 206 207 /** 208 * An HTML form to edit block settings 209 * 210 * @param Tree $tree 211 * @param int $block_id 212 * 213 * @return void 214 */ 215 public function editBlockConfiguration(Tree $tree, int $block_id) 216 { 217 $default_events = implode(',', self::DEFAULT_EVENTS); 218 219 $filter = $this->getBlockSetting($block_id, 'filter', '1'); 220 $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); 221 $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha'); 222 $events = $this->getBlockSetting($block_id, 'events', $default_events); 223 224 $event_array = explode(',', $events); 225 226 $all_events = []; 227 foreach (self::ALL_EVENTS as $event) { 228 $all_events[$event] = GedcomTag::getLabel($event); 229 } 230 231 $info_styles = [ 232 /* I18N: An option in a list-box */ 233 'list' => I18N::translate('list'), 234 /* I18N: An option in a list-box */ 235 'table' => I18N::translate('table'), 236 ]; 237 238 $sort_styles = [ 239 /* I18N: An option in a list-box */ 240 'alpha' => I18N::translate('sort by name'), 241 /* I18N: An option in a list-box */ 242 'anniv' => I18N::translate('sort by date'), 243 ]; 244 245 echo view('modules/todays_events/config', [ 246 'all_events' => $all_events, 247 'event_array' => $event_array, 248 'filter' => $filter, 249 'infoStyle' => $infoStyle, 250 'info_styles' => $info_styles, 251 'sortStyle' => $sortStyle, 252 'sort_styles' => $sort_styles, 253 ]); 254 } 255} 256