]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Api/Mastodon/Card.php
Correct format/style errors
[friendica.git] / src / Object / Api / Mastodon / Card.php
index 6abf58fdc817b83422c75aab03936c567703e3d3..c4d21f66a32174afb708639fbb28c0f1bc80e497 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -39,11 +39,23 @@ class Card extends BaseDataTransferObject
        /** @var string */
        protected $type;
        /** @var string */
+       protected $author_name;
+       /** @var string */
+       protected $author_url;
+       /** @var string */
        protected $provider_name;
        /** @var string */
        protected $provider_url;
+       /** @var int */
+       protected $width;
+       /** @var int */
+       protected $height;
        /** @var string */
        protected $image;
+       /** @var string */
+       protected $blurhash;
+       /** @var array */
+       protected $history;
 
        /**
         * Creates a card record from an attachment array.
@@ -51,15 +63,21 @@ class Card extends BaseDataTransferObject
         * @param array   $attachment Attachment record
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public function __construct(array $attachment)
+       public function __construct(array $attachment, array $history = [])
        {
                $this->url           = $attachment['url'] ?? '';
                $this->title         = $attachment['title'] ?? '';
                $this->description   = $attachment['description'] ?? '';
                $this->type          = $attachment['type'] ?? '';
-               $this->image         = $attachment['image'] ?? '';
+               $this->author_name   = $attachment['author_name'] ?? '';
+               $this->author_url    = $attachment['author_url'] ?? '';
                $this->provider_name = $attachment['provider_name'] ?? '';
                $this->provider_url  = $attachment['provider_url'] ?? '';
+               $this->width         = $attachment['width'] ?? 0;
+               $this->height        = $attachment['height'] ?? 0;
+               $this->image         = $attachment['image'] ?? '';
+               $this->blurhash      = $attachment['blurhash'] ?? '';
+               $this->history       = $history;
        }
 
        /**