2020-03-29 19:33:16 +01:00
|
|
|
<?php
|
|
|
|
|
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
|
|
|
|
|
|
|
namespace App\Entity;
|
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
use DateTimeInterface;
|
|
|
|
|
2020-03-29 19:33:16 +01:00
|
|
|
/**
|
|
|
|
* Entity for user IM preferences
|
|
|
|
*
|
|
|
|
* @category DB
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @copyright 2009 StatusNet Inc.
|
|
|
|
* @author Hugo Sales <hugo@fc.up.pt>
|
|
|
|
* @copyright 2020 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
|
|
*/
|
2020-06-30 17:26:40 +01:00
|
|
|
class UserNotificationPrefs
|
2020-03-29 19:33:16 +01:00
|
|
|
{
|
2020-03-30 15:00:13 +01:00
|
|
|
// {{{ Autocode
|
2020-03-29 19:33:16 +01:00
|
|
|
|
2020-03-30 16:13:51 +01:00
|
|
|
private int $user_id;
|
2020-06-30 19:20:50 +01:00
|
|
|
private string $service_name;
|
2020-03-30 16:13:51 +01:00
|
|
|
private string $transport;
|
2020-06-30 19:20:50 +01:00
|
|
|
private ?int $profile_id;
|
|
|
|
private bool $posts_by_followed;
|
|
|
|
private bool $mention;
|
|
|
|
private bool $follow;
|
|
|
|
private bool $favorite;
|
|
|
|
private bool $nudge;
|
|
|
|
private bool $dm;
|
|
|
|
private bool $post_on_status_change;
|
|
|
|
private ?bool $enable_posting;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
public function getUserId(): int
|
|
|
|
{
|
|
|
|
return $this->user_id;
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:20:50 +01:00
|
|
|
public function setServiceName(string $service_name): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
2020-06-30 19:20:50 +01:00
|
|
|
$this->service_name = $service_name;
|
2020-03-30 16:13:51 +01:00
|
|
|
return $this;
|
|
|
|
}
|
2020-06-30 19:20:50 +01:00
|
|
|
public function getServiceName(): string
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
2020-06-30 19:20:50 +01:00
|
|
|
return $this->service_name;
|
2020-03-30 16:13:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function setTransport(string $transport): self
|
|
|
|
{
|
|
|
|
$this->transport = $transport;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getTransport(): string
|
|
|
|
{
|
|
|
|
return $this->transport;
|
|
|
|
}
|
|
|
|
|
2020-06-30 19:20:50 +01:00
|
|
|
public function setProfileId(?int $profile_id): self
|
|
|
|
{
|
|
|
|
$this->profile_id = $profile_id;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getProfileId(): ?int
|
|
|
|
{
|
|
|
|
return $this->profile_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setPostsByFollowed(bool $posts_by_followed): self
|
|
|
|
{
|
|
|
|
$this->posts_by_followed = $posts_by_followed;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getPostsByFollowed(): bool
|
|
|
|
{
|
|
|
|
return $this->posts_by_followed;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setMention(bool $mention): self
|
|
|
|
{
|
|
|
|
$this->mention = $mention;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
public function getMention(): bool
|
|
|
|
{
|
|
|
|
return $this->mention;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFollow(bool $follow): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
2020-06-30 19:20:50 +01:00
|
|
|
$this->follow = $follow;
|
2020-03-30 16:13:51 +01:00
|
|
|
return $this;
|
|
|
|
}
|
2020-06-30 19:20:50 +01:00
|
|
|
public function getFollow(): bool
|
|
|
|
{
|
|
|
|
return $this->follow;
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
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-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;
|
|
|
|
}
|
|
|
|
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-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;
|
|
|
|
}
|
|
|
|
public function getEnablePosting(): ?bool
|
|
|
|
{
|
|
|
|
return $this->enable_posting;
|
2020-03-30 16:13:51 +01:00
|
|
|
}
|
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function setCreated(DateTimeInterface $created): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
$this->created = $created;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-10 21:43:15 +01:00
|
|
|
public function getCreated(): DateTimeInterface
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
return $this->created;
|
|
|
|
}
|
|
|
|
|
2020-05-10 21:43:15 +01:00
|
|
|
public function setModified(DateTimeInterface $modified): self
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
$this->modified = $modified;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-10 21:43:15 +01:00
|
|
|
public function getModified(): DateTimeInterface
|
2020-03-30 16:13:51 +01:00
|
|
|
{
|
|
|
|
return $this->modified;
|
|
|
|
}
|
|
|
|
|
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' => [
|
2020-06-30 17:26:40 +01:00
|
|
|
'user_id' => ['type' => 'int', 'not null' => true],
|
2020-07-23 14:52:41 +01:00
|
|
|
'transport' => ['type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'transport (ex email. xmpp, aim)'],
|
|
|
|
'target_profile_id' => ['type' => 'int', 'default' => null, 'description' => 'If not null, settings are specific only to a given profiles'],
|
|
|
|
'notice_by_followed' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify when a new notice by someone we follow is made'],
|
|
|
|
'mention' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify when mentioned by someone we do not follow'],
|
|
|
|
'reply' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify when someone replies to a notice made by us'],
|
|
|
|
'follow' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify someone follows us'],
|
|
|
|
'favorite' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify someone favorites a notice by us'],
|
2020-06-30 17:26:40 +01:00
|
|
|
'nudge' => ['type' => 'bool', 'not null' => true, 'default' => false, 'description' => 'Notify someone nudges us'],
|
2020-07-23 14:52:41 +01:00
|
|
|
'dm' => ['type' => 'bool', 'not null' => true, 'default' => true, 'description' => 'Notify someone sends us a direct message'],
|
2020-06-30 17:26:40 +01:00
|
|
|
'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'],
|
2020-07-05 14:12:35 +01: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-03-29 19:33:16 +01:00
|
|
|
],
|
|
|
|
'primary key' => ['user_id', 'transport'],
|
|
|
|
'unique keys' => [
|
2020-06-30 17:26:40 +01:00
|
|
|
'transport_service_key' => ['transport', 'service_name'],
|
2020-03-29 19:33:16 +01:00
|
|
|
],
|
|
|
|
'foreign keys' => [
|
2020-06-30 17:26:40 +01:00
|
|
|
'user_notification_prefs_user_id_fkey' => ['user', ['user_id' => 'id']],
|
|
|
|
'user_notification_prefs_profile' => ['profile', ['profile_id' => 'id']],
|
|
|
|
],
|
|
|
|
'indexes' => [
|
|
|
|
'user_notification_prefs_user_profile_idx' => ['user_id', 'profile_id'],
|
2020-03-29 19:33:16 +01:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
2020-06-30 17:26:40 +01:00
|
|
|
}
|