2020-09-04 15:17:10 +01:00
< ? php
// {{{ License
// This file is part of GNU social - https://www.gnu.org/software/social
//
// GNU social is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// 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.
//
// You should have received a copy of the GNU Affero General Public License
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
// }}}
2021-03-12 13:46:00 +00:00
namespace Plugin\Favourite\Entity ;
2020-09-04 15:17:10 +01:00
use App\Core\Entity ;
use DateTimeInterface ;
class Favourite extends Entity
{
// {{{ Autocode
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreStart
2020-09-04 15:17:10 +01:00
private int $note_id ;
private int $gsactor_id ;
2021-04-27 22:24:48 +01:00
private \DateTimeInterface $created ;
private \DateTimeInterface $modified ;
2020-09-04 15:17:10 +01:00
public function setNoteId ( int $note_id ) : self
{
$this -> note_id = $note_id ;
return $this ;
}
public function getNoteId () : int
{
return $this -> note_id ;
}
2021-02-20 21:01:08 +00:00
public function setGSActorId ( int $gsactor_id ) : self
2020-09-04 15:17:10 +01:00
{
$this -> gsactor_id = $gsactor_id ;
return $this ;
}
2021-02-20 21:01:08 +00:00
public function getGSActorId () : int
2020-09-04 15:17:10 +01:00
{
return $this -> gsactor_id ;
}
2021-05-05 17:03:03 +01:00
public function setCreated ( DateTimeInterface $created ) : self
2020-09-04 15:17:10 +01:00
{
$this -> created = $created ;
return $this ;
}
2021-05-05 17:03:03 +01:00
public function getCreated () : DateTimeInterface
2020-09-04 15:17:10 +01:00
{
return $this -> created ;
}
2021-05-05 17:03:03 +01:00
public function setModified ( DateTimeInterface $modified ) : self
2020-09-04 15:17:10 +01:00
{
$this -> modified = $modified ;
return $this ;
}
2021-05-05 17:03:03 +01:00
public function getModified () : DateTimeInterface
2020-09-04 15:17:10 +01:00
{
return $this -> modified ;
}
2021-02-20 21:01:08 +00:00
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreEnd
2020-09-04 15:17:10 +01:00
// }}} Autocode
public static function schemaDef ()
{
return [
'name' => 'favourite' ,
'fields' => [
2021-03-12 13:46:00 +00:00
'note_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'App\Entity\Note.id' , 'multiplicity' => 'one to one' , 'not null' => true , 'description' => 'note that is the favorite of' ],
'gsactor_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'App\Entity\GSActor.id' , 'multiplicity' => 'one to one' , 'not null' => true , 'description' => 'actor who favourited this note' ], // note: formerly referenced notice.id, but we can now record remote users' favorites
2020-09-04 15:17:10 +01:00
'created' => [ 'type' => 'datetime' , 'not null' => true , 'description' => 'date this record was created' ],
'modified' => [ 'type' => 'timestamp' , 'not null' => true , 'description' => 'date this record was modified' ],
],
2021-02-22 21:34:59 +00:00
'primary key' => [ 'note_id' , 'gsactor_id' ],
'indexes' => [
2020-09-04 15:17:10 +01:00
'fave_note_id_idx' => [ 'note_id' ],
'fave_actor_id_idx' => [ 'gsactor_id' , 'modified' ],
'fave_modified_idx' => [ 'modified' ],
],
];
}
2021-02-22 21:34:59 +00:00
}