2021-04-25 22:23:46 +01:00
|
|
|
<?php
|
2021-10-10 09:26:18 +01:00
|
|
|
|
|
|
|
declare(strict_types = 1);
|
2021-04-25 22:23:46 +01:00
|
|
|
// {{{ License
|
|
|
|
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* OembedPlugin implementation for GNU social
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Stephen Paul Weber
|
|
|
|
* @author Mikael Nordfeldth
|
|
|
|
* @author Diogo Cordeiro <diogo@fc.up.pt>
|
|
|
|
* @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;
|
|
|
|
|
2021-08-14 15:04:30 +01:00
|
|
|
use App\Core\DB\DB;
|
2021-04-25 22:23:46 +01:00
|
|
|
use App\Core\Entity;
|
2021-12-02 15:12:31 +00:00
|
|
|
use Component\Attachment\Entity\Attachment;
|
2021-04-27 22:24:48 +01:00
|
|
|
use DateTimeInterface;
|
2021-04-25 22:23:46 +01:00
|
|
|
|
|
|
|
/**
|
2021-04-27 21:56:50 +01:00
|
|
|
* Table Definition for attachment_embed
|
2021-04-25 22:23:46 +01:00
|
|
|
*
|
2021-04-27 21:56:50 +01:00
|
|
|
* @author Hugo Sales <hugo@hsal.es>
|
|
|
|
* @copyright 2019, 2021 Free Software Foundation, Inc http://www.fsf.org
|
2021-04-25 22:23:46 +01:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
|
|
|
class AttachmentEmbed extends Entity
|
|
|
|
{
|
2021-04-27 21:56:50 +01:00
|
|
|
// {{{ Autocode
|
2021-05-05 17:03:03 +01:00
|
|
|
// @codeCoverageIgnoreStart
|
2021-08-13 20:09:20 +01:00
|
|
|
private int $link_id;
|
2021-04-27 22:18:44 +01:00
|
|
|
private int $attachment_id;
|
2021-08-12 00:41:57 +01:00
|
|
|
private ?string $provider_name;
|
|
|
|
private ?string $provider_url;
|
2021-12-26 15:12:06 +00:00
|
|
|
private ?string $title;
|
|
|
|
private ?string $description;
|
2021-04-27 22:18:44 +01:00
|
|
|
private ?string $author_name;
|
|
|
|
private ?string $author_url;
|
2021-08-12 00:41:57 +01:00
|
|
|
private ?string $thumbnail_url;
|
2021-10-10 09:26:18 +01:00
|
|
|
private DateTimeInterface $modified;
|
2021-04-27 22:18:44 +01:00
|
|
|
|
2021-08-13 20:09:20 +01:00
|
|
|
public function setLinkId(int $link_id): self
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-13 20:09:20 +01:00
|
|
|
$this->link_id = $link_id;
|
2021-04-27 22:18:44 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-08-13 20:09:20 +01:00
|
|
|
public function getLinkId(): int
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-13 20:09:20 +01:00
|
|
|
return $this->link_id;
|
2021-04-27 22:18:44 +01:00
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function setAttachmentId(int $attachment_id): self
|
2021-04-28 16:03:17 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
$this->attachment_id = $attachment_id;
|
|
|
|
return $this;
|
2021-04-28 16:03:17 +01:00
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function getAttachmentId(): int
|
2021-04-28 16:03:17 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
return $this->attachment_id;
|
2021-04-28 16:03:17 +01:00
|
|
|
}
|
|
|
|
|
2021-08-12 00:41:57 +01:00
|
|
|
public function setProviderName(?string $provider_name): self
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-12 00:41:57 +01:00
|
|
|
$this->provider_name = $provider_name;
|
2021-04-27 22:18:44 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-08-12 00:41:57 +01:00
|
|
|
public function getProviderName(): ?string
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-12 00:41:57 +01:00
|
|
|
return $this->provider_name;
|
2021-04-27 22:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setProviderUrl(?string $provider_url): self
|
|
|
|
{
|
|
|
|
$this->provider_url = $provider_url;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProviderUrl(): ?string
|
|
|
|
{
|
|
|
|
return $this->provider_url;
|
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function setTitle(?string $title): self
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
$this->title = $title;
|
2021-04-27 22:18:44 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function getTitle(): ?string
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
return $this->title;
|
2021-04-27 22:18:44 +01:00
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function setDescription(?string $description): self
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
$this->description = $description;
|
2021-04-27 22:18:44 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-12-26 15:12:06 +00:00
|
|
|
public function getDescription(): ?string
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-12-26 15:12:06 +00:00
|
|
|
return $this->description;
|
2021-04-27 22:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-08-12 00:41:57 +01:00
|
|
|
public function setThumbnailUrl(?string $thumbnail_url): self
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-12 00:41:57 +01:00
|
|
|
$this->thumbnail_url = $thumbnail_url;
|
2021-04-27 22:18:44 +01:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2021-08-12 00:41:57 +01:00
|
|
|
public function getThumbnailUrl(): ?string
|
2021-04-27 22:18:44 +01:00
|
|
|
{
|
2021-08-12 00:41:57 +01:00
|
|
|
return $this->thumbnail_url;
|
2021-04-27 22:18:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setModified(DateTimeInterface $modified): self
|
|
|
|
{
|
|
|
|
$this->modified = $modified;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getModified(): DateTimeInterface
|
|
|
|
{
|
|
|
|
return $this->modified;
|
|
|
|
}
|
|
|
|
|
2021-05-05 17:03:03 +01:00
|
|
|
// @codeCoverageIgnoreEnd
|
2021-04-27 21:56:50 +01:00
|
|
|
// }}} Autocode
|
2021-04-25 22:23:46 +01:00
|
|
|
|
2021-08-14 15:04:30 +01:00
|
|
|
/**
|
|
|
|
* Generate the Embed thumbnail HTML attributes
|
|
|
|
*
|
2021-09-09 01:08:45 +01:00
|
|
|
* @return mixed[] ['class' => string, 'has_attachment' => bool, 'height' => int|null, 'width' => int|null]
|
2021-08-14 15:04:30 +01:00
|
|
|
*/
|
|
|
|
public function getImageHTMLAttributes(): array
|
|
|
|
{
|
|
|
|
$attr = ['class' => 'u-photo embed'];
|
|
|
|
$attachment = DB::find('attachment', ['id' => $this->getAttachmentId()]);
|
2021-09-25 13:12:32 +01:00
|
|
|
$thumbnail = $attachment->getThumbnail('medium');
|
2021-10-10 09:26:18 +01:00
|
|
|
if (\is_null($attachment) || \is_null($attachment->getWidth()) || \is_null($attachment->getHeight())) {
|
2021-08-14 15:04:30 +01:00
|
|
|
$attr['has_attachment'] = false;
|
2021-12-02 21:24:51 +00:00
|
|
|
} elseif (!\is_null($thumbnail)) {
|
2021-08-14 15:04:30 +01:00
|
|
|
$attr['has_attachment'] = true;
|
2021-12-26 09:48:16 +00:00
|
|
|
$attr['width'] = $thumbnail->getWidth();
|
|
|
|
$attr['height'] = $thumbnail->getHeight();
|
2021-08-14 15:04:30 +01:00
|
|
|
}
|
|
|
|
return $attr;
|
|
|
|
}
|
|
|
|
|
2021-04-25 22:23:46 +01:00
|
|
|
public static function schemaDef()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'attachment_embed',
|
|
|
|
'fields' => [
|
2021-08-13 20:09:20 +01:00
|
|
|
'link_id' => ['type' => 'int', 'not null' => true, 'description' => 'Embed for that URL/file'],
|
2021-08-12 00:41:57 +01:00
|
|
|
'attachment_id' => ['type' => 'int', 'not null' => true, 'description' => 'Attachment relation, used to show previews'],
|
2021-08-14 15:04:30 +01:00
|
|
|
'provider_name' => ['type' => 'text', 'description' => 'Name of this Embed provider'],
|
2021-08-12 00:41:57 +01:00
|
|
|
'provider_url' => ['type' => 'text', 'description' => 'URL of this Embed provider'],
|
2021-08-14 15:04:30 +01:00
|
|
|
'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)'],
|
2021-04-25 22:23:46 +01:00
|
|
|
'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'],
|
|
|
|
],
|
2021-08-13 20:09:20 +01:00
|
|
|
'primary key' => ['link_id'],
|
2021-04-25 22:23:46 +01:00
|
|
|
'foreign keys' => [
|
2021-08-13 20:09:20 +01:00
|
|
|
'attachment_embed_link_id_fkey' => ['link', ['link_id' => 'id']],
|
2021-04-27 21:56:50 +01:00
|
|
|
'attachment_embed_attachment_id_fkey' => ['attachment', ['attachment_id' => 'id']],
|
2021-04-25 22:23:46 +01:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|