. // }}} /** * OembedPlugin implementation for GNU social * * @package GNUsocial * * @author Stephen Paul Weber * @author Mikael Nordfeldth * @author Diogo Cordeiro * @copyright 2019 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace Plugin\Embed\Entity; use App\Core\Entity; use DateTimeInterface; /** * Table Definition for attachment_embed * * @author Hugo Sales * @copyright 2019, 2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class AttachmentEmbed extends Entity { // {{{ Autocode private int $attachment_id; private ?string $mimetype; private ?string $provider; private ?string $provider_url; private ?int $width; private ?int $height; private ?string $html; private ?string $title; private ?string $author_name; private ?string $author_url; private ?string $url; private \DateTimeInterface $modified; public function setAttachmentId(int $attachment_id): self { $this->attachment_id = $attachment_id; return $this; } public function getAttachmentId(): int { return $this->attachment_id; } public function setMimetype(?string $mimetype): self { $this->mimetype = $mimetype; return $this; } public function getMimetype(): ?string { return $this->mimetype; } public function setProvider(?string $provider): self { $this->provider = $provider; return $this; } public function getProvider(): ?string { return $this->provider; } public function setProviderUrl(?string $provider_url): self { $this->provider_url = $provider_url; return $this; } public function getProviderUrl(): ?string { return $this->provider_url; } public function setWidth(?int $width): self { $this->width = $width; return $this; } public function getWidth(): ?int { return $this->width; } public function setHeight(?int $height): self { $this->height = $height; return $this; } public function getHeight(): ?int { return $this->height; } public function setHtml(?string $html): self { $this->html = $html; return $this; } public function getHtml(): ?string { return $this->html; } 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 setUrl(?string $url): self { $this->url = $url; return $this; } public function getUrl(): ?string { return $this->url; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } // }}} Autocode public static function schemaDef() { return [ 'name' => 'attachment_embed', 'fields' => [ 'attachment_id' => ['type' => 'int', 'not null' => true, 'description' => 'oEmbed for that URL/file'], 'mimetype' => ['type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'], 'provider' => ['type' => 'text', 'description' => 'name of this oEmbed provider'], 'provider_url' => ['type' => 'text', 'description' => 'URL of this oEmbed provider'], 'width' => ['type' => 'int', 'description' => 'width of oEmbed resource when available'], 'height' => ['type' => 'int', 'description' => 'height of oEmbed resource when available'], 'html' => ['type' => 'text', 'description' => 'html representation of this oEmbed resource when applicable'], 'title' => ['type' => 'text', 'description' => 'title of oEmbed resource when available'], 'author_name' => ['type' => 'text', 'description' => 'author name for this oEmbed resource'], 'author_url' => ['type' => 'text', 'description' => 'author URL for this oEmbed resource'], 'url' => ['type' => 'text', 'description' => 'URL for this oEmbed resource when applicable (photo, link)'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'], ], 'primary key' => ['attachment_id'], 'foreign keys' => [ 'attachment_embed_attachment_id_fkey' => ['attachment', ['attachment_id' => 'id']], ], ]; } }