2009-05-12 02:45:00 +09:00
|
|
|
<?php
|
2020-03-30 03:33:16 +09:00
|
|
|
|
2020-03-30 04:56:35 +09:00
|
|
|
// {{{ License
|
2020-05-21 01:53:53 +09:00
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
2020-03-30 04:56:35 +09:00
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
2020-05-11 05:43:15 +09:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2020-03-30 04:56:35 +09: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-11 05:43:15 +09:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
2020-03-30 04:56:35 +09:00
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
2020-03-30 03:33:16 +09:00
|
|
|
|
|
|
|
namespace App\Entity;
|
2019-09-11 14:15:16 +09:00
|
|
|
|
2020-08-09 01:10:25 +09:00
|
|
|
use App\Core\DB\DB;
|
2020-08-07 11:03:55 +09:00
|
|
|
use App\Core\Entity;
|
2020-05-11 05:43:15 +09:00
|
|
|
use DateTimeInterface;
|
|
|
|
|
2019-06-07 22:08:27 +09:00
|
|
|
/**
|
2020-03-30 03:33:16 +09:00
|
|
|
* Entity for uploaded files
|
|
|
|
*
|
|
|
|
* @category DB
|
2019-06-07 22:08:27 +09:00
|
|
|
* @package GNUsocial
|
2020-03-30 03:33:16 +09:00
|
|
|
*
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet Inc.
|
2019-06-07 22:08:27 +09:00
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
2020-03-30 03:33:16 +09:00
|
|
|
* @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
|
2019-09-11 14:15:16 +09:00
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
2009-05-12 02:45:00 +09:00
|
|
|
*/
|
2020-08-07 11:03:55 +09:00
|
|
|
class File extends Entity
|
2009-05-12 02:45:00 +09:00
|
|
|
{
|
2020-03-30 23:00:13 +09:00
|
|
|
// {{{ Autocode
|
2009-05-12 02:45:00 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
private int $id;
|
|
|
|
private ?string $url;
|
2020-07-01 03:20:50 +09:00
|
|
|
private ?bool $is_url_protected;
|
2020-08-07 11:03:55 +09:00
|
|
|
private ?string $url_hash;
|
2020-07-01 03:20:50 +09:00
|
|
|
private ?string $file_hash;
|
2020-03-31 00:13:51 +09:00
|
|
|
private ?string $mimetype;
|
|
|
|
private ?int $size;
|
|
|
|
private ?string $title;
|
2020-07-01 03:20:50 +09:00
|
|
|
private ?int $timestamp;
|
|
|
|
private ?bool $is_local;
|
|
|
|
private \DateTimeInterface $modified;
|
2020-03-31 00:13:51 +09:00
|
|
|
|
|
|
|
public function setId(int $id): self
|
|
|
|
{
|
|
|
|
$this->id = $id;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getId(): int
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function setUrl(?string $url): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
$this->url = $url;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function getUrl(): ?string
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
return $this->url;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function setIsUrlProtected(?bool $is_url_protected): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
$this->is_url_protected = $is_url_protected;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function getIsUrlProtected(): ?bool
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
return $this->is_url_protected;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
public function setUrlHash(?string $url_hash): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
$this->url_hash = $url_hash;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
public function getUrlHash(): ?string
|
2020-07-01 03:20:50 +09:00
|
|
|
{
|
|
|
|
return $this->url_hash;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function setFileHash(?string $file_hash): self
|
|
|
|
{
|
|
|
|
$this->file_hash = $file_hash;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function getFileHash(): ?string
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
return $this->file_hash;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setMimetype(?string $mimetype): self
|
|
|
|
{
|
|
|
|
$this->mimetype = $mimetype;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getMimetype(): ?string
|
|
|
|
{
|
|
|
|
return $this->mimetype;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setSize(?int $size): self
|
|
|
|
{
|
|
|
|
$this->size = $size;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getSize(): ?int
|
|
|
|
{
|
|
|
|
return $this->size;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setTitle(?string $title): self
|
|
|
|
{
|
|
|
|
$this->title = $title;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getTitle(): ?string
|
|
|
|
{
|
|
|
|
return $this->title;
|
|
|
|
}
|
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function setTimestamp(?int $timestamp): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
$this->timestamp = $timestamp;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function getTimestamp(): ?int
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
return $this->timestamp;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function setIsLocal(?bool $is_local): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
$this->is_local = $is_local;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-07-01 03:20:50 +09:00
|
|
|
public function getIsLocal(): ?bool
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-07-01 03:20:50 +09:00
|
|
|
return $this->is_local;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
public function setModified(DateTimeInterface $modified): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-08-07 11:03:55 +09:00
|
|
|
$this->modified = $modified;
|
2020-03-31 00:13:51 +09:00
|
|
|
return $this;
|
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
public function getModified(): DateTimeInterface
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-08-07 11:03:55 +09:00
|
|
|
return $this->modified;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
// }}} Autocode
|
|
|
|
|
|
|
|
const URLHASH_ALGO = 'sha256';
|
|
|
|
const FILEHASH_ALGO = 'sha256';
|
|
|
|
|
|
|
|
public function getFileName(): string
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-08-07 11:03:55 +09:00
|
|
|
return $this->file_hash;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-08-07 11:03:55 +09:00
|
|
|
/**
|
|
|
|
* 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
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-08-07 11:03:55 +09:00
|
|
|
$files = [];
|
|
|
|
if ($cascade) {
|
|
|
|
// An avatar can own a file, and it becomes invalid if the file is deleted
|
2020-08-09 01:10:25 +09:00
|
|
|
$avatar = DB::findBy('avatar', ['file_id' => $this->id]);
|
|
|
|
foreach ($avatar as $a) {
|
|
|
|
$files[] = $a->getFilePath();
|
|
|
|
$a->delete($flush, $delete_files_now, $cascading = true);
|
|
|
|
}
|
2020-08-07 11:03:55 +09:00
|
|
|
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;
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
2020-08-07 11:03:55 +09:00
|
|
|
|
|
|
|
public static function deleteFiles(array $files)
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
2020-08-07 11:03:55 +09:00
|
|
|
foreach ($files as $f) {
|
|
|
|
@unlink($f);
|
|
|
|
}
|
2020-03-31 00:13:51 +09:00
|
|
|
}
|
|
|
|
|
2020-03-30 03:33:16 +09:00
|
|
|
public static function schemaDef(): array
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'name' => 'file',
|
|
|
|
'fields' => [
|
2020-07-01 01:26:40 +09:00
|
|
|
'id' => ['type' => 'serial', 'not null' => true],
|
|
|
|
'url' => ['type' => 'text', 'description' => 'URL after following possible redirections'],
|
2020-08-07 11:03:55 +09:00
|
|
|
'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)'],
|
2020-07-01 01:26:40 +09:00
|
|
|
'file_hash' => ['type' => 'varchar', 'length' => 64, 'description' => 'sha256 of the file contents, if the file is stored locally'],
|
|
|
|
'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'],
|
|
|
|
'timestamp' => ['type' => 'int', 'description' => 'unix timestamp according to http query'],
|
|
|
|
'is_local' => ['type' => 'bool', 'description' => 'whether the file is stored locally'],
|
2020-07-05 22:12:35 +09:00
|
|
|
'modified' => ['type' => 'timestamp', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
2020-03-30 03:33:16 +09:00
|
|
|
],
|
|
|
|
'primary key' => ['id'],
|
|
|
|
'unique keys' => [
|
2020-08-07 11:03:55 +09:00
|
|
|
'file_file_key' => ['file_hash'],
|
2020-03-30 03:33:16 +09:00
|
|
|
],
|
|
|
|
'indexes' => [
|
2020-07-01 01:26:40 +09:00
|
|
|
'file_filehash_idx' => ['file_hash'],
|
2020-03-30 03:33:16 +09:00
|
|
|
],
|
2020-08-14 05:56:31 +09:00
|
|
|
];
|
2015-02-20 02:59:28 +09:00
|
|
|
}
|
2016-02-03 08:22:18 +09:00
|
|
|
}
|