2009-05-11 18:45:00 +01:00
< ? php
2020-03-29 19:33:16 +01:00
2020-03-29 20:56:35 +01:00
// {{{ License
2021-02-22 21:34:59 +00:00
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/>.
2021-02-22 21:34:59 +00:00
2020-03-29 20:56:35 +01:00
// }}}
2020-03-29 19:33:16 +01:00
namespace App\Entity ;
2019-09-11 06:15:16 +01:00
2020-08-08 17:10:25 +01:00
use App\Core\DB\DB ;
2020-08-07 03:03:55 +01:00
use App\Core\Entity ;
2021-04-16 16:57:25 +01:00
use App\Util\Common ;
2020-05-10 21:43:15 +01:00
use DateTimeInterface ;
2019-06-07 14:08:27 +01:00
/**
2020-03-29 19:33:16 +01:00
* Entity for uploaded files
*
* @ category DB
2019-06-07 14:08:27 +01:00
* @ package GNUsocial
2020-03-29 19:33:16 +01:00
*
* @ author Zach Copley < zach @ status . net >
* @ copyright 2010 StatusNet Inc .
2019-06-07 14:08:27 +01:00
* @ author Mikael Nordfeldth < mmn @ hethane . se >
2020-03-29 19:33:16 +01:00
* @ copyright 2009 - 2014 Free Software Foundation , Inc http :// www . fsf . org
2021-02-19 23:29:43 +00:00
* @ author Hugo Sales < hugo @ hsal . es >
* @ copyright 2020 - 2021 Free Software Foundation , Inc http :// www . fsf . org
2019-09-11 06:15:16 +01:00
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
2009-05-11 18:45:00 +01:00
*/
2021-04-16 20:27:33 +01:00
class Attachment extends Entity
2009-05-11 18:45:00 +01:00
{
2020-03-30 15:00:13 +01:00
// {{{ Autocode
2020-03-30 16:13:51 +01:00
private int $id ;
2021-04-15 17:58:13 +01:00
private ? string $remote_url ;
private ? string $remote_url_hash ;
2020-06-30 19:20:50 +01:00
private ? string $file_hash ;
2021-03-10 17:20:42 +00:00
private ? int $gsactor_id ;
2020-03-30 16:13:51 +01:00
private ? string $mimetype ;
private ? string $title ;
2021-03-10 17:20:42 +00:00
private ? string $filename ;
2020-06-30 19:20:50 +01:00
private ? bool $is_local ;
2021-04-15 17:58:13 +01:00
private ? int $source ;
2021-04-15 23:28:28 +01:00
private ? int $scope ;
2021-04-27 22:24:48 +01:00
private \DateTimeInterface $modified ;
2020-03-30 16:13:51 +01:00
public function setId ( int $id ) : self
{
$this -> id = $id ;
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-03-30 16:13:51 +01:00
public function getId () : int
{
return $this -> id ;
}
2021-04-15 17:58:13 +01:00
public function setRemoteUrl ( ? string $remote_url ) : self
2020-03-30 16:13:51 +01:00
{
2021-04-15 17:58:13 +01:00
$this -> remote_url = $remote_url ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:10:25 +01:00
2021-04-15 17:58:13 +01:00
public function getRemoteUrl () : ? string
2020-03-30 16:13:51 +01:00
{
2021-04-15 17:58:13 +01:00
return $this -> remote_url ;
2020-03-30 16:13:51 +01:00
}
2021-04-15 17:58:13 +01:00
public function setRemoteUrlHash ( ? string $remote_url_hash ) : self
2020-03-30 16:13:51 +01:00
{
2021-04-15 17:58:13 +01:00
$this -> remote_url_hash = $remote_url_hash ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:10:25 +01:00
2021-04-15 17:58:13 +01:00
public function getRemoteUrlHash () : ? string
2020-06-30 19:20:50 +01:00
{
2021-04-15 17:58:13 +01:00
return $this -> remote_url_hash ;
2020-06-30 19:20:50 +01:00
}
2020-05-11 18:39:12 +01:00
2020-06-30 19:20:50 +01:00
public function setFileHash ( ? string $file_hash ) : self
{
$this -> file_hash = $file_hash ;
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-06-30 19:20:50 +01:00
public function getFileHash () : ? string
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
return $this -> file_hash ;
2020-03-30 16:13:51 +01:00
}
2021-03-10 17:20:42 +00:00
public function setGSActorId ( ? int $gsactor_id ) : self
2020-08-15 08:06:33 +01:00
{
2021-03-10 17:20:42 +00:00
$this -> gsactor_id = $gsactor_id ;
2020-08-15 08:06:33 +01:00
return $this ;
}
2021-03-10 17:20:42 +00:00
public function getGSActorId () : ? int
2020-08-15 08:06:33 +01:00
{
2021-03-10 17:20:42 +00:00
return $this -> gsactor_id ;
2020-08-15 08:06:33 +01:00
}
2020-03-30 16:13:51 +01:00
public function setMimetype ( ? string $mimetype ) : self
{
$this -> mimetype = $mimetype ;
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-03-30 16:13:51 +01:00
public function getMimetype () : ? string
{
return $this -> mimetype ;
}
public function setTitle ( ? string $title ) : self
{
$this -> title = $title ;
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-03-30 16:13:51 +01:00
public function getTitle () : ? string
{
return $this -> title ;
}
2021-03-10 17:20:42 +00:00
public function setFilename ( ? string $filename ) : self
{
$this -> filename = $filename ;
return $this ;
}
public function getFilename () : ? string
{
return $this -> filename ;
}
2020-06-30 19:20:50 +01:00
public function setIsLocal ( ? bool $is_local ) : self
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
$this -> is_local = $is_local ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-06-30 19:20:50 +01:00
public function getIsLocal () : ? bool
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
return $this -> is_local ;
2020-03-30 16:13:51 +01:00
}
2021-04-15 17:58:13 +01:00
public function setSource ( ? int $source ) : self
2020-08-20 01:43:33 +01:00
{
2021-04-15 17:58:13 +01:00
$this -> source = $source ;
2020-08-20 01:43:33 +01:00
return $this ;
}
2021-04-15 17:58:13 +01:00
public function getSource () : ? int
2020-08-20 01:43:33 +01:00
{
2021-04-15 17:58:13 +01:00
return $this -> source ;
2020-08-20 01:43:33 +01:00
}
2021-04-15 23:28:28 +01:00
public function setScope ( ? int $scope ) : self
{
$this -> scope = $scope ;
return $this ;
}
public function getScope () : ? int
{
return $this -> scope ;
}
2020-08-07 03:03:55 +01:00
public function setModified ( DateTimeInterface $modified ) : self
2020-03-30 16:13:51 +01:00
{
2020-08-07 03:03:55 +01:00
$this -> modified = $modified ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:10:25 +01:00
2020-08-07 03:03:55 +01:00
public function getModified () : DateTimeInterface
2020-03-30 16:13:51 +01:00
{
2020-08-07 03:03:55 +01:00
return $this -> modified ;
2020-03-30 16:13:51 +01:00
}
2020-08-07 03:03:55 +01:00
// }}} Autocode
const URLHASH_ALGO = 'sha256' ;
const FILEHASH_ALGO = 'sha256' ;
/**
* 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-30 16:13:51 +01:00
{
2020-08-07 03:03:55 +01:00
$files = [];
if ( $cascade ) {
// An avatar can own a file, and it becomes invalid if the file is deleted
2021-04-18 02:17:57 +01:00
$avatar = DB :: findBy ( 'avatar' , [ 'attachment_id' => $this -> id ]);
2020-08-08 17:10:25 +01:00
foreach ( $avatar as $a ) {
$files [] = $a -> getFilePath ();
$a -> delete ( $flush , $delete_files_now , $cascading = true );
}
2021-04-18 02:17:57 +01:00
foreach ( DB :: findBy ( 'attachment_thumbnail' , [ 'attachment_id' => $this -> id ]) as $ft ) {
2020-08-07 03:03:55 +01:00
$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-30 16:13:51 +01:00
}
2020-08-07 03:03:55 +01:00
public static function deleteFiles ( array $files )
2020-03-30 16:13:51 +01:00
{
2020-08-07 03:03:55 +01:00
foreach ( $files as $f ) {
@ unlink ( $f );
}
2020-03-30 16:13:51 +01:00
}
2021-04-16 16:57:25 +01:00
public function getPath ()
{
return Common :: config ( 'attachments' , 'dir' ) . $this -> getFilename ();
}
2021-04-25 22:26:53 +01:00
public function getAttachmentUrl ()
{
return Router :: url ( 'attachment_thumbnail' , [ 'id' => $this -> getAttachmentId (), 'w' => Common :: config ( 'attachment' , 'width' ), 'h' => Common :: config ( 'attachment' , 'height' )]);
}
2020-03-29 19:33:16 +01:00
public static function schemaDef () : array
{
return [
2021-04-15 23:28:28 +01:00
'name' => 'attachment' ,
2020-03-29 19:33:16 +01:00
'fields' => [
2021-04-15 00:30:35 +01:00
'id' => [ 'type' => 'serial' , 'not null' => true ],
'remote_url' => [ 'type' => 'text' , 'description' => 'URL after following possible redirections' ],
'remote_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' ],
'gsactor_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'GSActor.id' , 'multiplicity' => 'one to one' , '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' ],
'title' => [ 'type' => 'text' , 'description' => 'title of resource when available' ],
2021-04-28 16:03:17 +01:00
'filename' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'file name of resource when available' ],
2021-04-15 00:30:35 +01:00
'is_local' => [ 'type' => 'bool' , 'description' => 'whether the file is stored locally' ],
'source' => [ 'type' => 'int' , 'default' => null , 'description' => 'Source of the Attachment (upload, TFN, embed)' ],
2021-04-15 23:28:28 +01:00
'scope' => [ 'type' => 'int' , 'default' => null , 'description' => 'visibility scope for this attachment' ],
2021-04-15 00:30:35 +01:00
'modified' => [ 'type' => 'timestamp' , 'not null' => true , 'default' => 'CURRENT_TIMESTAMP' , 'description' => 'date this record was modified' ],
2020-03-29 19:33:16 +01:00
],
'primary key' => [ 'id' ],
'unique keys' => [
2020-08-19 16:32:45 +01:00
// 'file_file_key' => ['file_hash', 'actor_id'],
2020-03-29 19:33:16 +01:00
],
'indexes' => [
2020-06-30 17:26:40 +01:00
'file_filehash_idx' => [ 'file_hash' ],
2020-03-29 19:33:16 +01:00
],
2020-08-13 21:56:31 +01:00
];
2015-02-19 17:59:28 +00:00
}
2016-02-02 23:22:18 +00:00
}