2020-03-29 19:33:16 +01:00
< ? php
2021-12-04 19:58:00 +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
namespace App\Entity ;
2021-09-14 13:40:50 +01:00
use App\Core\Cache ;
use App\Core\DB\DB ;
2020-08-15 07:18:23 +01:00
use App\Core\Entity ;
2021-09-14 13:40:50 +01:00
use App\Core\Router\Router ;
use App\Util\Exception\NotFoundException ;
use App\Util\Nickname ;
2020-05-10 21:43:15 +01:00
use DateTimeInterface ;
2021-09-14 13:40:50 +01:00
use InvalidArgumentException ;
2020-05-10 21:43:15 +01:00
2020-03-29 19:33:16 +01:00
/**
* Entity for groups a user is in
*
* @ 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
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 Group 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 $id ;
2021-09-18 03:22:27 +01:00
private int $actor_id ;
2020-03-30 16:13:51 +01:00
private ? string $nickname ;
private ? string $fullname ;
private ? string $homepage ;
private ? string $description ;
2020-06-30 19:20:50 +01:00
private ? bool $is_local ;
2020-03-30 16:13:51 +01:00
private ? string $location ;
private ? string $original_logo ;
private ? string $homepage_logo ;
private ? string $stream_logo ;
private ? string $mini_logo ;
private ? string $uri ;
private ? string $mainpage ;
private ? int $join_policy ;
private ? int $force_scope ;
2021-12-04 19:58:00 +00:00
private DateTimeInterface $created ;
private DateTimeInterface $modified ;
2020-03-30 16:13:51 +01:00
public function setId ( int $id ) : self
{
$this -> id = $id ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getId () : int
{
return $this -> id ;
}
2021-09-18 03:22:27 +01:00
public function setActorId ( int $actor_id ) : self
2020-03-30 16:13:51 +01:00
{
2021-09-18 03:22:27 +01:00
$this -> actor_id = $actor_id ;
2020-03-30 16:13:51 +01:00
return $this ;
}
2020-08-08 17:11:18 +01:00
2021-09-18 03:22:27 +01:00
public function getActorId () : int
2020-03-30 16:13:51 +01:00
{
2021-09-18 03:22:27 +01:00
return $this -> actor_id ;
2020-03-30 16:13:51 +01:00
}
public function setNickname ( ? string $nickname ) : self
{
$this -> nickname = $nickname ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getNickname () : ? string
{
return $this -> nickname ;
}
public function setFullname ( ? string $fullname ) : self
{
$this -> fullname = $fullname ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getFullname () : ? string
{
return $this -> fullname ;
}
public function setHomepage ( ? string $homepage ) : self
{
$this -> homepage = $homepage ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getHomepage () : ? string
{
return $this -> homepage ;
}
public function setDescription ( ? string $description ) : self
{
$this -> description = $description ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getDescription () : ? string
{
return $this -> description ;
}
2020-06-30 19:20:50 +01:00
public function setIsLocal ( ? bool $is_local ) : self
{
$this -> is_local = $is_local ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-06-30 19:20:50 +01:00
public function getIsLocal () : ? bool
{
return $this -> is_local ;
}
2020-03-30 16:13:51 +01:00
public function setLocation ( ? string $location ) : self
{
$this -> location = $location ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getLocation () : ? string
{
return $this -> location ;
}
public function setOriginalLogo ( ? string $original_logo ) : self
{
$this -> original_logo = $original_logo ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getOriginalLogo () : ? string
{
return $this -> original_logo ;
}
public function setHomepageLogo ( ? string $homepage_logo ) : self
{
$this -> homepage_logo = $homepage_logo ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getHomepageLogo () : ? string
{
return $this -> homepage_logo ;
}
public function setStreamLogo ( ? string $stream_logo ) : self
{
$this -> stream_logo = $stream_logo ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getStreamLogo () : ? string
{
return $this -> stream_logo ;
}
public function setMiniLogo ( ? string $mini_logo ) : self
{
$this -> mini_logo = $mini_logo ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getMiniLogo () : ? string
{
return $this -> mini_logo ;
}
public function setUri ( ? string $uri ) : self
{
$this -> uri = $uri ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getUri () : ? string
{
return $this -> uri ;
}
public function setMainpage ( ? string $mainpage ) : self
{
$this -> mainpage = $mainpage ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getMainpage () : ? string
{
return $this -> mainpage ;
}
public function setJoinPolicy ( ? int $join_policy ) : self
{
$this -> join_policy = $join_policy ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getJoinPolicy () : ? int
{
return $this -> join_policy ;
}
public function setForceScope ( ? int $force_scope ) : self
{
$this -> force_scope = $force_scope ;
return $this ;
}
2020-08-08 17:11:18 +01:00
2020-03-30 16:13:51 +01:00
public function getForceScope () : ? int
{
return $this -> force_scope ;
}
2021-05-05 17:03:03 +01:00
public function setCreated ( DateTimeInterface $created ) : self
2020-07-22 02:49:40 +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-07-22 02:49:40 +01:00
{
return $this -> created ;
}
2021-05-05 17:03:03 +01:00
public function setModified ( DateTimeInterface $modified ) : self
2020-07-22 02:49:40 +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-07-22 02:49:40 +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
2021-09-18 03:22:27 +01:00
public function getActor () : Actor
2021-09-14 13:40:50 +01:00
{
2021-10-04 17:00:58 +01:00
return Actor :: getById ( $this -> getId ());
2021-09-14 13:40:50 +01:00
}
2021-12-04 19:58:00 +00:00
public static function getByNickname ( string $nickname , ? Actor $actor = null ) : ? self
2021-09-14 13:40:50 +01:00
{
$nickname = Nickname :: normalize ( $nickname , check_already_used : false );
$group = null ;
try {
$group = Cache :: get ( 'group-nick-' . $nickname , fn () => DB :: findOneBy ( 'group' , [ 'nickname' => $nickname ]));
// TODO check group scope with $actor
} catch ( NotFoundException ) {
throw new InvalidArgumentException ;
}
return $group ;
}
public function getUrl () : string
{
return Router :: url ( 'group_nickname' , [ 'actor_nickname' => $this -> getNickname ()]);
}
2020-03-29 19:33:16 +01:00
public static function schemaDef () : array
{
return [
2021-01-31 18:16:56 +00:00
'name' => '`group`' ,
2020-03-29 19:33:16 +01:00
'fields' => [
2021-02-22 21:34:59 +00:00
'id' => [ 'type' => 'serial' , 'not null' => true ],
2021-09-18 03:22:27 +01:00
'actor_id' => [ 'type' => 'int' , 'foreign key' => true , 'target' => 'Actor.id' , 'multiplicity' => 'many to one' , 'not null' => true , 'description' => 'foreign key to actor table' ],
2021-02-22 21:34:59 +00:00
'nickname' => [ 'type' => 'varchar' , 'length' => 64 , 'description' => 'nickname for addressing' ],
'fullname' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'display name' ],
'homepage' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'URL, cached so we dont regenerate' ],
'description' => [ 'type' => 'text' , 'description' => 'group description' ],
'is_local' => [ 'type' => 'bool' , 'description' => 'whether this group was created in this instance' ],
'location' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'related physical location, if any' ],
'original_logo' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'original size logo' ],
2021-09-18 03:22:27 +01:00
'homepage_logo' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'homepage (actor) size logo' ],
2021-02-22 21:34:59 +00:00
'stream_logo' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'stream-sized logo' ],
'mini_logo' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'mini logo' ],
'uri' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'universal identifier' ],
'mainpage' => [ 'type' => 'varchar' , 'length' => 191 , 'description' => 'page for group info to link to' ],
'join_policy' => [ 'type' => 'int' , 'size' => 'tiny' , 'description' => '0=open; 1=requires admin approval' ],
'force_scope' => [ 'type' => 'int' , 'size' => 'tiny' , 'description' => '0=never,1=sometimes,-1=always' ],
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' => [ 'id' ],
'unique keys' => [
2021-09-18 03:22:27 +01:00
'user_group_uri_key' => [ 'uri' ],
'user_actor_id_key' => [ 'actor_id' ],
2020-03-29 19:33:16 +01:00
],
'indexes' => [
2021-09-18 03:22:27 +01:00
'user_group_nickname_idx' => [ 'nickname' ],
'user_group_actor_id_idx' => [ 'actor_id' ],
2020-03-29 19:33:16 +01:00
],
];
}
2020-06-30 17:26:40 +01:00
}