]> git.mxchange.org Git - friendica.git/blob - src/Object/Api/Mastodon/Attachment.php
Prevent division by zero.
[friendica.git] / src / Object / Api / Mastodon / Attachment.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Object\Api\Mastodon;
23
24 use Friendica\BaseDataTransferObject;
25
26 /**
27  * Class Attachment
28  *
29  * @see https://docs.joinmastodon.org/entities/attachment
30  */
31 class Attachment extends BaseDataTransferObject
32 {
33         /** @var string */
34         protected $id;
35         /** @var string */
36         protected $type;
37         /** @var string */
38         protected $url;
39         /** @var string */
40         protected $preview_url;
41         /** @var string */
42         protected $remote_url;
43         /** @var string */
44         protected $text_url;
45         /** @var string */
46         protected $description;
47         /** @var array */
48         protected $meta;
49
50         /**
51          * Creates an attachment
52          *
53          * @param array $attachment
54          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
55          */
56         public function __construct(array $attachment, string $type, string $url, string $preview, string $remote)
57         {
58                 $this->id = (string)$attachment['id'];
59                 $this->type = $type;
60                 $this->url = $url;
61                 $this->preview_url = $preview;
62                 $this->remote_url = $remote;
63                 $this->text_url = $this->remote_url ?? $this->url;
64                 $this->description = $attachment['description'];
65                 if ($type === 'image') {
66                         if ((int) $attachment['width'] > 0 && (int) $attachment['height'] > 0) {
67                                 $this->meta['original']['width'] = (int) $attachment['width'];
68                                 $this->meta['original']['height'] = (int) $attachment['height'];
69                                 $this->meta['original']['size'] = (int) $attachment['width'] . 'x' . (int) $attachment['height'];
70                                 $this->meta['original']['aspect'] = (float) ((int)  $attachment['width'] / (int) $attachment['height']);
71                         }
72
73                         if ((int) $attachment['preview-width'] > 0 && (int) $attachment['preview-height'] > 0) {
74                                 $this->meta['small']['width'] = (int) $attachment['preview-width'];
75                                 $this->meta['small']['height'] = (int) $attachment['preview-height'];
76                                 $this->meta['small']['size'] = (int) $attachment['preview-width'] . 'x' . (int) $attachment['preview-height'];
77                                 $this->meta['small']['aspect'] = (float) ((int)  $attachment['preview-width'] / (int) $attachment['preview-height']);
78                         }
79                 }
80         }
81
82         /**
83          * Returns the current entity as an array
84          *
85          * @return array
86          */
87         public function toArray(): array
88         {
89                 $attachment = parent::toArray();
90
91                 if (empty($attachment['remote_url'])) {
92                         $attachment['remote_url'] = null;
93                 }
94
95                 return $attachment;
96         }
97 }