2021-11-07 01:32:06 +00:00
< ? php
2021-11-25 23:08:30 +00:00
declare ( strict_types = 1 );
2021-11-07 01:32:06 +00:00
// {{{ 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/>.
// }}}
namespace Plugin\Reply\Entity ;
use App\Core\DB\DB ;
use App\Core\Entity ;
use App\Entity\Note ;
/**
* Entity for notices
*
* @ category DB
* @ package GNUsocial
*
* @ author Eliseu Amaro < mail @ eliseuama . ro >
* @ copyright 2020 - 2021 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
class NoteReply extends Entity
{
2021-11-10 15:44:28 +00:00
private int $note_id ;
2021-11-07 01:32:06 +00:00
private int $actor_id ;
private int $reply_to ;
2021-11-10 15:44:28 +00:00
public function setNoteId ( int $note_id ) : self
2021-11-07 01:32:06 +00:00
{
2021-11-10 15:44:28 +00:00
$this -> note_id = $note_id ;
2021-11-07 01:32:06 +00:00
return $this ;
}
2021-11-10 15:44:28 +00:00
public function getNoteId () : int
2021-11-07 01:32:06 +00:00
{
2021-11-10 15:44:28 +00:00
return $this -> note_id ;
2021-11-07 01:32:06 +00:00
}
public function setActorId ( int $actor_id ) : self
{
$this -> actor_id = $actor_id ;
return $this ;
}
public function getActorId () : ? int
{
return $this -> actor_id ;
}
public function setReplyTo ( int $reply_to ) : self
{
$this -> reply_to = $reply_to ;
return $this ;
}
2021-11-10 15:44:28 +00:00
public function getReplyTo () : int
2021-11-07 01:32:06 +00:00
{
return $this -> reply_to ;
}
public static function getNoteReplies ( Note $note ) : array
{
2021-11-10 15:44:28 +00:00
return DB :: sql (
<<< 'EOF'
select { select } from note n
inner join note_reply nr
on nr . note_id = n . id
where reply_to = : note_id
order by n . created DESC
EOF ,
2021-11-25 23:08:30 +00:00
[ 'note_id' => $note -> getId ()],
2021-11-07 01:32:06 +00:00
);
}
public static function getReplyToNote ( Note $note ) : ? int
{
$result = DB :: dql ( 'select nr.reply_to from note_reply nr '
2021-11-25 23:08:30 +00:00
. 'where nr.note_id = :note_id' , [ 'note_id' => $note -> getId ()], );
2021-11-07 01:32:06 +00:00
2021-11-25 23:08:30 +00:00
if ( ! empty ( $result )) {
2021-11-07 01:32:06 +00:00
return $result [ 'reply_to' ];
}
return null ;
}
public static function schemaDef () : array
{
return [
2021-11-25 23:08:30 +00:00
'name' => 'note_reply' ,
2021-11-07 01:32:06 +00:00
'fields' => [
2021-11-25 23:08:30 +00:00
'note_id' => [ 'type' => 'int' , 'not null' => true , 'foreign key' => true , 'target' => 'Note.id' , 'multiplicity' => 'one to one' , 'description' => 'The id of the reply itself' ],
2021-11-07 01:32:06 +00:00
'actor_id' => [ 'type' => 'int' , 'not null' => true , 'foreign key' => true , 'target' => 'Actor.id' , 'multiplicity' => 'one to one' , 'description' => 'Who made this reply' ],
'reply_to' => [ 'type' => 'int' , 'not null' => true , 'foreign key' => true , 'target' => 'Note.id' , 'multiplicity' => 'one to one' , 'description' => 'Note this is a reply of' ],
],
2021-11-10 15:44:28 +00:00
'primary key' => [ 'note_id' ],
2021-11-07 01:32:06 +00:00
'foreign keys' => [
2021-11-25 23:08:30 +00:00
'note_id_to_id_fkey' => [ 'note' , [ 'note_id' => 'id' ]],
'note_reply_to_id_fkey' => [ 'note' , [ 'reply_to' => 'id' ]],
2021-11-07 01:32:06 +00:00
'actor_reply_to_id_fkey' => [ 'actor' , [ 'actor_id' => 'id' ]],
],
2021-11-25 23:08:30 +00:00
'indexes' => [
2021-11-10 15:44:28 +00:00
'note_reply_to_idx' => [ 'reply_to' ],
2021-11-07 01:32:06 +00:00
],
];
}
}