xref: /webtrees/app/Media.php (revision ffc0a61f636c2f449ee87acaba2c9b803ca6e758)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2019 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees;
21
22use Closure;
23use Exception;
24use Fisharebest\Webtrees\Functions\FunctionsPrintFacts;
25use Fisharebest\Webtrees\Http\RequestHandlers\MediaPage;
26use Illuminate\Database\Capsule\Manager as DB;
27use Illuminate\Support\Collection;
28use stdClass;
29
30/**
31 * A GEDCOM media (OBJE) object.
32 */
33class Media extends GedcomRecord
34{
35    public const RECORD_TYPE = 'OBJE';
36
37    protected const ROUTE_NAME = MediaPage::class;
38
39    /**
40     * A closure which will create a record from a database row.
41     *
42     * @param Tree $tree
43     *
44     * @return Closure
45     */
46    public static function rowMapper(Tree $tree): Closure
47    {
48        return static function (stdClass $row) use ($tree): Media {
49            $media = Media::getInstance($row->m_id, $tree, $row->m_gedcom);
50            assert($media instanceof Media);
51
52            return $media;
53        };
54    }
55
56    /**
57     * Get an instance of a media object. For single records,
58     * we just receive the XREF. For bulk records (such as lists
59     * and search results) we can receive the GEDCOM data as well.
60     *
61     * @param string      $xref
62     * @param Tree        $tree
63     * @param string|null $gedcom
64     *
65     * @throws Exception
66     *
67     * @return Media|null
68     */
69    public static function getInstance(string $xref, Tree $tree, string $gedcom = null): ?Media
70    {
71        $record = parent::getInstance($xref, $tree, $gedcom);
72
73        if ($record instanceof self) {
74            return $record;
75        }
76
77        return null;
78    }
79
80    /**
81     * Each object type may have its own special rules, and re-implement this function.
82     *
83     * @param int $access_level
84     *
85     * @return bool
86     */
87    protected function canShowByType(int $access_level): bool
88    {
89        // Hide media objects if they are attached to private records
90        $linked_ids = DB::table('link')
91            ->where('l_file', '=', $this->tree->id())
92            ->where('l_to', '=', $this->xref)
93            ->pluck('l_from');
94
95        foreach ($linked_ids as $linked_id) {
96            $linked_record = GedcomRecord::getInstance($linked_id, $this->tree);
97            if ($linked_record && !$linked_record->canShow($access_level)) {
98                return false;
99            }
100        }
101
102        // ... otherwise apply default behavior
103        return parent::canShowByType($access_level);
104    }
105
106    /**
107     * Fetch data from the database
108     *
109     * @param string $xref
110     * @param int    $tree_id
111     *
112     * @return string|null
113     */
114    protected static function fetchGedcomRecord(string $xref, int $tree_id): ?string
115    {
116        return DB::table('media')
117            ->where('m_id', '=', $xref)
118            ->where('m_file', '=', $tree_id)
119            ->value('m_gedcom');
120    }
121
122    /**
123     * Get the media files for this media object
124     *
125     * @return Collection
126     */
127    public function mediaFiles(): Collection
128    {
129        return $this->facts(['FILE'])
130            ->map(function (Fact $fact): MediaFile {
131                return new MediaFile($fact->gedcom(), $this);
132            });
133    }
134
135    /**
136     * Get the first media file that contains an image.
137     *
138     * @return MediaFile|null
139     */
140    public function firstImageFile(): ?MediaFile
141    {
142        foreach ($this->mediaFiles() as $media_file) {
143            if ($media_file->isImage()) {
144                return $media_file;
145            }
146        }
147
148        return null;
149    }
150
151    /**
152     * Get the first note attached to this media object
153     *
154     * @return string
155     */
156    public function getNote(): string
157    {
158        $fact = $this->facts(['NOTE'])->first();
159
160        if ($fact instanceof Fact) {
161            // Link to note object
162            $note = $fact->target();
163            if ($note instanceof Note) {
164                return $note->getNote();
165            }
166
167            // Inline note
168            return $fact->value();
169        }
170
171        return '';
172    }
173
174    /**
175     * Extract names from the GEDCOM record.
176     *
177     * @return void
178     */
179    public function extractNames(): void
180    {
181        $names = [];
182        foreach ($this->mediaFiles() as $media_file) {
183            $names[] = $media_file->title();
184        }
185        foreach ($this->mediaFiles() as $media_file) {
186            $names[] = $media_file->filename();
187        }
188        $names = array_filter(array_unique($names));
189
190        if ($names === []) {
191            $names[] = $this->getFallBackName();
192        }
193
194        foreach ($names as $name) {
195            $this->addName(static::RECORD_TYPE, $name, '');
196        }
197    }
198
199    /**
200     * This function should be redefined in derived classes to show any major
201     * identifying characteristics of this record.
202     *
203     * @return string
204     */
205    public function formatListDetails(): string
206    {
207        ob_start();
208        FunctionsPrintFacts::printMediaLinks($this->tree(), '1 OBJE @' . $this->xref() . '@', 1);
209
210        return ob_get_clean();
211    }
212
213    /**
214     * Display an image-thumbnail or a media-icon, and add markup for image viewers such as colorbox.
215     *
216     * @param int      $width      Pixels
217     * @param int      $height     Pixels
218     * @param string   $fit        "crop" or "contain"
219     * @param string[] $attributes Additional HTML attributes
220     *
221     * @return string
222     */
223    public function displayImage($width, $height, $fit, $attributes = []): string
224    {
225        // Display the first image
226        foreach ($this->mediaFiles() as $media_file) {
227            if ($media_file->isImage()) {
228                return $media_file->displayImage($width, $height, $fit, $attributes);
229            }
230        }
231
232        // Display the first file of any type
233        foreach ($this->mediaFiles() as $media_file) {
234            return $media_file->displayImage($width, $height, $fit, $attributes);
235        }
236
237        // No image?
238        return '';
239    }
240}
241