123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?php
- declare(strict_types = 1);
- namespace Plugin\Embed\Entity;
- use App\Core\DB\DB;
- use App\Core\Entity;
- use Component\Attachment\Entity\Attachment;
- use DateTimeInterface;
- class AttachmentEmbed extends Entity
- {
-
-
- private int $link_id;
- private int $attachment_id;
- private ?string $title;
- private ?string $description;
- private ?string $provider_name;
- private ?string $provider_url;
- private ?string $author_name;
- private ?string $author_url;
- private ?string $thumbnail_url;
- private DateTimeInterface $modified;
- public function setLinkId(int $link_id): self
- {
- $this->link_id = $link_id;
- return $this;
- }
- public function getLinkId(): int
- {
- return $this->link_id;
- }
- public function getAttachmentId(): int
- {
- return $this->attachment_id;
- }
- public function setAttachmentId(int $attachment_id): void
- {
- $this->attachment_id = $attachment_id;
- }
- public function setProviderName(?string $provider_name): self
- {
- $this->provider_name = $provider_name;
- return $this;
- }
- public function getProviderName(): ?string
- {
- return $this->provider_name;
- }
- public function setProviderUrl(?string $provider_url): self
- {
- $this->provider_url = $provider_url;
- return $this;
- }
- public function getProviderUrl(): ?string
- {
- return $this->provider_url;
- }
- public function setDescription(?string $description): self
- {
- $this->description = $description;
- return $this;
- }
- public function getDescription(): ?string
- {
- return $this->description;
- }
- public function setTitle(?string $title): self
- {
- $this->title = $title;
- return $this;
- }
- public function getTitle(): ?string
- {
- return $this->title;
- }
- public function setAuthorName(?string $author_name): self
- {
- $this->author_name = $author_name;
- return $this;
- }
- public function getAuthorName(): ?string
- {
- return $this->author_name;
- }
- public function setAuthorUrl(?string $author_url): self
- {
- $this->author_url = $author_url;
- return $this;
- }
- public function getAuthorUrl(): ?string
- {
- return $this->author_url;
- }
- public function setThumbnailUrl(?string $thumbnail_url): self
- {
- $this->thumbnail_url = $thumbnail_url;
- return $this;
- }
- public function getThumbnailUrl(): ?string
- {
- return $this->thumbnail_url;
- }
- public function setModified(DateTimeInterface $modified): self
- {
- $this->modified = $modified;
- return $this;
- }
- public function getModified(): DateTimeInterface
- {
- return $this->modified;
- }
-
-
-
- public function getImageHTMLAttributes(): array
- {
- $attr = ['class' => 'u-photo embed'];
- $attachment = DB::find('attachment', ['id' => $this->getAttachmentId()]);
- $thumbnail = $attachment->getThumbnail('medium');
- if (\is_null($attachment) || \is_null($attachment->getWidth()) || \is_null($attachment->getHeight())) {
- $attr['has_attachment'] = false;
- } elseif (!\is_null($thumbnail)) {
- $attr['has_attachment'] = true;
- $attr['width'] = $thumbnail->getWidth();
- $attr['height'] = $thumbnail->getHeight();
- }
- return $attr;
- }
- public static function schemaDef()
- {
- return [
- 'name' => 'attachment_embed',
- 'fields' => [
- 'link_id' => ['type' => 'int', 'not null' => true, 'description' => 'Embed for that URL/file'],
- 'attachment_id' => ['type' => 'int', 'not null' => true, 'description' => 'Attachment relation, used to show previews'],
- 'provider_name' => ['type' => 'text', 'description' => 'Name of this Embed provider'],
- 'provider_url' => ['type' => 'text', 'description' => 'URL of this Embed provider'],
- 'title' => ['type' => 'text', 'description' => 'Title of Embed resource when available'],
- 'description' => ['type' => 'text', 'description' => 'Description of Embed resource when available'],
- 'author_name' => ['type' => 'text', 'description' => 'Author name for this Embed resource'],
- 'author_url' => ['type' => 'text', 'description' => 'Author URL for this Embed resource'],
- 'thumbnail_url' => ['type' => 'text', 'description' => 'URL for this Embed resource when applicable (image)'],
- 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
- ],
- 'primary key' => ['link_id'],
- 'foreign keys' => [
- 'attachment_embed_link_id_fkey' => ['link', ['link_id' => 'id']],
- 'attachment_embed_attachment_id_fkey' => ['attachment', ['attachment_id' => 'id']],
- ],
- ];
- }
- }
|