xref: /webtrees/app/Module/IndividualFactsTabModule.php (revision 52bcc40297e06e51c5cc74d5ddd66c750aefef51)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 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\Date;
22use Fisharebest\Webtrees\Fact;
23use Fisharebest\Webtrees\Family;
24use Fisharebest\Webtrees\Functions\Functions;
25use Fisharebest\Webtrees\Gedcom;
26use Fisharebest\Webtrees\I18N;
27use Fisharebest\Webtrees\Individual;
28use Fisharebest\Webtrees\Services\ClipboardService;
29use Fisharebest\Webtrees\Services\ModuleService;
30use Illuminate\Support\Collection;
31
32/**
33 * Class IndividualFactsTabModule
34 */
35class IndividualFactsTabModule extends AbstractModule implements ModuleTabInterface
36{
37    use ModuleTabTrait;
38
39    /** @var ModuleService */
40    private $module_service;
41
42    /** @var ClipboardService */
43    private $clipboard_service;
44
45    /**
46     * UserWelcomeModule constructor.
47     *
48     * @param ModuleService    $module_service
49     * @param ClipboardService $clipboard_service
50     */
51    public function __construct(ModuleService $module_service, ClipboardService $clipboard_service)
52    {
53        $this->module_service    = $module_service;
54        $this->clipboard_service = $clipboard_service;
55    }
56
57    /**
58     * How should this module be labelled on tabs, menus, etc.?
59     *
60     * @return string
61     */
62    public function title(): string
63    {
64        /* I18N: Name of a module/tab on the individual page. */
65        return I18N::translate('Facts and events');
66    }
67
68    /**
69     * A sentence describing what this module does.
70     *
71     * @return string
72     */
73    public function description(): string
74    {
75        /* I18N: Description of the “Facts and events” module */
76        return I18N::translate('A tab showing the facts and events of an individual.');
77    }
78
79    /**
80     * The default position for this tab.  It can be changed in the control panel.
81     *
82     * @return int
83     */
84    public function defaultTabOrder(): int
85    {
86        return 2;
87    }
88
89    /** {@inheritdoc} */
90    public function isGrayedOut(Individual $individual): bool
91    {
92        return false;
93    }
94
95    /** {@inheritdoc} */
96    public function getTabContent(Individual $individual): string
97    {
98        // Only include events of close relatives that are between birth and death
99        $min_date = $individual->getEstimatedBirthDate();
100        $max_date = $individual->getEstimatedDeathDate();
101
102        // Which facts and events are handled by other modules?
103        $sidebar_facts = $this->module_service
104            ->findByComponent('sidebar', $individual->tree(), Auth::user())
105            ->map(function (ModuleSidebarInterface $sidebar): Collection {
106                return $sidebar->supportedFacts();
107            });
108
109        $tab_facts = $this->module_service
110            ->findByComponent('tab', $individual->tree(), Auth::user())
111            ->map(function (ModuleTabInterface $sidebar): Collection {
112                return $sidebar->supportedFacts();
113            });
114
115        $exclude_facts = $sidebar_facts->merge($tab_facts)->flatten();
116
117        $indifacts = [];
118
119        // The individual’s own facts
120        foreach ($individual->facts() as $fact) {
121            if (!$exclude_facts->contains($fact->getTag())) {
122                $indifacts[] = $fact;
123            }
124        }
125
126        // Add spouse-family facts
127        foreach ($individual->getSpouseFamilies() as $family) {
128            foreach ($family->facts() as $fact) {
129                if (!$exclude_facts->contains($fact->getTag()) && $fact->getTag() !== 'CHAN') {
130                    $indifacts[] = $fact;
131                }
132            }
133
134            $spouse = $family->getSpouse($individual);
135
136            if ($spouse instanceof Individual) {
137                $spouse_facts = $this->spouseFacts($individual, $spouse, $min_date, $max_date);
138                $indifacts    = array_merge($indifacts, $spouse_facts);
139            }
140
141            $child_facts = $this->childFacts($individual, $family, '_CHIL', '', $min_date, $max_date);
142            $indifacts   = array_merge($indifacts, $child_facts);
143        }
144
145        $parent_facts     = $this->parentFacts($individual, 1, $min_date, $max_date);
146        $associate_facts  = $this->associateFacts($individual);
147        $historical_facts = $this->historicalFacts($individual);
148
149        $indifacts = array_merge($indifacts, $parent_facts, $associate_facts, $historical_facts);
150
151        Functions::sortFacts($indifacts);
152
153        return view('modules/personal_facts/tab', [
154            'can_edit'             => $individual->canEdit(),
155            'clipboard_facts'      => $this->clipboard_service->pastableFacts($individual, $exclude_facts),
156            'has_historical_facts' => !empty($historical_facts),
157            'individual'           => $individual,
158            'facts'                => $indifacts,
159        ]);
160    }
161
162    /**
163     * Does a relative event occur within a date range (i.e. the individual's lifetime)?
164     *
165     * @param Fact $fact
166     * @param Date $min_date
167     * @param Date $max_date
168     *
169     * @return bool
170     */
171    private function includeFact(Fact $fact, Date $min_date, Date $max_date): bool
172    {
173        $fact_date = $fact->date();
174
175        return $fact_date->isOK() && Date::compare($min_date, $fact_date) <= 0 && Date::compare($fact_date, $max_date) <= 0;
176    }
177
178    /** {@inheritdoc} */
179    public function hasTabContent(Individual $individual): bool
180    {
181        return true;
182    }
183
184    /** {@inheritdoc} */
185    public function canLoadAjax(): bool
186    {
187        return false;
188    }
189
190    /**
191     * Spouse facts that are shown on an individual’s page.
192     *
193     * @param Individual $individual Show events that occured during the lifetime of this individual
194     * @param Individual $spouse     Show events of this individual
195     * @param Date       $min_date
196     * @param Date       $max_date
197     *
198     * @return Fact[]
199     */
200    private function spouseFacts(Individual $individual, Individual $spouse, Date $min_date, Date $max_date): array
201    {
202        $SHOW_RELATIVES_EVENTS = $individual->tree()->getPreference('SHOW_RELATIVES_EVENTS');
203
204        $facts = [];
205        if (strstr($SHOW_RELATIVES_EVENTS, '_DEAT_SPOU')) {
206            foreach ($spouse->facts(Gedcom::DEATH_EVENTS) as $fact) {
207                if ($this->includeFact($fact, $min_date, $max_date)) {
208                    // Convert the event to a close relatives event.
209                    $rela_fact = clone($fact);
210                    $rela_fact->setTag('_' . $fact->getTag() . '_SPOU');
211                    $facts[] = $rela_fact;
212                }
213            }
214        }
215
216        return $facts;
217    }
218
219    /**
220     * Get the events of children and grandchildren.
221     *
222     * @param Individual $person
223     * @param Family     $family
224     * @param string     $option
225     * @param string     $relation
226     * @param Date       $min_date
227     * @param Date       $max_date
228     *
229     * @return Fact[]
230     */
231    private function childFacts(Individual $person, Family $family, $option, $relation, Date $min_date, Date $max_date): array
232    {
233        $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');
234
235        $facts = [];
236
237        // Deal with recursion.
238        switch ($option) {
239            case '_CHIL':
240                // Add grandchildren
241                foreach ($family->getChildren() as $child) {
242                    foreach ($child->getSpouseFamilies() as $cfamily) {
243                        switch ($child->getSex()) {
244                            case 'M':
245                                foreach ($this->childFacts($person, $cfamily, '_GCHI', 'son', $min_date, $max_date) as $fact) {
246                                    $facts[] = $fact;
247                                }
248                                break;
249                            case 'F':
250                                foreach ($this->childFacts($person, $cfamily, '_GCHI', 'dau', $min_date, $max_date) as $fact) {
251                                    $facts[] = $fact;
252                                }
253                                break;
254                            default:
255                                foreach ($this->childFacts($person, $cfamily, '_GCHI', 'chi', $min_date, $max_date) as $fact) {
256                                    $facts[] = $fact;
257                                }
258                                break;
259                        }
260                    }
261                }
262                break;
263        }
264
265        // For each child in the family
266        foreach ($family->getChildren() as $child) {
267            if ($child->xref() == $person->xref()) {
268                // We are not our own sibling!
269                continue;
270            }
271            // add child’s birth
272            if (strpos($SHOW_RELATIVES_EVENTS, '_BIRT' . str_replace('_HSIB', '_SIBL', $option)) !== false) {
273                foreach ($child->facts(Gedcom::BIRTH_EVENTS) as $fact) {
274                    // Always show _BIRT_CHIL, even if the dates are not known
275                    if ($option == '_CHIL' || $this->includeFact($fact, $min_date, $max_date)) {
276                        if ($option == '_GCHI' && $relation == 'dau') {
277                            // Convert the event to a close relatives event.
278                            $rela_fact = clone($fact);
279                            $rela_fact->setTag('_' . $fact->getTag() . '_GCH1');
280                            $facts[] = $rela_fact;
281                        } elseif ($option == '_GCHI' && $relation == 'son') {
282                            // Convert the event to a close relatives event.
283                            $rela_fact = clone($fact);
284                            $rela_fact->setTag('_' . $fact->getTag() . '_GCH2');
285                            $facts[] = $rela_fact;
286                        } else {
287                            // Convert the event to a close relatives event.
288                            $rela_fact = clone($fact);
289                            $rela_fact->setTag('_' . $fact->getTag() . $option);
290                            $facts[] = $rela_fact;
291                        }
292                    }
293                }
294            }
295            // add child’s death
296            if (strpos($SHOW_RELATIVES_EVENTS, '_DEAT' . str_replace('_HSIB', '_SIBL', $option)) !== false) {
297                foreach ($child->facts(Gedcom::DEATH_EVENTS) as $fact) {
298                    if ($this->includeFact($fact, $min_date, $max_date)) {
299                        if ($option == '_GCHI' && $relation == 'dau') {
300                            // Convert the event to a close relatives event.
301                            $rela_fact = clone($fact);
302                            $rela_fact->setTag('_' . $fact->getTag() . '_GCH1');
303                            $facts[] = $rela_fact;
304                        } elseif ($option == '_GCHI' && $relation == 'son') {
305                            // Convert the event to a close relatives event.
306                            $rela_fact = clone($fact);
307                            $rela_fact->setTag('_' . $fact->getTag() . '_GCH2');
308                            $facts[] = $rela_fact;
309                        } else {
310                            // Convert the event to a close relatives event.
311                            $rela_fact = clone($fact);
312                            $rela_fact->setTag('_' . $fact->getTag() . $option);
313                            $facts[] = $rela_fact;
314                        }
315                    }
316                }
317            }
318            // add child’s marriage
319            if (strstr($SHOW_RELATIVES_EVENTS, '_MARR' . str_replace('_HSIB', '_SIBL', $option))) {
320                foreach ($child->getSpouseFamilies() as $sfamily) {
321                    foreach ($sfamily->facts(['MARR']) as $fact) {
322                        if ($this->includeFact($fact, $min_date, $max_date)) {
323                            if ($option == '_GCHI' && $relation == 'dau') {
324                                // Convert the event to a close relatives event.
325                                $rela_fact = clone($fact);
326                                $rela_fact->setTag('_' . $fact->getTag() . '_GCH1');
327                                $facts[] = $rela_fact;
328                            } elseif ($option == '_GCHI' && $relation == 'son') {
329                                // Convert the event to a close relatives event.
330                                $rela_fact = clone($fact);
331                                $rela_fact->setTag('_' . $fact->getTag() . '_GCH2');
332                                $facts[] = $rela_fact;
333                            } else {
334                                // Convert the event to a close relatives event.
335                                $rela_fact = clone($fact);
336                                $rela_fact->setTag('_' . $fact->getTag() . $option);
337                                $facts[] = $rela_fact;
338                            }
339                        }
340                    }
341                }
342            }
343        }
344
345        return $facts;
346    }
347
348    /**
349     * Get the events of parents and grandparents.
350     *
351     * @param Individual $person
352     * @param int        $sosa
353     * @param Date       $min_date
354     * @param Date       $max_date
355     *
356     * @return Fact[]
357     */
358    private function parentFacts(Individual $person, $sosa, Date $min_date, Date $max_date): array
359    {
360        $SHOW_RELATIVES_EVENTS = $person->tree()->getPreference('SHOW_RELATIVES_EVENTS');
361
362        $facts = [];
363
364        if ($sosa == 1) {
365            foreach ($person->getChildFamilies() as $family) {
366                // Add siblings
367                foreach ($this->childFacts($person, $family, '_SIBL', '', $min_date, $max_date) as $fact) {
368                    $facts[] = $fact;
369                }
370                foreach ($family->getSpouses() as $spouse) {
371                    foreach ($spouse->getSpouseFamilies() as $sfamily) {
372                        if ($family !== $sfamily) {
373                            // Add half-siblings
374                            foreach ($this->childFacts($person, $sfamily, '_HSIB', '', $min_date, $max_date) as $fact) {
375                                $facts[] = $fact;
376                            }
377                        }
378                    }
379                    // Add grandparents
380                    foreach ($this->parentFacts($spouse, $spouse->getSex() == 'F' ? 3 : 2, $min_date, $max_date) as $fact) {
381                        $facts[] = $fact;
382                    }
383                }
384            }
385
386            if (strstr($SHOW_RELATIVES_EVENTS, '_MARR_PARE')) {
387                // add father/mother marriages
388                foreach ($person->getChildFamilies() as $sfamily) {
389                    foreach ($sfamily->facts(['MARR']) as $fact) {
390                        if ($this->includeFact($fact, $min_date, $max_date)) {
391                            // marriage of parents (to each other)
392                            $rela_fact = clone($fact);
393                            $rela_fact->setTag('_' . $fact->getTag() . '_FAMC');
394                            $facts[] = $rela_fact;
395                        }
396                    }
397                }
398                foreach ($person->getChildStepFamilies() as $sfamily) {
399                    foreach ($sfamily->facts(['MARR']) as $fact) {
400                        if ($this->includeFact($fact, $min_date, $max_date)) {
401                            // marriage of a parent (to another spouse)
402                            // Convert the event to a close relatives event
403                            $rela_fact = clone($fact);
404                            $rela_fact->setTag('_' . $fact->getTag() . '_PARE');
405                            $facts[] = $rela_fact;
406                        }
407                    }
408                }
409            }
410        }
411
412        foreach ($person->getChildFamilies() as $family) {
413            foreach ($family->getSpouses() as $parent) {
414                if (strstr($SHOW_RELATIVES_EVENTS, '_DEAT' . ($sosa == 1 ? '_PARE' : '_GPAR'))) {
415                    foreach ($parent->facts(Gedcom::DEATH_EVENTS) as $fact) {
416                        if ($this->includeFact($fact, $min_date, $max_date)) {
417                            switch ($sosa) {
418                                case 1:
419                                    // Convert the event to a close relatives event.
420                                    $rela_fact = clone($fact);
421                                    $rela_fact->setTag('_' . $fact->getTag() . '_PARE');
422                                    $facts[] = $rela_fact;
423                                    break;
424                                case 2:
425                                    // Convert the event to a close relatives event
426                                    $rela_fact = clone($fact);
427                                    $rela_fact->setTag('_' . $fact->getTag() . '_GPA1');
428                                    $facts[] = $rela_fact;
429                                    break;
430                                case 3:
431                                    // Convert the event to a close relatives event
432                                    $rela_fact = clone($fact);
433                                    $rela_fact->setTag('_' . $fact->getTag() . '_GPA2');
434                                    $facts[] = $rela_fact;
435                                    break;
436                            }
437                        }
438                    }
439                }
440            }
441        }
442
443        return $facts;
444    }
445
446    /**
447     * Get any historical events.
448     *
449     * @param Individual $individual
450     *
451     * @return Fact[]
452     */
453    private function historicalFacts(Individual $individual): array
454    {
455        return $this->module_service->findByInterface(ModuleHistoricEventsInterface::class)
456            ->map(function (ModuleHistoricEventsInterface $module) use ($individual): Collection {
457                return $module->historicEventsForIndividual($individual);
458            })
459            ->flatten()
460            ->all();
461    }
462
463    /**
464     * Get the events of associates.
465     *
466     * @param Individual $person
467     *
468     * @return Fact[]
469     */
470    private function associateFacts(Individual $person): array
471    {
472        $facts = [];
473
474        /** @var Individual[] $associates */
475        $associates = array_merge(
476            $person->linkedIndividuals('ASSO'),
477            $person->linkedIndividuals('_ASSO'),
478            $person->linkedFamilies('ASSO'),
479            $person->linkedFamilies('_ASSO')
480        );
481        foreach ($associates as $associate) {
482            foreach ($associate->facts() as $fact) {
483                $arec = $fact->attribute('_ASSO');
484                if (!$arec) {
485                    $arec = $fact->attribute('ASSO');
486                }
487                if ($arec && trim($arec, '@') === $person->xref()) {
488                    // Extract the important details from the fact
489                    $factrec = '1 ' . $fact->getTag();
490                    if (preg_match('/\n2 DATE .*/', $fact->gedcom(), $match)) {
491                        $factrec .= $match[0];
492                    }
493                    if (preg_match('/\n2 PLAC .*/', $fact->gedcom(), $match)) {
494                        $factrec .= $match[0];
495                    }
496                    if ($associate instanceof Family) {
497                        foreach ($associate->getSpouses() as $spouse) {
498                            $factrec .= "\n2 _ASSO @" . $spouse->xref() . '@';
499                        }
500                    } else {
501                        $factrec .= "\n2 _ASSO @" . $associate->xref() . '@';
502                    }
503                    $facts[] = new Fact($factrec, $associate, 'asso');
504                }
505            }
506        }
507
508        return $facts;
509    }
510
511    /**
512     * This module handles the following facts - so don't show them on the "Facts and events" tab.
513     *
514     * @return Collection|string[]
515     */
516    public function supportedFacts(): Collection
517    {
518        // We don't actually displaye these facts, but they are displayed
519        // outside the tabs/sidebar systems. This just forces them to be excluded here.
520        return new Collection(['NAME', 'SEX']);
521    }
522}
523