. // }}} namespace App\Entity; use App\Core\DB\DB; use App\Core\Entity; use DateTimeInterface; /** * Entity for uploaded files * * @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 File extends Entity { // {{{ Autocode private int $id; private ?string $url; private ?bool $is_url_protected; private ?string $url_hash; private ?string $file_hash; private ?int $actor_id; private ?string $mimetype; private ?int $size; private ?string $title; private ?bool $is_local; private DateTimeInterface $modified; public function setId(int $id): self { $this->id = $id; return $this; } public function getId(): int { return $this->id; } public function setUrl(?string $url): self { $this->url = $url; return $this; } public function getUrl(): ?string { return $this->url; } public function setIsUrlProtected(?bool $is_url_protected): self { $this->is_url_protected = $is_url_protected; return $this; } public function getIsUrlProtected(): ?bool { return $this->is_url_protected; } public function setUrlHash(?string $url_hash): self { $this->url_hash = $url_hash; return $this; } public function getUrlHash(): ?string { return $this->url_hash; } public function setFileHash(?string $file_hash): self { $this->file_hash = $file_hash; return $this; } public function getFileHash(): ?string { return $this->file_hash; } public function setActorId(?int $actor_id): self { $this->actor_id = $actor_id; return $this; } public function getActorId(): ?int { return $this->actor_id; } public function setMimetype(?string $mimetype): self { $this->mimetype = $mimetype; return $this; } public function getMimetype(): ?string { return $this->mimetype; } public function setSize(?int $size): self { $this->size = $size; return $this; } public function getSize(): ?int { return $this->size; } public function setTitle(?string $title): self { $this->title = $title; return $this; } public function getTitle(): ?string { return $this->title; } public function setIsLocal(?bool $is_local): self { $this->is_local = $is_local; return $this; } public function getIsLocal(): ?bool { return $this->is_local; } public function setModified(DateTimeInterface $modified): self { $this->modified = $modified; return $this; } public function getModified(): DateTimeInterface { return $this->modified; } // }}} Autocode const URLHASH_ALGO = 'sha256'; const FILEHASH_ALGO = 'sha256'; public function getFileName(): string { return $this->file_hash; } /** * Delete this file and by default all the associated entities (avatar and/or thumbnails, which this owns) */ public function delete(bool $cascade = true, bool $flush = false, bool $delete_files_now = false): array { $files = []; if ($cascade) { // An avatar can own a file, and it becomes invalid if the file is deleted $avatar = DB::findBy('avatar', ['file_id' => $this->id]); foreach ($avatar as $a) { $files[] = $a->getFilePath(); $a->delete($flush, $delete_files_now, $cascading = true); } foreach (DB::findBy('file_thumbnail', ['file_id' => $this->id]) as $ft) { $files[] = $ft->delete($flush, $delete_files_now, $cascading); } } DB::remove($this); if ($flush) { DB::flush(); } if ($delete_files_now) { self::deleteFiles($files); return []; } return $files; } public static function deleteFiles(array $files) { foreach ($files as $f) { @unlink($f); } } public static function schemaDef(): array { return [ 'name' => 'file', 'fields' => [ 'id' => ['type' => 'serial', 'not null' => true], 'url' => ['type' => 'text', 'description' => 'URL after following possible redirections'], 'is_url_protected' => ['type' => 'bool', 'default' => false, 'description' => 'true when URL is private (needs login)'], 'url_hash' => ['type' => 'varchar', 'length' => 64, 'description' => 'sha256 of destination URL (url field)'], 'file_hash' => ['type' => 'varchar', 'length' => 64, 'description' => 'sha256 of the file contents, if the file is stored locally'], 'actor_id' => ['type' => 'int', 'description' => 'If set, used so each actor can have a version of this file (for avatars, for instance)'], 'mimetype' => ['type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'], 'size' => ['type' => 'int', 'description' => 'size of resource when available'], 'title' => ['type' => 'text', 'description' => 'title of resource when available'], 'is_local' => ['type' => 'bool', 'description' => 'whether the file is stored locally'], 'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'], ], 'primary key' => ['id'], 'unique keys' => [ // 'file_file_key' => ['file_hash', 'actor_id'], ], 'indexes' => [ 'file_filehash_idx' => ['file_hash'], ], ]; } }