2008-05-15 17:28:44 +01:00
|
|
|
<?php
|
2019-09-11 09:25:39 +01:00
|
|
|
|
2020-03-29 20:56:35 +01:00
|
|
|
// {{{ License
|
2020-05-20 17:53:53 +01:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
2020-03-29 20:56:35 +01:00
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
2020-05-10 21:43:15 +01:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2020-03-29 20:56:35 +01:00
|
|
|
// 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.
|
|
|
|
//
|
2020-05-10 21:43:15 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
2020-03-29 20:56:35 +01:00
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
2020-03-29 19:33:16 +01:00
|
|
|
|
|
|
|
namespace App\Entity;
|
2016-01-06 15:14:26 +00:00
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
use DateTimeInterface;
|
|
|
|
|
2008-05-15 17:28:44 +01:00
|
|
|
/**
|
2020-03-29 19:33:16 +01:00
|
|
|
* Entity for user's avatar
|
|
|
|
*
|
|
|
|
* @category DB
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet Inc.
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @author Hugo Sales <hugo@fc.up.pt>
|
|
|
|
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2008-05-15 17:28:44 +01:00
|
|
|
*/
|
2020-03-29 19:33:16 +01:00
|
|
|
class Avatar
|
2008-05-15 17:28:44 +01:00
|
|
|
{
|
2020-03-30 15:00:13 +01:00
|
|
|
// {{{ Autocode
|
2008-07-09 23:46:30 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
private int $profile_id;
|
|
|
|
private ?bool $original;
|
|
|
|
private int $width;
|
|
|
|
private int $height;
|
|
|
|
private string $mediatype;
|
|
|
|
private ?string $filename;
|
2020-05-10 21:43:15 +01:00
|
|
|
private DateTimeInterface $created;
|
|
|
|
private DateTimeInterface $modified;
|
2020-03-30 16:13:51 +01:00
|
|
|
|
|
|
|
public function setProfileId(int $profile_id): self
|
|
|
|
{
|
|
|
|
$this->profile_id = $profile_id;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getProfileId(): int
|
|
|
|
{
|
|
|
|
return $this->profile_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setOriginal(?bool $original): self
|
|
|
|
{
|
|
|
|
$this->original = $original;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getOriginal(): ?bool
|
|
|
|
{
|
|
|
|
return $this->original;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setWidth(int $width): self
|
|
|
|
{
|
|
|
|
$this->width = $width;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getWidth(): int
|
|
|
|
{
|
|
|
|
return $this->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setHeight(int $height): self
|
|
|
|
{
|
|
|
|
$this->height = $height;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getHeight(): int
|
|
|
|
{
|
|
|
|
return $this->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setMediatype(string $mediatype): self
|
|
|
|
{
|
|
|
|
$this->mediatype = $mediatype;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getMediatype(): string
|
|
|
|
{
|
|
|
|
return $this->mediatype;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFilename(?string $filename): self
|
|
|
|
{
|
|
|
|
$this->filename = $filename;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
public function getFilename(): ?string
|
|
|
|
{
|
|
|
|
return $this->filename;
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function setCreated(DateTimeInterface $created): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
$this->created = $created;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function getCreated(): DateTimeInterface
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
return $this->created;
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function setModified(DateTimeInterface $modified): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
$this->modified = $modified;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-11 18:39:12 +01:00
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function getModified(): DateTimeInterface
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
return $this->modified;
|
|
|
|
}
|
|
|
|
|
2020-03-30 15:00:13 +01:00
|
|
|
// }}} Autocode
|
2009-02-06 08:13:08 +00:00
|
|
|
|
2020-03-29 19:33:16 +01:00
|
|
|
public static function schemaDef(): array
|
2019-09-11 09:25:39 +01:00
|
|
|
{
|
2020-03-29 19:33:16 +01:00
|
|
|
return [
|
|
|
|
'name' => 'avatar',
|
|
|
|
'fields' => [
|
2020-06-30 17:26:40 +01:00
|
|
|
'profile_id' => ['type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'],
|
|
|
|
'is_original' => ['type' => 'bool', 'default' => false, 'description' => 'uploaded by user or generated?'],
|
|
|
|
'width' => ['type' => 'int', 'not null' => true, 'description' => 'image width'],
|
|
|
|
'height' => ['type' => 'int', 'not null' => true, 'description' => 'image height'],
|
|
|
|
'mediatype' => ['type' => 'varchar', 'length' => 32, 'not null' => true, 'description' => 'file type'],
|
2020-07-05 14:12:35 +01:00
|
|
|
'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'],
|
|
|
|
'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
2020-03-29 19:33:16 +01:00
|
|
|
],
|
2020-06-30 17:26:40 +01:00
|
|
|
'primary key' => ['profile_id', 'width', 'height'],
|
2020-03-29 19:33:16 +01:00
|
|
|
'foreign keys' => [
|
|
|
|
'avatar_profile_id_fkey' => ['profile', ['profile_id' => 'id']],
|
|
|
|
],
|
|
|
|
'indexes' => [
|
|
|
|
'avatar_profile_id_idx' => ['profile_id'],
|
|
|
|
],
|
|
|
|
];
|
2013-09-30 21:13:37 +01:00
|
|
|
}
|
2008-05-15 17:28:44 +01:00
|
|
|
}
|