2020-03-30 04:56:35 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// {{{ License
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/soci
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
2020-05-11 05:43:15 +09:00
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
2020-03-30 04:56:35 +09: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-11 05:43:15 +09:00
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
2020-03-30 04:56:35 +09:00
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// }}}
|
|
|
|
|
|
|
|
namespace App\Entity;
|
|
|
|
|
2020-05-11 05:43:15 +09:00
|
|
|
use DateTimeInterface;
|
|
|
|
|
2020-03-30 04:56:35 +09:00
|
|
|
/**
|
|
|
|
* Entity for user profiles
|
|
|
|
*
|
|
|
|
* @category DB
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2010 StatusNet Inc.
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @copyright 2009-2014 Free Software Foundation, Inc http://www.fsf.org
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
class Profile
|
|
|
|
{
|
2020-03-30 23:00:13 +09:00
|
|
|
// {{{ Autocode
|
2020-03-30 04:56:35 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
private int $id;
|
|
|
|
private string $nickname;
|
|
|
|
private ?string $fullname;
|
|
|
|
private ?string $profileurl;
|
|
|
|
private ?string $homepage;
|
|
|
|
private ?string $bio;
|
|
|
|
private ?string $location;
|
|
|
|
private ?float $lat;
|
|
|
|
private ?float $lon;
|
|
|
|
private ?int $location_id;
|
|
|
|
private ?int $location_ns;
|
2020-05-11 05:43:15 +09:00
|
|
|
private DateTimeInterface $created;
|
|
|
|
private DateTimeInterface $modified;
|
2020-03-31 00:13:51 +09:00
|
|
|
|
|
|
|
public function setId(int $id): self
|
|
|
|
{
|
|
|
|
$this->id = $id;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getId(): int
|
|
|
|
{
|
|
|
|
return $this->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setNickname(string $nickname): self
|
|
|
|
{
|
|
|
|
$this->nickname = $nickname;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getNickname(): string
|
|
|
|
{
|
|
|
|
return $this->nickname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setFullname(?string $fullname): self
|
|
|
|
{
|
|
|
|
$this->fullname = $fullname;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getFullname(): ?string
|
|
|
|
{
|
|
|
|
return $this->fullname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setProfileurl(?string $profileurl): self
|
|
|
|
{
|
|
|
|
$this->profileurl = $profileurl;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getProfileurl(): ?string
|
|
|
|
{
|
|
|
|
return $this->profileurl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setHomepage(?string $homepage): self
|
|
|
|
{
|
|
|
|
$this->homepage = $homepage;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getHomepage(): ?string
|
|
|
|
{
|
|
|
|
return $this->homepage;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setBio(?string $bio): self
|
|
|
|
{
|
|
|
|
$this->bio = $bio;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getBio(): ?string
|
|
|
|
{
|
|
|
|
return $this->bio;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLocation(?string $location): self
|
|
|
|
{
|
|
|
|
$this->location = $location;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getLocation(): ?string
|
|
|
|
{
|
|
|
|
return $this->location;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLat(?float $lat): self
|
|
|
|
{
|
|
|
|
$this->lat = $lat;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getLat(): ?float
|
|
|
|
{
|
|
|
|
return $this->lat;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLon(?float $lon): self
|
|
|
|
{
|
|
|
|
$this->lon = $lon;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getLon(): ?float
|
|
|
|
{
|
|
|
|
return $this->lon;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLocationId(?int $location_id): self
|
|
|
|
{
|
|
|
|
$this->location_id = $location_id;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getLocationId(): ?int
|
|
|
|
{
|
|
|
|
return $this->location_id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setLocationNs(?int $location_ns): self
|
|
|
|
{
|
|
|
|
$this->location_ns = $location_ns;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-03-31 00:13:51 +09:00
|
|
|
public function getLocationNs(): ?int
|
|
|
|
{
|
|
|
|
return $this->location_ns;
|
|
|
|
}
|
|
|
|
|
2020-05-11 05:43:15 +09:00
|
|
|
public function setCreated(DateTimeInterface $created): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
|
|
|
$this->created = $created;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-05-11 05:43:15 +09:00
|
|
|
public function getCreated(): DateTimeInterface
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
|
|
|
return $this->created;
|
|
|
|
}
|
|
|
|
|
2020-05-11 05:43:15 +09:00
|
|
|
public function setModified(DateTimeInterface $modified): self
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
|
|
|
$this->modified = $modified;
|
|
|
|
return $this;
|
|
|
|
}
|
2020-05-12 02:39:12 +09:00
|
|
|
|
2020-05-11 05:43:15 +09:00
|
|
|
public function getModified(): DateTimeInterface
|
2020-03-31 00:13:51 +09:00
|
|
|
{
|
|
|
|
return $this->modified;
|
|
|
|
}
|
|
|
|
|
2020-03-30 23:00:13 +09:00
|
|
|
// }}} Autocode
|
2020-03-30 04:56:35 +09:00
|
|
|
|
|
|
|
public static function schemaDef(): array
|
|
|
|
{
|
|
|
|
$def = [
|
2020-03-31 01:12:05 +09:00
|
|
|
'name' => 'profile',
|
2020-03-30 04:56:35 +09:00
|
|
|
'description' => 'local and remote users have profiles',
|
|
|
|
'fields' => [
|
|
|
|
'id' => ['type' => 'serial', 'not null' => true, 'description' => 'unique identifier'],
|
|
|
|
'nickname' => ['type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'nickname or username', 'collate' => 'utf8mb4_general_ci'],
|
|
|
|
'fullname' => ['type' => 'text', 'description' => 'display name', 'collate' => 'utf8mb4_general_ci'],
|
|
|
|
'profileurl' => ['type' => 'text', 'description' => 'URL, cached so we dont regenerate'],
|
|
|
|
'homepage' => ['type' => 'text', 'description' => 'identifying URL', 'collate' => 'utf8mb4_general_ci'],
|
|
|
|
'bio' => ['type' => 'text', 'description' => 'descriptive biography', 'collate' => 'utf8mb4_general_ci'],
|
|
|
|
'location' => ['type' => 'text', 'description' => 'physical location', 'collate' => 'utf8mb4_general_ci'],
|
|
|
|
'lat' => ['type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'latitude'],
|
|
|
|
'lon' => ['type' => 'numeric', 'precision' => 10, 'scale' => 7, 'description' => 'longitude'],
|
|
|
|
'location_id' => ['type' => 'int', 'description' => 'location id if possible'],
|
|
|
|
'location_ns' => ['type' => 'int', 'description' => 'namespace for location'],
|
|
|
|
'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'],
|
|
|
|
'indexes' => [
|
|
|
|
'profile_nickname_idx' => ['nickname'],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
2020-03-31 00:02:22 +09:00
|
|
|
// TODO
|
|
|
|
// if (common_config('search', 'type') == 'fulltext') {
|
|
|
|
// $def['fulltext indexes'] = ['nickname' => ['nickname', 'fullname', 'location', 'bio', 'homepage']];
|
|
|
|
// }
|
2020-03-30 04:56:35 +09:00
|
|
|
|
|
|
|
return $def;
|
|
|
|
}
|
|
|
|
}
|