xref: /webtrees/app/Media.php (revision c0804649bf60e006885fb046f075cf3008bf7cb9)
1a25f0a04SGreg Roach<?php
2a25f0a04SGreg Roach/**
3a25f0a04SGreg Roach * webtrees: online genealogy
48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify
6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by
7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or
8a25f0a04SGreg Roach * (at your option) any later version.
9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful,
10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12a25f0a04SGreg Roach * GNU General Public License for more details.
13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License
14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
15a25f0a04SGreg Roach */
16e7f56f2aSGreg Roachdeclare(strict_types=1);
17e7f56f2aSGreg Roach
1876692c8bSGreg Roachnamespace Fisharebest\Webtrees;
1976692c8bSGreg Roach
20886b77daSGreg Roachuse Closure;
213d7a8a4cSGreg Roachuse Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
222e5b4452SGreg Roachuse Illuminate\Database\Capsule\Manager as DB;
23886b77daSGreg Roachuse stdClass;
24a25f0a04SGreg Roach
25a25f0a04SGreg Roach/**
2676692c8bSGreg Roach * A GEDCOM media (OBJE) object.
27a25f0a04SGreg Roach */
28c1010edaSGreg Roachclass Media extends GedcomRecord
29c1010edaSGreg Roach{
3016d6367aSGreg Roach    public const RECORD_TYPE = 'OBJE';
3116d6367aSGreg Roach
3216d6367aSGreg Roach    protected const ROUTE_NAME = 'media';
33a25f0a04SGreg Roach
3476692c8bSGreg Roach    /**
35886b77daSGreg Roach     * A closure which will create a record from a database row.
36886b77daSGreg Roach     *
37886b77daSGreg Roach     * @return Closure
38886b77daSGreg Roach     */
39*c0804649SGreg Roach    public static function rowMapper(): Closure
40886b77daSGreg Roach    {
41*c0804649SGreg Roach        return function (stdClass $row): Media {
42*c0804649SGreg Roach            return Media::getInstance($row->m_id, Tree::findById($row->m_file), $row->m_gedcom);
43886b77daSGreg Roach        };
44886b77daSGreg Roach    }
45886b77daSGreg Roach
46886b77daSGreg Roach    /**
47e71ef9d2SGreg Roach     * Get an instance of a media object. For single records,
48e71ef9d2SGreg Roach     * we just receive the XREF. For bulk records (such as lists
49e71ef9d2SGreg Roach     * and search results) we can receive the GEDCOM data as well.
50e71ef9d2SGreg Roach     *
51e71ef9d2SGreg Roach     * @param string      $xref
52e71ef9d2SGreg Roach     * @param Tree        $tree
53e71ef9d2SGreg Roach     * @param string|null $gedcom
54e71ef9d2SGreg Roach     *
55e71ef9d2SGreg Roach     * @throws \Exception
56e71ef9d2SGreg Roach     *
57e71ef9d2SGreg Roach     * @return Media|null
58e71ef9d2SGreg Roach     */
5976f666f4SGreg Roach    public static function getInstance(string $xref, Tree $tree, string $gedcom = null)
60c1010edaSGreg Roach    {
61e71ef9d2SGreg Roach        $record = parent::getInstance($xref, $tree, $gedcom);
62e71ef9d2SGreg Roach
63e71ef9d2SGreg Roach        if ($record instanceof Media) {
64e71ef9d2SGreg Roach            return $record;
65e71ef9d2SGreg Roach        }
66b2ce94c6SRico Sonntag
67b2ce94c6SRico Sonntag        return null;
68e71ef9d2SGreg Roach    }
69e71ef9d2SGreg Roach
70e71ef9d2SGreg Roach    /**
7176692c8bSGreg Roach     * Each object type may have its own special rules, and re-implement this function.
7276692c8bSGreg Roach     *
7376692c8bSGreg Roach     * @param int $access_level
7476692c8bSGreg Roach     *
7576692c8bSGreg Roach     * @return bool
7676692c8bSGreg Roach     */
7735584196SGreg Roach    protected function canShowByType(int $access_level): bool
78c1010edaSGreg Roach    {
79a25f0a04SGreg Roach        // Hide media objects if they are attached to private records
8025366223SGreg Roach        $linked_ids = DB::table('link')
8125366223SGreg Roach            ->where('l_file', '=', $this->tree->id())
8225366223SGreg Roach            ->where('l_to', '=', $this->xref)
8325366223SGreg Roach            ->pluck('l_from');
8425366223SGreg Roach
85a25f0a04SGreg Roach        foreach ($linked_ids as $linked_id) {
8624ec66ceSGreg Roach            $linked_record = GedcomRecord::getInstance($linked_id, $this->tree);
87a25f0a04SGreg Roach            if ($linked_record && !$linked_record->canShow($access_level)) {
88a25f0a04SGreg Roach                return false;
89a25f0a04SGreg Roach            }
90a25f0a04SGreg Roach        }
91a25f0a04SGreg Roach
92a25f0a04SGreg Roach        // ... otherwise apply default behaviour
93a25f0a04SGreg Roach        return parent::canShowByType($access_level);
94a25f0a04SGreg Roach    }
95a25f0a04SGreg Roach
9676692c8bSGreg Roach    /**
9776692c8bSGreg Roach     * Fetch data from the database
9876692c8bSGreg Roach     *
9976692c8bSGreg Roach     * @param string $xref
10076692c8bSGreg Roach     * @param int    $tree_id
10176692c8bSGreg Roach     *
10276692c8bSGreg Roach     * @return null|string
10376692c8bSGreg Roach     */
10476f666f4SGreg Roach    protected static function fetchGedcomRecord(string $xref, int $tree_id)
105c1010edaSGreg Roach    {
1062e5b4452SGreg Roach        return DB::table('media')
1072e5b4452SGreg Roach            ->where('m_id', '=', $xref)
1082e5b4452SGreg Roach            ->where('m_file', '=', $tree_id)
1092e5b4452SGreg Roach            ->value('m_gedcom');
110a25f0a04SGreg Roach    }
111a25f0a04SGreg Roach
112a25f0a04SGreg Roach    /**
1138f5f5da8SGreg Roach     * Get the media files for this media object
1148f5f5da8SGreg Roach     *
1158f5f5da8SGreg Roach     * @return MediaFile[]
1168f5f5da8SGreg Roach     */
117c1010edaSGreg Roach    public function mediaFiles(): array
118c1010edaSGreg Roach    {
1198f5f5da8SGreg Roach        $media_files = [];
1208f5f5da8SGreg Roach
1218d0ebef0SGreg Roach        foreach ($this->facts(['FILE']) as $fact) {
122138ca96cSGreg Roach            $media_files[] = new MediaFile($fact->gedcom(), $this);
1238f5f5da8SGreg Roach        }
1248f5f5da8SGreg Roach
1258f5f5da8SGreg Roach        return $media_files;
1268f5f5da8SGreg Roach    }
1278f5f5da8SGreg Roach
1288f5f5da8SGreg Roach    /**
12964b90bf1SGreg Roach     * Get the first media file that contains an image.
1308f5f5da8SGreg Roach     *
1318f5f5da8SGreg Roach     * @return MediaFile|null
1328f5f5da8SGreg Roach     */
133c1010edaSGreg Roach    public function firstImageFile()
134c1010edaSGreg Roach    {
1358f5f5da8SGreg Roach        foreach ($this->mediaFiles() as $media_file) {
1364a9f750fSGreg Roach            if ($media_file->isImage()) {
1378f5f5da8SGreg Roach                return $media_file;
1388f5f5da8SGreg Roach            }
1398f5f5da8SGreg Roach        }
1408f5f5da8SGreg Roach
1418f5f5da8SGreg Roach        return null;
1428f5f5da8SGreg Roach    }
1438f5f5da8SGreg Roach
1448f5f5da8SGreg Roach    /**
145a25f0a04SGreg Roach     * Get the first note attached to this media object
146a25f0a04SGreg Roach     *
147ff166e64SGreg Roach     * @return string
148a25f0a04SGreg Roach     */
149c1010edaSGreg Roach    public function getNote()
150c1010edaSGreg Roach    {
151e24444eeSGreg Roach        $fact = $this->getFirstFact('NOTE');
152e24444eeSGreg Roach        if ($fact instanceof Fact) {
153e24444eeSGreg Roach            // Link to note object
154dc124885SGreg Roach            $note = $fact->target();
155e24444eeSGreg Roach            if ($note instanceof Note) {
156e24444eeSGreg Roach                return $note->getNote();
157a25f0a04SGreg Roach            }
158a25f0a04SGreg Roach
159e24444eeSGreg Roach            // Inline note
16084586c02SGreg Roach            return $fact->value();
161a25f0a04SGreg Roach        }
162b2ce94c6SRico Sonntag
163b2ce94c6SRico Sonntag        return '';
164a25f0a04SGreg Roach    }
165a25f0a04SGreg Roach
166a25f0a04SGreg Roach    /**
16776692c8bSGreg Roach     * Extract names from the GEDCOM record.
168c7ff4153SGreg Roach     *
169c7ff4153SGreg Roach     * @return void
17076692c8bSGreg Roach     */
171c1010edaSGreg Roach    public function extractNames()
172c1010edaSGreg Roach    {
17364b90bf1SGreg Roach        $names = [];
17464b90bf1SGreg Roach        foreach ($this->mediaFiles() as $media_file) {
17564b90bf1SGreg Roach            $names[] = $media_file->title();
17692d61e73SGreg Roach        }
17792d61e73SGreg Roach        foreach ($this->mediaFiles() as $media_file) {
17864b90bf1SGreg Roach            $names[] = $media_file->filename();
17964b90bf1SGreg Roach        }
18064b90bf1SGreg Roach        $names = array_filter(array_unique($names));
18164b90bf1SGreg Roach
18264b90bf1SGreg Roach        if (empty($names)) {
18364b90bf1SGreg Roach            $names[] = $this->getFallBackName();
18464b90bf1SGreg Roach        }
18564b90bf1SGreg Roach
18664b90bf1SGreg Roach        foreach ($names as $name) {
18776f666f4SGreg Roach            $this->addName(static::RECORD_TYPE, $name, '');
18864b90bf1SGreg Roach        }
189a25f0a04SGreg Roach    }
190a25f0a04SGreg Roach
19176692c8bSGreg Roach    /**
19276692c8bSGreg Roach     * This function should be redefined in derived classes to show any major
19376692c8bSGreg Roach     * identifying characteristics of this record.
19476692c8bSGreg Roach     *
19576692c8bSGreg Roach     * @return string
19676692c8bSGreg Roach     */
1978f53f488SRico Sonntag    public function formatListDetails(): string
198c1010edaSGreg Roach    {
199a25f0a04SGreg Roach        ob_start();
200f4afa648SGreg Roach        FunctionsPrintFacts::printMediaLinks($this->tree(), '1 OBJE @' . $this->xref() . '@', 1);
201a25f0a04SGreg Roach
202a25f0a04SGreg Roach        return ob_get_clean();
203a25f0a04SGreg Roach    }
20491eef4ffSGreg Roach
20591eef4ffSGreg Roach    /**
20691eef4ffSGreg Roach     * Display an image-thumbnail or a media-icon, and add markup for image viewers such as colorbox.
20791eef4ffSGreg Roach     *
20891eef4ffSGreg Roach     * @param int      $width      Pixels
20991eef4ffSGreg Roach     * @param int      $height     Pixels
21091eef4ffSGreg Roach     * @param string   $fit        "crop" or "contain"
21191eef4ffSGreg Roach     * @param string[] $attributes Additional HTML attributes
21291eef4ffSGreg Roach     *
21391eef4ffSGreg Roach     * @return string
21491eef4ffSGreg Roach     */
2158f53f488SRico Sonntag    public function displayImage($width, $height, $fit, $attributes = []): string
216c1010edaSGreg Roach    {
21791eef4ffSGreg Roach        // Display the first image
21891eef4ffSGreg Roach        foreach ($this->mediaFiles() as $media_file) {
21991eef4ffSGreg Roach            if ($media_file->isImage()) {
22091eef4ffSGreg Roach                return $media_file->displayImage($width, $height, $fit, $attributes);
22191eef4ffSGreg Roach            }
22291eef4ffSGreg Roach        }
22391eef4ffSGreg Roach
22491eef4ffSGreg Roach        // Display the first file of any type
22591eef4ffSGreg Roach        foreach ($this->mediaFiles() as $media_file) {
22691eef4ffSGreg Roach            return $media_file->displayImage($width, $height, $fit, $attributes);
22791eef4ffSGreg Roach        }
22891eef4ffSGreg Roach
22991eef4ffSGreg Roach        // No image?
23091eef4ffSGreg Roach        return '';
23191eef4ffSGreg Roach    }
232a25f0a04SGreg Roach}
233