. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Carbon; use Fisharebest\Webtrees\Gedcom; use Fisharebest\Webtrees\GedcomTag; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Services\CalendarService; use Fisharebest\Webtrees\Tree; use Illuminate\Support\Str; use Symfony\Component\HttpFoundation\Request; /** * Class OnThisDayModule */ class OnThisDayModule extends AbstractModule implements ModuleBlockInterface { use ModuleBlockTrait; // All standard GEDCOM 5.5.1 events except CENS, RESI and EVEN private const ALL_EVENTS = [ 'ADOP', 'ANUL', 'BAPM', 'BARM', 'BASM', 'BIRT', 'BLES', 'BURI', 'CHR', 'CHRA', 'CONF', 'CREM', 'DEAT', 'DIV', 'DIVF', 'EMIG', 'ENGA', 'FCOM', 'GRAD', 'IMMI', 'MARB', 'MARC', 'MARL', 'MARR', 'MARS', 'NATU', 'ORDN', 'PROB', 'RETI', 'WILL', ]; private const DEFAULT_EVENTS = [ 'BIRT', 'MARR', 'DEAT', ]; /** * How should this module be identified in the control panel, etc.? * * @return string */ public function title(): string { /* I18N: Name of a module */ return I18N::translate('On this day'); } /** * A sentence describing what this module does. * * @return string */ public function description(): string { /* I18N: Description of the “On this day” module */ return I18N::translate('A list of the anniversaries that occur today.'); } /** * Generate the HTML content of this block. * * @param Tree $tree * @param int $block_id * @param string $ctype * @param string[] $cfg * * @return string */ public function getBlock(Tree $tree, int $block_id, string $ctype = '', array $cfg = []): string { $calendar_service = new CalendarService(); $default_events = implode(',', self::DEFAULT_EVENTS); $filter = (bool) $this->getBlockSetting($block_id, 'filter', '1'); $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha'); $events = $this->getBlockSetting($block_id, 'events', $default_events); extract($cfg, EXTR_OVERWRITE); $event_array = explode(',', $events); // If we are only showing living individuals, then we don't need to search for DEAT events. if ($filter) { $event_array = array_diff($event_array, Gedcom::DEATH_EVENTS); } $events_filter = implode('|', $event_array); $startjd = Carbon::now()->julianDay(); $endjd = $startjd; $facts = $calendar_service->getEventsList($startjd, $endjd, $events_filter, $filter, $sortStyle, $tree); if (empty($facts)) { $content = view('modules/todays_events/empty'); } elseif ($infoStyle === 'list') { $content = view('modules/todays_events/list', [ 'facts' => $facts, ]); } else { $content = view('modules/todays_events/table', [ 'facts' => $facts, ]); } if ($ctype !== '') { if ($ctype === 'gedcom' && Auth::isManager($tree)) { $config_url = route('tree-page-block-edit', [ 'block_id' => $block_id, 'ged' => $tree->name(), ]); } elseif ($ctype === 'user' && Auth::check()) { $config_url = route('user-page-block-edit', [ 'block_id' => $block_id, 'ged' => $tree->name(), ]); } else { $config_url = ''; } return view('modules/block-template', [ 'block' => Str::kebab($this->name()), 'id' => $block_id, 'config_url' => $config_url, 'title' => $this->title(), 'content' => $content, ]); } return $content; } /** {@inheritdoc} */ public function loadAjax(): bool { return true; } /** {@inheritdoc} */ public function isUserBlock(): bool { return true; } /** {@inheritdoc} */ public function isTreeBlock(): bool { return true; } /** * Update the configuration for a block. * * @param Request $request * @param int $block_id * * @return void */ public function saveBlockConfiguration(Request $request, int $block_id): void { $this->setBlockSetting($block_id, 'filter', $request->get('filter', '1')); $this->setBlockSetting($block_id, 'infoStyle', $request->get('infoStyle', 'table')); $this->setBlockSetting($block_id, 'sortStyle', $request->get('sortStyle', 'alpha')); $this->setBlockSetting($block_id, 'events', implode(',', (array) $request->get('events'))); } /** * An HTML form to edit block settings * * @param Tree $tree * @param int $block_id * * @return void */ public function editBlockConfiguration(Tree $tree, int $block_id): void { $default_events = implode(',', self::DEFAULT_EVENTS); $filter = $this->getBlockSetting($block_id, 'filter', '1'); $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', 'table'); $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', 'alpha'); $events = $this->getBlockSetting($block_id, 'events', $default_events); $event_array = explode(',', $events); $all_events = []; foreach (self::ALL_EVENTS as $event) { $all_events[$event] = GedcomTag::getLabel($event); } $info_styles = [ /* I18N: An option in a list-box */ 'list' => I18N::translate('list'), /* I18N: An option in a list-box */ 'table' => I18N::translate('table'), ]; $sort_styles = [ /* I18N: An option in a list-box */ 'alpha' => I18N::translate('sort by name'), /* I18N: An option in a list-box */ 'anniv' => I18N::translate('sort by date'), ]; echo view('modules/todays_events/config', [ 'all_events' => $all_events, 'event_array' => $event_array, 'filter' => $filter, 'infoStyle' => $infoStyle, 'info_styles' => $info_styles, 'sortStyle' => $sortStyle, 'sort_styles' => $sort_styles, ]); } }