2020-03-29 19:33:16 +01:00
< ? php
2021-12-26 09:48:16 +00:00
declare ( strict_types = 1 );
2020-03-29 20:56:35 +01:00
// {{{ License
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/>.
// }}}
2020-03-29 19:33:16 +01:00
2021-11-27 04:12:44 +00:00
namespace Component\Notification\Entity ;
2020-03-29 19:33:16 +01:00
2020-08-15 07:18:23 +01:00
use App\Core\Entity ;
2020-05-10 21:43:15 +01:00
use DateTimeInterface ;
2020-03-29 19:33:16 +01:00
/**
2020-08-13 00:57:22 +01:00
* Entity for user notification preferences
2020-03-29 19:33:16 +01:00
*
* @ category DB
* @ package GNUsocial
*
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
2020-03-29 19:33:16 +01:00
* @ license https :// www . gnu . org / licenses / agpl . html GNU AGPL v3 or later
*/
2020-08-15 07:18:23 +01:00
class UserNotificationPrefs extends Entity
2020-03-29 19:33:16 +01:00
{
2020-03-30 15:00:13 +01:00
// {{{ Autocode
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreStart
2020-03-30 16:13:51 +01:00
private int $user_id ;
private string $transport ;
2021-12-26 21:32:09 +00:00
private ? int $target_actor_id = null ;
2021-11-08 13:44:35 +00:00
private bool $activity_by_subscribed = true ;
private bool $mention = true ;
private bool $reply = true ;
private bool $subscription = true ;
private bool $favorite = true ;
private bool $nudge = false ;
private bool $dm = true ;
private bool $post_on_status_change = false ;
2021-12-26 21:32:09 +00:00
private ? bool $enable_posting = true ;
2021-12-26 09:48:16 +00:00
private DateTimeInterface $created ;
private DateTimeInterface $modified ;
2020-03-30 16:13:51 +01:00
public function setUserId ( int $user_id ) : self
{
$this -> user_id = $user_id ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getUserId () : int
{
return $this -> user_id ;
}
public function setTransport ( string $transport ) : self
{
2021-12-26 15:12:06 +00:00
$this -> transport = mb_substr ( $transport , 0 , 191 );
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getTransport () : string
{
return $this -> transport ;
}
2021-09-18 03:22:27 +01:00
public function setTargetActorId ( ? int $target_actor_id ) : self
2020-06-30 19:20:50 +01:00
{
2021-09-18 03:22:27 +01:00
$this -> target_actor_id = $target_actor_id ;
2020-06-30 19:20:50 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-09-18 03:22:27 +01:00
public function getTargetActorId () : ? int
2020-06-30 19:20:50 +01:00
{
2021-09-18 03:22:27 +01:00
return $this -> target_actor_id ;
2020-06-30 19:20:50 +01:00
}
2021-11-08 13:44:35 +00:00
public function setActivityBySubscribed ( bool $activity_by_subscribed ) : self
2020-06-30 19:20:50 +01:00
{
2021-11-08 13:44:35 +00:00
$this -> activity_by_subscribed = $activity_by_subscribed ;
2020-06-30 19:20:50 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-11-08 13:44:35 +00:00
public function getActivityBySubscribed () : bool
2020-06-30 19:20:50 +01:00
{
2021-11-08 13:44:35 +00:00
return $this -> activity_by_subscribed ;
2020-06-30 19:20:50 +01:00
}
public function setMention ( bool $mention ) : self
{
$this -> mention = $mention ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getMention () : bool
{
return $this -> mention ;
}
2020-07-25 03:04:20 +01:00
public function setReply ( bool $reply ) : self
{
$this -> reply = $reply ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-07-25 03:04:20 +01:00
public function getReply () : bool
{
return $this -> reply ;
}
2021-11-08 13:44:35 +00:00
public function setSubscription ( bool $subscription ) : self
2020-03-30 16:13:51 +01:00
{
2021-11-08 13:44:35 +00:00
$this -> subscription = $subscription ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-11-08 13:44:35 +00:00
public function getSubscription () : bool
2020-06-30 19:20:50 +01:00
{
2021-11-08 13:44:35 +00:00
return $this -> subscription ;
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 setFavorite ( bool $favorite ) : self
{
$this -> favorite = $favorite ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getFavorite () : bool
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
return $this -> favorite ;
2020-03-30 16:13:51 +01:00
}
2020-06-30 19:20:50 +01:00
public function setNudge ( bool $nudge ) : self
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
$this -> nudge = $nudge ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getNudge () : bool
{
return $this -> nudge ;
}
2020-05-11 18:39:12 +01:00
2020-06-30 19:20:50 +01:00
public function setDm ( bool $dm ) : self
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
$this -> dm = $dm ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getDm () : bool
{
return $this -> dm ;
2020-03-30 16:13:51 +01:00
}
2020-06-30 19:20:50 +01:00
public function setPostOnStatusChange ( bool $post_on_status_change ) : self
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
$this -> post_on_status_change = $post_on_status_change ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getPostOnStatusChange () : bool
{
return $this -> post_on_status_change ;
}
2020-05-11 18:39:12 +01:00
2020-06-30 19:20:50 +01:00
public function setEnablePosting ( ? bool $enable_posting ) : self
2020-03-30 16:13:51 +01:00
{
2020-06-30 19:20:50 +01:00
$this -> enable_posting = $enable_posting ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getEnablePosting () : ? bool
{
return $this -> enable_posting ;
2020-03-30 16:13:51 +01:00
}
2021-05-05 17:03:03 +01:00
public function setCreated ( DateTimeInterface $created ) : self
2020-03-30 16:13:51 +01:00
{
$this -> created = $created ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-05-05 17:03:03 +01:00
public function getCreated () : DateTimeInterface
2020-03-30 16:13:51 +01:00
{
return $this -> created ;
}
2021-05-05 17:03:03 +01:00
public function setModified ( DateTimeInterface $modified ) : self
2020-03-30 16:13:51 +01:00
{
$this -> modified = $modified ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-05-05 17:03:03 +01:00
public function getModified () : DateTimeInterface
2020-03-30 16:13:51 +01:00
{
return $this -> modified ;
}
2021-05-05 17:03:03 +01:00
// @codeCoverageIgnoreEnd
2020-03-30 15:00:13 +01:00
// }}} Autocode
2020-03-29 19:33:16 +01:00
public static function schemaDef () : array
{
return [
2020-06-30 17:26:40 +01:00
'name' => 'user_notification_prefs' ,
2020-03-29 19:33:16 +01:00
'fields' => [
2021-11-08 13:44:35 +00:00
'user_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'LocalUser.id' , 'multiplicity' => 'one to one' , 'not null' => true ],
'transport' => [ 'type' => 'varchar' , 'length' => 191 , 'not null' => true , 'description' => 'transport (ex email. xmpp, aim)' ],
'target_actor_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'Actor.id' , 'multiplicity' => 'one to one' , 'default' => null , 'description' => 'If not null, settings are specific only to a given actors' ],
'activity_by_subscribed' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify when a new activity by someone we subscribe is made' ],
'mention' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify when mentioned by someone we do not subscribe' ],
'reply' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify when someone replies to a notice made by us' ],
'subscription' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify someone subscribes us' ],
'favorite' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify someone favorites a notice by us' ],
'nudge' => [ 'type' => 'bool' , 'not null' => true , 'default' => false , 'description' => 'Notify someone nudges us' ],
'dm' => [ 'type' => 'bool' , 'not null' => true , 'default' => true , 'description' => 'Notify someone sends us a direct message' ],
'post_on_status_change' => [ 'type' => 'bool' , 'not null' => true , 'default' => false , 'description' => 'Post a notice when our status in service changes' ],
'enable_posting' => [ 'type' => 'bool' , 'default' => true , 'description' => 'Enable posting from this service' ],
'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-03-29 19:33:16 +01:00
],
2021-02-22 21:34:59 +00:00
'primary key' => [ 'user_id' , 'transport' ],
'indexes' => [
2021-09-18 03:22:27 +01:00
'user_notification_prefs_user_target_actor_idx' => [ 'user_id' , 'target_actor_id' ],
2020-03-29 19:33:16 +01:00
],
];
}
2020-06-30 17:26:40 +01:00
}