[DATABASE] Remove testing entity
This commit is contained in:
parent
1c3ed4cddb
commit
8fd54efe8d
@ -1,365 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/*
|
|
||||||
* 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/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* GNU social user ORM
|
|
||||||
*
|
|
||||||
* @package GNUsocial
|
|
||||||
* @category ORM
|
|
||||||
*
|
|
||||||
* @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
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace App\Entity;
|
|
||||||
|
|
||||||
class User
|
|
||||||
{
|
|
||||||
// AUTOCODE BEGIN
|
|
||||||
|
|
||||||
private int $id;
|
|
||||||
private ?string $nickname;
|
|
||||||
private ?string $password;
|
|
||||||
private ?string $email;
|
|
||||||
private ?string $incomingemail;
|
|
||||||
private ?bool $emailnotifysub;
|
|
||||||
private ?int $emailnotifyfav;
|
|
||||||
private ?bool $emailnotifynudge;
|
|
||||||
private ?bool $emailnotifymsg;
|
|
||||||
private ?bool $emailnotifyattn;
|
|
||||||
private ?string $language;
|
|
||||||
private ?string $timezone;
|
|
||||||
private ?bool $emailpost;
|
|
||||||
private ?string $sms;
|
|
||||||
private ?int $carrier;
|
|
||||||
private ?bool $smsnotify;
|
|
||||||
private ?bool $smsreplies;
|
|
||||||
private ?string $smsemail;
|
|
||||||
private ?string $uri;
|
|
||||||
private ?bool $autosubscribe;
|
|
||||||
private ?int $subscribe_policy;
|
|
||||||
private ?string $urlshorteningservice;
|
|
||||||
private ?bool $private_stream;
|
|
||||||
private DateTime $created;
|
|
||||||
private DateTime $modified;
|
|
||||||
|
|
||||||
public function setId(int $id): self
|
|
||||||
{
|
|
||||||
$this->id = $id;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getId(): int
|
|
||||||
{
|
|
||||||
return $this->id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setNickname(?string $nickname): self
|
|
||||||
{
|
|
||||||
$this->nickname = $nickname;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getNickname(): ?string
|
|
||||||
{
|
|
||||||
return $this->nickname;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setPassword(?string $password): self
|
|
||||||
{
|
|
||||||
$this->password = $password;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getPassword(): ?string
|
|
||||||
{
|
|
||||||
return $this->password;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmail(?string $email): self
|
|
||||||
{
|
|
||||||
$this->email = $email;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmail(): ?string
|
|
||||||
{
|
|
||||||
return $this->email;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setIncomingemail(?string $incomingemail): self
|
|
||||||
{
|
|
||||||
$this->incomingemail = $incomingemail;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getIncomingemail(): ?string
|
|
||||||
{
|
|
||||||
return $this->incomingemail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailnotifysub(?bool $emailnotifysub): self
|
|
||||||
{
|
|
||||||
$this->emailnotifysub = $emailnotifysub;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailnotifysub(): ?bool
|
|
||||||
{
|
|
||||||
return $this->emailnotifysub;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailnotifyfav(?int $emailnotifyfav): self
|
|
||||||
{
|
|
||||||
$this->emailnotifyfav = $emailnotifyfav;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailnotifyfav(): ?int
|
|
||||||
{
|
|
||||||
return $this->emailnotifyfav;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailnotifynudge(?bool $emailnotifynudge): self
|
|
||||||
{
|
|
||||||
$this->emailnotifynudge = $emailnotifynudge;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailnotifynudge(): ?bool
|
|
||||||
{
|
|
||||||
return $this->emailnotifynudge;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailnotifymsg(?bool $emailnotifymsg): self
|
|
||||||
{
|
|
||||||
$this->emailnotifymsg = $emailnotifymsg;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailnotifymsg(): ?bool
|
|
||||||
{
|
|
||||||
return $this->emailnotifymsg;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailnotifyattn(?bool $emailnotifyattn): self
|
|
||||||
{
|
|
||||||
$this->emailnotifyattn = $emailnotifyattn;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailnotifyattn(): ?bool
|
|
||||||
{
|
|
||||||
return $this->emailnotifyattn;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setLanguage(?string $language): self
|
|
||||||
{
|
|
||||||
$this->language = $language;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getLanguage(): ?string
|
|
||||||
{
|
|
||||||
return $this->language;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setTimezone(?string $timezone): self
|
|
||||||
{
|
|
||||||
$this->timezone = $timezone;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getTimezone(): ?string
|
|
||||||
{
|
|
||||||
return $this->timezone;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setEmailpost(?bool $emailpost): self
|
|
||||||
{
|
|
||||||
$this->emailpost = $emailpost;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getEmailpost(): ?bool
|
|
||||||
{
|
|
||||||
return $this->emailpost;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSms(?string $sms): self
|
|
||||||
{
|
|
||||||
$this->sms = $sms;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getSms(): ?string
|
|
||||||
{
|
|
||||||
return $this->sms;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setCarrier(?int $carrier): self
|
|
||||||
{
|
|
||||||
$this->carrier = $carrier;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getCarrier(): ?int
|
|
||||||
{
|
|
||||||
return $this->carrier;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSmsnotify(?bool $smsnotify): self
|
|
||||||
{
|
|
||||||
$this->smsnotify = $smsnotify;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getSmsnotify(): ?bool
|
|
||||||
{
|
|
||||||
return $this->smsnotify;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSmsreplies(?bool $smsreplies): self
|
|
||||||
{
|
|
||||||
$this->smsreplies = $smsreplies;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getSmsreplies(): ?bool
|
|
||||||
{
|
|
||||||
return $this->smsreplies;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSmsemail(?string $smsemail): self
|
|
||||||
{
|
|
||||||
$this->smsemail = $smsemail;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getSmsemail(): ?string
|
|
||||||
{
|
|
||||||
return $this->smsemail;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setUri(?string $uri): self
|
|
||||||
{
|
|
||||||
$this->uri = $uri;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getUri(): ?string
|
|
||||||
{
|
|
||||||
return $this->uri;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setAutosubscribe(?bool $autosubscribe): self
|
|
||||||
{
|
|
||||||
$this->autosubscribe = $autosubscribe;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getAutosubscribe(): ?bool
|
|
||||||
{
|
|
||||||
return $this->autosubscribe;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setSubscribePolicy(?int $subscribe_policy): self
|
|
||||||
{
|
|
||||||
$this->subscribe_policy = $subscribe_policy;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getSubscribePolicy(): ?int
|
|
||||||
{
|
|
||||||
return $this->subscribe_policy;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setUrlshorteningservice(?string $urlshorteningservice): self
|
|
||||||
{
|
|
||||||
$this->urlshorteningservice = $urlshorteningservice;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getUrlshorteningservice(): ?string
|
|
||||||
{
|
|
||||||
return $this->urlshorteningservice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setPrivateStream(?bool $private_stream): self
|
|
||||||
{
|
|
||||||
$this->private_stream = $private_stream;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getPrivateStream(): ?bool
|
|
||||||
{
|
|
||||||
return $this->private_stream;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setCreated(DateTime $created): self
|
|
||||||
{
|
|
||||||
$this->created = $created;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getCreated(): DateTime
|
|
||||||
{
|
|
||||||
return $this->created;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setModified(DateTime $modified): self
|
|
||||||
{
|
|
||||||
$this->modified = $modified;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
public function getModified(): DateTime
|
|
||||||
{
|
|
||||||
return $this->modified;
|
|
||||||
}
|
|
||||||
|
|
||||||
// AUTOCODE END
|
|
||||||
|
|
||||||
public static function schemaDef()
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => 'user',
|
|
||||||
'description' => 'local users',
|
|
||||||
'fields' => [
|
|
||||||
'id' => ['type' => 'int', 'not null' => true, 'description' => 'foreign key to profile table'],
|
|
||||||
'nickname' => ['type' => 'varchar', 'length' => 64, 'description' => 'nickname or username, duped in profile'],
|
|
||||||
'password' => ['type' => 'varchar', 'length' => 191, 'description' => 'salted password, can be null for OpenID users'],
|
|
||||||
'email' => ['type' => 'varchar', 'length' => 191, 'description' => 'email address for password recovery etc.'],
|
|
||||||
'incomingemail' => ['type' => 'varchar', 'length' => 191, 'description' => 'email address for post-by-email'],
|
|
||||||
'emailnotifysub' => ['type' => 'bool', 'default' => true, 'description' => 'Notify by email of subscriptions'],
|
|
||||||
'emailnotifyfav' => ['type' => 'int', 'size' => 'tiny', 'default' => null, 'description' => 'Notify by email of favorites'],
|
|
||||||
'emailnotifynudge' => ['type' => 'bool', 'default' => true, 'description' => 'Notify by email of nudges'],
|
|
||||||
'emailnotifymsg' => ['type' => 'bool', 'default' => true, 'description' => 'Notify by email of direct messages'],
|
|
||||||
'emailnotifyattn' => ['type' => 'bool', 'default' => true, 'description' => 'Notify by email of @-replies'],
|
|
||||||
'language' => ['type' => 'varchar', 'length' => 50, 'description' => 'preferred language'],
|
|
||||||
'timezone' => ['type' => 'varchar', 'length' => 50, 'description' => 'timezone'],
|
|
||||||
'emailpost' => ['type' => 'bool', 'default' => true, 'description' => 'Post by email'],
|
|
||||||
'sms' => ['type' => 'varchar', 'length' => 64, 'description' => 'sms phone number'],
|
|
||||||
'carrier' => ['type' => 'int', 'description' => 'foreign key to sms_carrier'],
|
|
||||||
'smsnotify' => ['type' => 'bool', 'default' => false, 'description' => 'whether to send notices to SMS'],
|
|
||||||
'smsreplies' => ['type' => 'bool', 'default' => false, 'description' => 'whether to send notices to SMS on replies'],
|
|
||||||
'smsemail' => ['type' => 'varchar', 'length' => 191, 'description' => 'built from sms and carrier'],
|
|
||||||
'uri' => ['type' => 'varchar', 'length' => 191, 'description' => 'universally unique identifier, usually a tag URI'],
|
|
||||||
'autosubscribe' => ['type' => 'bool', 'default' => false, 'description' => 'automatically subscribe to users who subscribe to us'],
|
|
||||||
'subscribe_policy' => ['type' => 'int', 'size' => 'tiny', 'default' => 0, 'description' => '0 = anybody can subscribe; 1 = require approval'],
|
|
||||||
'urlshorteningservice' => ['type' => 'varchar', 'length' => 50, 'default' => 'internal', 'description' => 'service to use for auto-shortening URLs'],
|
|
||||||
'private_stream' => ['type' => 'bool', 'default' => false, 'description' => 'whether to limit all notices to followers only'],
|
|
||||||
'created' => ['type' => 'datetime', 'not null' => true, 'default' => '0000-00-00 00:00:00', 'description' => 'date this record was created'],
|
|
||||||
'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
|
||||||
],
|
|
||||||
'primary key' => ['id'],
|
|
||||||
'unique keys' => [
|
|
||||||
'user_nickname_key' => ['nickname'],
|
|
||||||
'user_email_key' => ['email'],
|
|
||||||
'user_incomingemail_key' => ['incomingemail'],
|
|
||||||
'user_sms_key' => ['sms'],
|
|
||||||
'user_uri_key' => ['uri'],
|
|
||||||
],
|
|
||||||
'foreign keys' => [
|
|
||||||
'user_id_fkey' => ['profile', ['id' => 'id']],
|
|
||||||
'user_carrier_fkey' => ['sms_carrier', ['carrier' => 'id']],
|
|
||||||
],
|
|
||||||
'indexes' => [
|
|
||||||
'user_created_idx' => ['created'],
|
|
||||||
'user_smsemail_idx' => ['smsemail'],
|
|
||||||
],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user