xref: /webtrees/app/Module/MediaTabModule.php (revision 6b9cb339562c8aa4681c7eff2bf3bdf401cc9edd)
18c2e8227SGreg Roach<?php
23976b470SGreg Roach
38c2e8227SGreg Roach/**
48c2e8227SGreg Roach * webtrees: online genealogy
5f4cd70d3SGreg Roach * Copyright (C) 2020 webtrees development team
68c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
78c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
88c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
98c2e8227SGreg Roach * (at your option) any later version.
108c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
118c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
128c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
138c2e8227SGreg Roach * GNU General Public License for more details.
148c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
158c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
168c2e8227SGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module;
2176692c8bSGreg Roach
220e62c4b8SGreg Roachuse Fisharebest\Webtrees\Fact;
23*6b9cb339SGreg Roachuse Fisharebest\Webtrees\Registry;
248d0ebef0SGreg Roachuse Fisharebest\Webtrees\Gedcom;
250e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N;
26225e381fSGreg Roachuse Fisharebest\Webtrees\Individual;
272adcbd9aSGreg Roachuse Fisharebest\Webtrees\Services\ClipboardService;
288eaf8709SGreg Roachuse Illuminate\Support\Collection;
298c2e8227SGreg Roach
30f4cd70d3SGreg Roachuse function preg_match;
31f4cd70d3SGreg Roach
328c2e8227SGreg Roach/**
338c2e8227SGreg Roach * Class MediaTabModule
348c2e8227SGreg Roach */
3537eb8894SGreg Roachclass MediaTabModule extends AbstractModule implements ModuleTabInterface
36c1010edaSGreg Roach{
3749a243cbSGreg Roach    use ModuleTabTrait;
3849a243cbSGreg Roach
392adcbd9aSGreg Roach    /** @var ClipboardService */
402adcbd9aSGreg Roach    private $clipboard_service;
412adcbd9aSGreg Roach
422adcbd9aSGreg Roach    /**
432adcbd9aSGreg Roach     * NotesTabModule constructor.
442adcbd9aSGreg Roach     *
452adcbd9aSGreg Roach     * @param ClipboardService $clipboard_service
462adcbd9aSGreg Roach     */
47406c2a36SGreg Roach    public function __construct(ClipboardService $clipboard_service)
48406c2a36SGreg Roach    {
492adcbd9aSGreg Roach        $this->clipboard_service = $clipboard_service;
502adcbd9aSGreg Roach    }
512adcbd9aSGreg Roach
52961ec755SGreg Roach    /**
530cfd6963SGreg Roach     * How should this module be identified in the control panel, etc.?
54961ec755SGreg Roach     *
55961ec755SGreg Roach     * @return string
56961ec755SGreg Roach     */
5749a243cbSGreg Roach    public function title(): string
58c1010edaSGreg Roach    {
59bbb76c12SGreg Roach        /* I18N: Name of a module */
60bbb76c12SGreg Roach        return I18N::translate('Media');
618c2e8227SGreg Roach    }
628c2e8227SGreg Roach
63961ec755SGreg Roach    /**
64961ec755SGreg Roach     * A sentence describing what this module does.
65961ec755SGreg Roach     *
66961ec755SGreg Roach     * @return string
67961ec755SGreg Roach     */
6849a243cbSGreg Roach    public function description(): string
69c1010edaSGreg Roach    {
70bbb76c12SGreg Roach        /* I18N: Description of the “Media” module */
71bbb76c12SGreg Roach        return I18N::translate('A tab showing the media objects linked to an individual.');
728c2e8227SGreg Roach    }
738c2e8227SGreg Roach
7449a243cbSGreg Roach    /**
7549a243cbSGreg Roach     * The default position for this tab.  It can be changed in the control panel.
7649a243cbSGreg Roach     *
7749a243cbSGreg Roach     * @return int
7849a243cbSGreg Roach     */
79cbf4b7faSGreg Roach    public function defaultTabOrder(): int
80cbf4b7faSGreg Roach    {
81fb7a0427SGreg Roach        return 5;
828c2e8227SGreg Roach    }
838c2e8227SGreg Roach
843caaa4d2SGreg Roach    /**
853caaa4d2SGreg Roach     * Is this tab empty? If so, we don't always need to display it.
863caaa4d2SGreg Roach     *
873caaa4d2SGreg Roach     * @param Individual $individual
883caaa4d2SGreg Roach     *
893caaa4d2SGreg Roach     * @return bool
903caaa4d2SGreg Roach     */
918f53f488SRico Sonntag    public function hasTabContent(Individual $individual): bool
92c1010edaSGreg Roach    {
938af3e5c1SGreg Roach        return $individual->canEdit() || $this->getFactsWithMedia($individual)->isNotEmpty();
948c2e8227SGreg Roach    }
958c2e8227SGreg Roach
963caaa4d2SGreg Roach    /**
973caaa4d2SGreg Roach     * A greyed out tab has no actual content, but may perhaps have
983caaa4d2SGreg Roach     * options to create content.
993caaa4d2SGreg Roach     *
1003caaa4d2SGreg Roach     * @param Individual $individual
1013caaa4d2SGreg Roach     *
1023caaa4d2SGreg Roach     * @return bool
1033caaa4d2SGreg Roach     */
1048f53f488SRico Sonntag    public function isGrayedOut(Individual $individual): bool
105c1010edaSGreg Roach    {
1062078aa78SGreg Roach        return $this->getFactsWithMedia($individual)->isEmpty();
1078c2e8227SGreg Roach    }
1088c2e8227SGreg Roach
1093caaa4d2SGreg Roach    /**
1103caaa4d2SGreg Roach     * Generate the HTML content of this tab.
1113caaa4d2SGreg Roach     *
1123caaa4d2SGreg Roach     * @param Individual $individual
1133caaa4d2SGreg Roach     *
1143caaa4d2SGreg Roach     * @return string
1153caaa4d2SGreg Roach     */
1169b34404bSGreg Roach    public function getTabContent(Individual $individual): string
117c1010edaSGreg Roach    {
118a8cd57e1SGreg Roach        return view('modules/media/tab', [
119225e381fSGreg Roach            'can_edit'   => $individual->canEdit(),
1202adcbd9aSGreg Roach            'clipboard_facts' => $this->clipboard_service->pastableFactsOfType($individual, $this->supportedFacts()),
121225e381fSGreg Roach            'individual' => $individual,
122225e381fSGreg Roach            'facts'      => $this->getFactsWithMedia($individual),
123225e381fSGreg Roach        ]);
1248c2e8227SGreg Roach    }
1258c2e8227SGreg Roach
1268c2e8227SGreg Roach    /**
1278c2e8227SGreg Roach     * Get all the facts for an individual which contain media objects.
1288c2e8227SGreg Roach     *
129225e381fSGreg Roach     * @param Individual $individual
130225e381fSGreg Roach     *
131b5c8fd7eSGreg Roach     * @return Collection<Fact>
1328c2e8227SGreg Roach     */
133f4cd70d3SGreg Roach    protected function getFactsWithMedia(Individual $individual): Collection
134c1010edaSGreg Roach    {
135*6b9cb339SGreg Roach        return Registry::cache()->array()->remember(__CLASS__ . ':' . __METHOD__, static function () use ($individual): Collection {
13630158ae7SGreg Roach            $facts = $individual->facts();
137f4cd70d3SGreg Roach
13839ca88baSGreg Roach            foreach ($individual->spouseFamilies() as $family) {
1398c2e8227SGreg Roach                if ($family->canShow()) {
140f4cd70d3SGreg Roach                    $facts = $facts->concat($family->facts());
1418c2e8227SGreg Roach                }
1428c2e8227SGreg Roach            }
1438af3e5c1SGreg Roach
144f4cd70d3SGreg Roach            $facts = $facts->filter(static function (Fact $fact): bool {
145f4cd70d3SGreg Roach                return preg_match('/(?:^1|\n\d) OBJE @' . Gedcom::REGEX_XREF . '@/', $fact->gedcom()) === 1;
146f4cd70d3SGreg Roach            });
1478af3e5c1SGreg Roach
148f4cd70d3SGreg Roach            return Fact::sortFacts($facts);
149f4cd70d3SGreg Roach        });
1508c2e8227SGreg Roach    }
1518c2e8227SGreg Roach
1523caaa4d2SGreg Roach    /**
1533caaa4d2SGreg Roach     * Can this tab load asynchronously?
1543caaa4d2SGreg Roach     *
1553caaa4d2SGreg Roach     * @return bool
1563caaa4d2SGreg Roach     */
1578f53f488SRico Sonntag    public function canLoadAjax(): bool
158c1010edaSGreg Roach    {
15915d603e7SGreg Roach        return false;
1608c2e8227SGreg Roach    }
1618eaf8709SGreg Roach
1628eaf8709SGreg Roach    /**
1638eaf8709SGreg Roach     * This module handles the following facts - so don't show them on the "Facts and events" tab.
1648eaf8709SGreg Roach     *
165b5c8fd7eSGreg Roach     * @return Collection<string>
1668eaf8709SGreg Roach     */
1678eaf8709SGreg Roach    public function supportedFacts(): Collection
1688eaf8709SGreg Roach    {
1698eaf8709SGreg Roach        return new Collection(['OBJE']);
1708eaf8709SGreg Roach    }
1718c2e8227SGreg Roach}
172