2020-09-04 19:47:13 +01:00
< ? php
2021-12-26 09:48:16 +00:00
declare ( strict_types = 1 );
2021-10-10 09:26:18 +01:00
2020-09-04 19:47:13 +01: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/>.
// }}}
2021-12-04 04:07:08 +00:00
/**
* ActivityPub implementation for GNU social
*
* @ package GNUsocial
* @ category ActivityPub
2021-12-26 09:48:16 +00:00
*
2021-12-04 04:07:08 +00:00
* @ author Diogo Peralta Cordeiro <@ diogo . site >
* @ copyright 2021 Free Software Foundation , Inc http :// www . fsf . org
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
2021-10-04 17:00:58 +01:00
namespace Plugin\ActivityPub\Entity ;
2020-09-04 19:47:13 +01:00
use App\Core\DB\DB ;
use App\Core\Entity ;
2021-11-27 15:06:46 +00:00
use App\Entity\Activity ;
2020-09-04 19:47:13 +01:00
use DateTimeInterface ;
/**
2021-12-04 04:07:08 +00:00
* Table Definition for activitypub_activity
2020-09-04 19:47:13 +01:00
*
2021-12-04 04:07:08 +00:00
* @ copyright 2021 Free Software Foundation , Inc http :// www . fsf . org
2020-09-04 19:47:13 +01:00
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
2021-10-04 17:00:58 +01:00
class ActivitypubActivity extends Entity
2020-09-04 19:47:13 +01:00
{
// {{{ Autocode
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreStart
2021-11-27 15:06:46 +00:00
private int $activity_id ;
2021-10-04 17:00:58 +01:00
private string $activity_uri ;
2021-10-10 09:26:18 +01:00
private DateTimeInterface $created ;
private DateTimeInterface $modified ;
2020-09-04 19:47:13 +01:00
2021-11-27 15:06:46 +00:00
public function setActivityId ( int $activity_id ) : self
2020-09-04 19:47:13 +01:00
{
2021-11-27 15:06:46 +00:00
$this -> activity_id = $activity_id ;
2020-09-04 19:47:13 +01:00
return $this ;
}
2021-11-27 15:06:46 +00:00
public function getActivityId () : int
2020-09-04 19:47:13 +01:00
{
2021-11-27 15:06:46 +00:00
return $this -> activity_id ;
2020-09-04 19:47:13 +01:00
}
2021-11-27 15:06:46 +00:00
public function setActivityUri ( string $activity_uri ) : self
2020-09-04 19:47:13 +01:00
{
2021-11-27 15:06:46 +00:00
$this -> activity_uri = $activity_uri ;
2020-09-04 19:47:13 +01:00
return $this ;
}
2021-12-26 15:12:06 +00:00
public function getActivityUri () : string
{
return $this -> activity_uri ;
}
2021-05-05 17:03:03 +01:00
public function setCreated ( DateTimeInterface $created ) : self
2020-09-04 19:47:13 +01:00
{
$this -> created = $created ;
return $this ;
}
2021-05-05 17:03:03 +01:00
public function getCreated () : DateTimeInterface
2020-09-04 19:47:13 +01:00
{
return $this -> created ;
}
2021-10-04 17:00:58 +01:00
public function setModified ( DateTimeInterface $modified ) : self
{
$this -> modified = $modified ;
return $this ;
}
public function getModified () : DateTimeInterface
{
return $this -> modified ;
}
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreEnd
2020-09-04 19:47:13 +01:00
// }}} Autocode
2021-11-27 15:06:46 +00:00
public function getActivity () : Activity
{
return DB :: findOneBy ( 'activity' , [ 'id' => $this -> getActivityId ()]);
}
2022-02-13 22:55:54 +00:00
public array $_object_mention_ids = [];
public function setObjectMentionIds ( array $mentions ) : self
{
$this -> _object_mention_ids = $mentions ;
return $this ;
}
/**
* @ see Entity -> getNotificationTargetIds
*/
public function getNotificationTargetIds ( array $ids_already_known = [], ? int $sender_id = null , bool $include_additional = true ) : array
{
// Additional actors that should know about this
if ( \array_key_exists ( 'additional' , $ids_already_known )) {
return $ids_already_known [ 'additional' ];
} else {
return $this -> _object_mention_ids ;
}
}
2020-09-04 19:47:13 +01:00
public static function schemaDef () : array
{
return [
2021-12-26 09:48:16 +00:00
'name' => 'activitypub_activity' ,
2020-09-04 19:47:13 +01:00
'fields' => [
2021-12-26 09:48:16 +00:00
'activity_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'Activity.id' , 'multiplicity' => 'one to one' , 'not null' => true , 'description' => 'activity_id to give attention' ],
2021-12-04 04:07:08 +00:00
'activity_uri' => [ 'type' => 'text' , 'not null' => true , 'description' => 'Activity\'s URI' ],
2021-12-26 09:48:16 +00:00
'created' => [ 'type' => 'datetime' , 'not null' => true , 'default' => 'CURRENT_TIMESTAMP' , 'description' => 'date this record was created' ],
'modified' => [ 'type' => 'timestamp' , 'not null' => true , 'default' => 'CURRENT_TIMESTAMP' , 'description' => 'date this record was modified' ],
2020-09-04 19:47:13 +01:00
],
2021-10-27 04:14:01 +01:00
'primary key' => [ 'activity_uri' ],
2021-12-26 09:48:16 +00:00
'indexes' => [
2021-10-04 17:00:58 +01:00
'activity_activity_uri_idx' => [ 'activity_uri' ],
],
2020-09-04 19:47:13 +01:00
];
}
}