18c2e8227SGreg Roach<?php 28c2e8227SGreg Roach/** 38c2e8227SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 88c2e8227SGreg Roach * (at your option) any later version. 98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 128c2e8227SGreg Roach * GNU General Public License for more details. 138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 158c2e8227SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1976692c8bSGreg Roach 200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Fact; 213d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\Functions; 228d0ebef0SGreg Roachuse Fisharebest\Webtrees\Gedcom; 230e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 24225e381fSGreg Roachuse Fisharebest\Webtrees\Individual; 252adcbd9aSGreg Roachuse Fisharebest\Webtrees\Services\ClipboardService; 268eaf8709SGreg Roachuse Illuminate\Support\Collection; 278c2e8227SGreg Roach 288c2e8227SGreg Roach/** 298c2e8227SGreg Roach * Class MediaTabModule 308c2e8227SGreg Roach */ 3137eb8894SGreg Roachclass MediaTabModule extends AbstractModule implements ModuleTabInterface 32c1010edaSGreg Roach{ 3349a243cbSGreg Roach use ModuleTabTrait; 3449a243cbSGreg Roach 3576692c8bSGreg Roach /** @var Fact[] A list of facts with media objects. */ 368c2e8227SGreg Roach private $facts; 378c2e8227SGreg Roach 382adcbd9aSGreg Roach /** @var ClipboardService */ 392adcbd9aSGreg Roach private $clipboard_service; 402adcbd9aSGreg Roach 412adcbd9aSGreg Roach /** 422adcbd9aSGreg Roach * NotesTabModule constructor. 432adcbd9aSGreg Roach * 442adcbd9aSGreg Roach * @param ClipboardService $clipboard_service 452adcbd9aSGreg Roach */ 46406c2a36SGreg Roach public function __construct(ClipboardService $clipboard_service) 47406c2a36SGreg Roach { 482adcbd9aSGreg Roach $this->clipboard_service = $clipboard_service; 492adcbd9aSGreg Roach } 502adcbd9aSGreg Roach 51961ec755SGreg Roach /** 52961ec755SGreg Roach * How should this module be labelled on tabs, menus, etc.? 53961ec755SGreg Roach * 54961ec755SGreg Roach * @return string 55961ec755SGreg Roach */ 5649a243cbSGreg Roach public function title(): string 57c1010edaSGreg Roach { 58bbb76c12SGreg Roach /* I18N: Name of a module */ 59bbb76c12SGreg Roach return I18N::translate('Media'); 608c2e8227SGreg Roach } 618c2e8227SGreg Roach 62961ec755SGreg Roach /** 63961ec755SGreg Roach * A sentence describing what this module does. 64961ec755SGreg Roach * 65961ec755SGreg Roach * @return string 66961ec755SGreg Roach */ 6749a243cbSGreg Roach public function description(): string 68c1010edaSGreg Roach { 69bbb76c12SGreg Roach /* I18N: Description of the “Media” module */ 70bbb76c12SGreg Roach return I18N::translate('A tab showing the media objects linked to an individual.'); 718c2e8227SGreg Roach } 728c2e8227SGreg Roach 7349a243cbSGreg Roach /** 7449a243cbSGreg Roach * The default position for this tab. It can be changed in the control panel. 7549a243cbSGreg Roach * 7649a243cbSGreg Roach * @return int 7749a243cbSGreg Roach */ 78cbf4b7faSGreg Roach public function defaultTabOrder(): int 79cbf4b7faSGreg Roach { 80353b36abSGreg Roach return 6; 818c2e8227SGreg Roach } 828c2e8227SGreg Roach 838c2e8227SGreg Roach /** {@inheritdoc} */ 848f53f488SRico Sonntag public function hasTabContent(Individual $individual): bool 85c1010edaSGreg Roach { 86225e381fSGreg Roach return $individual->canEdit() || $this->getFactsWithMedia($individual); 878c2e8227SGreg Roach } 888c2e8227SGreg Roach 898c2e8227SGreg Roach /** {@inheritdoc} */ 908f53f488SRico Sonntag public function isGrayedOut(Individual $individual): bool 91c1010edaSGreg Roach { 92225e381fSGreg Roach return !$this->getFactsWithMedia($individual); 938c2e8227SGreg Roach } 948c2e8227SGreg Roach 958c2e8227SGreg Roach /** {@inheritdoc} */ 969b34404bSGreg Roach public function getTabContent(Individual $individual): string 97c1010edaSGreg Roach { 98a8cd57e1SGreg Roach return view('modules/media/tab', [ 99225e381fSGreg Roach 'can_edit' => $individual->canEdit(), 1002adcbd9aSGreg Roach 'clipboard_facts' => $this->clipboard_service->pastableFactsOfType($individual, $this->supportedFacts()), 101225e381fSGreg Roach 'individual' => $individual, 102225e381fSGreg Roach 'facts' => $this->getFactsWithMedia($individual), 103225e381fSGreg Roach ]); 1048c2e8227SGreg Roach } 1058c2e8227SGreg Roach 1068c2e8227SGreg Roach /** 1078c2e8227SGreg Roach * Get all the facts for an individual which contain media objects. 1088c2e8227SGreg Roach * 109225e381fSGreg Roach * @param Individual $individual 110225e381fSGreg Roach * 1118c2e8227SGreg Roach * @return Fact[] 1128c2e8227SGreg Roach */ 1138f53f488SRico Sonntag private function getFactsWithMedia(Individual $individual): array 114c1010edaSGreg Roach { 1158c2e8227SGreg Roach if ($this->facts === null) { 11630158ae7SGreg Roach $facts = $individual->facts(); 117*39ca88baSGreg Roach foreach ($individual->spouseFamilies() as $family) { 1188c2e8227SGreg Roach if ($family->canShow()) { 11930158ae7SGreg Roach foreach ($family->facts() as $fact) { 120*39ca88baSGreg Roach $facts->push($fact); 1218c2e8227SGreg Roach } 1228c2e8227SGreg Roach } 1238c2e8227SGreg Roach } 12413abd6f3SGreg Roach $this->facts = []; 1258c2e8227SGreg Roach foreach ($facts as $fact) { 1268d0ebef0SGreg Roach if (preg_match('/(?:^1|\n\d) OBJE @' . Gedcom::REGEX_XREF . '@/', $fact->gedcom())) { 1278c2e8227SGreg Roach $this->facts[] = $fact; 1288c2e8227SGreg Roach } 1298c2e8227SGreg Roach } 1303d7a8a4cSGreg Roach Functions::sortFacts($this->facts); 1318c2e8227SGreg Roach } 1328c2e8227SGreg Roach 1338c2e8227SGreg Roach return $this->facts; 1348c2e8227SGreg Roach } 1358c2e8227SGreg Roach 1368c2e8227SGreg Roach /** {@inheritdoc} */ 1378f53f488SRico Sonntag public function canLoadAjax(): bool 138c1010edaSGreg Roach { 13915d603e7SGreg Roach return false; 1408c2e8227SGreg Roach } 1418eaf8709SGreg Roach 1428eaf8709SGreg Roach /** 1438eaf8709SGreg Roach * This module handles the following facts - so don't show them on the "Facts and events" tab. 1448eaf8709SGreg Roach * 1458eaf8709SGreg Roach * @return Collection|string[] 1468eaf8709SGreg Roach */ 1478eaf8709SGreg Roach public function supportedFacts(): Collection 1488eaf8709SGreg Roach { 1498eaf8709SGreg Roach return new Collection(['OBJE']); 1508eaf8709SGreg Roach } 1518c2e8227SGreg Roach} 152