. // }}} namespace App\Entity; use App\Core\DB\DB; use App\Core\Entity; use DateTimeInterface; /** * Entity for user's avatar * * @category DB * @package GNUsocial * * @author Zach Copley * @copyright 2010 StatusNet Inc. * @author Mikael Nordfeldth * @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org * @author Hugo Sales * @copyright 2020 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ class Avatar extends Entity { // {{{ Autocode private int $profile_id; private int $width; private int $height; private ?bool $is_original; private int $file_id; private \DateTimeInterface $created; private \DateTimeInterface $modified; public function setProfileId(int $profile_id): self { $this->profile_id = $profile_id; return $this; } public function getProfileId(): int { return $this->profile_id; } 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 setIsOriginal(?bool $is_original): self { $this->is_original = $is_original; return $this; } public function getIsOriginal(): ?bool { return $this->is_original; } public function setFileId(int $file_id): self { $this->file_id = $file_id; return $this; } public function getFileId(): int { return $this->file_id; } public function setCreated(DateTimeInterface $created): self { $this->created = $created; return $this; } public function getCreated(): DateTimeInterface { return $this->created; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } // }}} Autocode private ?File $file = null; public function getFile(): File { $this->file = $this->file ?: DB::find('file', ['id' => $this->file_id]); return $this->file; } public function getFilePath(): string { $file_name = $this->getFile()->getFileName(); if ($this->is_original) { return Common::config('avatar', 'dir') . '/' . $file_name; } } /** * Delete this avatar and the corresponding file and thumbnails, which this owns */ public function delete(bool $flush = false, bool $delete_files_now = false, bool $cascading = false): array { // Don't go into a loop if we're deleting from File if (!$cascading) { $files = $this->getFile()->delete($cascade = true, $file_flush = false, $delete_files_now); } else { DB::remove(DB::getReference('avatar', ['profile_id' => $this->profile_id, 'width' => $this->width, 'height' => $this->height])); $file_path = $this->getFilePath(); $files[] = $file_path; if ($flush) { DB::flush(); } return $delete_files_now ? [] : $files; } return []; } public static function schemaDef(): array { return [ 'name' => 'avatar', 'fields' => [ 'profile_id' => ['type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'], 'file_id' => ['type' => 'int', 'not null' => true, 'description' => 'foreign key to file table'], 'created' => ['type' => 'datetime', 'not null' => true, 'description' => 'date this record was created', 'default' => 'CURRENT_TIMESTAMP'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified', 'default' => 'CURRENT_TIMESTAMP'], ], 'primary key' => ['profile_id'], 'foreign keys' => [ 'avatar_profile_id_fkey' => ['profile', ['profile_id' => 'id']], 'avatar_file_id_fkey' => ['file', ['file_id' => 'id']], ], 'indexes' => [ 'avatar_file_id_idx' => ['file_id'], ], ]; } }