[CORE][Actor] Simplify logic so more is reused between different types of actors
Minor bug fixes
This commit is contained in:
parent
1f1524c2b3
commit
416451a519
|
@ -1,71 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types = 1);
|
|
||||||
|
|
||||||
// {{{ License
|
|
||||||
// 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/>.
|
|
||||||
// }}}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Base class for feed controllers
|
|
||||||
*
|
|
||||||
* @package GNUsocial
|
|
||||||
* @category Controller
|
|
||||||
*
|
|
||||||
* @author Hugo Sales <hugo@hsal.es>
|
|
||||||
* @copyright 2021 Free Software Foundation, Inc http://www.fsf.org
|
|
||||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Component\Collection\Util;
|
|
||||||
|
|
||||||
use App\Core\DB\DB;
|
|
||||||
use function App\Core\I18n\_m;
|
|
||||||
use App\Core\Router\Router;
|
|
||||||
use App\Util\Exception\ClientException;
|
|
||||||
|
|
||||||
trait ActorControllerTrait
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Generic function that handles getting a representation for an actor from id
|
|
||||||
*/
|
|
||||||
protected function handleActorById(int $id, callable $handle)
|
|
||||||
{
|
|
||||||
$actor = DB::findOneBy('actor', ['id' => $id]);
|
|
||||||
if ($actor->getIsLocal()) {
|
|
||||||
return ['_redirect' => $actor->getUrl(Router::ABSOLUTE_PATH), 'actor' => $actor];
|
|
||||||
}
|
|
||||||
if (empty($actor)) {
|
|
||||||
throw new ClientException(_m('No such actor.'), 404);
|
|
||||||
} else {
|
|
||||||
return $handle($actor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generic function that handles getting a representation for an actor from nickname
|
|
||||||
*/
|
|
||||||
protected function handleActorByNickname(string $nickname, callable $handle)
|
|
||||||
{
|
|
||||||
$user = DB::findOneBy('local_user', ['nickname' => $nickname]);
|
|
||||||
$actor = DB::findOneBy('actor', ['id' => $user->getId()]);
|
|
||||||
if (empty($actor)) {
|
|
||||||
throw new ClientException(_m('No such actor.'), 404);
|
|
||||||
} else {
|
|
||||||
return $handle($actor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -29,6 +29,7 @@ use App\Core\DB\DB;
|
||||||
use App\Core\Form;
|
use App\Core\Form;
|
||||||
use function App\Core\I18n\_m;
|
use function App\Core\I18n\_m;
|
||||||
use App\Core\Log;
|
use App\Core\Log;
|
||||||
|
use App\Core\Router\Router;
|
||||||
use App\Entity\Actor;
|
use App\Entity\Actor;
|
||||||
use App\Entity as E;
|
use App\Entity as E;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
|
@ -44,7 +45,6 @@ use App\Util\Exception\NotFoundException;
|
||||||
use App\Util\Exception\RedirectException;
|
use App\Util\Exception\RedirectException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use App\Util\Form\ActorForms;
|
use App\Util\Form\ActorForms;
|
||||||
use App\Util\Nickname;
|
|
||||||
use Component\Collection\Util\Controller\FeedController;
|
use Component\Collection\Util\Controller\FeedController;
|
||||||
use Component\Group\Entity\GroupMember;
|
use Component\Group\Entity\GroupMember;
|
||||||
use Component\Group\Entity\LocalGroup;
|
use Component\Group\Entity\LocalGroup;
|
||||||
|
@ -60,7 +60,7 @@ class Group extends FeedController
|
||||||
/**
|
/**
|
||||||
* @throws ServerException
|
* @throws ServerException
|
||||||
*/
|
*/
|
||||||
public function handleGroup(Request $request, Actor $group): array
|
public function groupView(Request $request, Actor $group): array
|
||||||
{
|
{
|
||||||
$actor = Common::actor();
|
$actor = Common::actor();
|
||||||
$subscribe_form = null;
|
$subscribe_form = null;
|
||||||
|
@ -106,9 +106,23 @@ class Group extends FeedController
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws ClientException
|
||||||
|
* @throws ServerException
|
||||||
|
*/
|
||||||
public function groupViewId(Request $request, int $id): array
|
public function groupViewId(Request $request, int $id): array
|
||||||
{
|
{
|
||||||
return $this->handleGroup($request, Actor::getById($id));
|
$group = Actor::getById($id);
|
||||||
|
if (\is_null($group) || !$group->isGroup()) {
|
||||||
|
throw new ClientException(_m('No such group.'), 404);
|
||||||
|
}
|
||||||
|
if ($group->getIsLocal()) {
|
||||||
|
return [
|
||||||
|
'_redirect' => Router::url('group_actor_view_nickname', ['nickname' => $group->getNickname()]),
|
||||||
|
'actor' => $group,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
return $this->groupView($request, $group);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -116,20 +130,16 @@ class Group extends FeedController
|
||||||
*
|
*
|
||||||
* @param string $nickname The group's nickname to be shown
|
* @param string $nickname The group's nickname to be shown
|
||||||
*
|
*
|
||||||
* @throws NicknameEmptyException
|
* @throws ClientException
|
||||||
* @throws NicknameNotAllowedException
|
|
||||||
* @throws NicknameTakenException
|
|
||||||
* @throws NicknameTooLongException
|
|
||||||
* @throws ServerException
|
* @throws ServerException
|
||||||
*/
|
*/
|
||||||
public function groupViewNickname(Request $request, string $nickname): array
|
public function groupViewNickname(Request $request, string $nickname): array
|
||||||
{
|
{
|
||||||
Nickname::validate($nickname, which: Nickname::CHECK_LOCAL_GROUP); // throws
|
|
||||||
$group = LocalGroup::getActorByNickname($nickname);
|
$group = LocalGroup::getActorByNickname($nickname);
|
||||||
if (\is_null($group)) {
|
if (\is_null($group)) {
|
||||||
throw new NotFoundException(_m('Group not found.'));
|
throw new ClientException(_m('No such group.'), 404);
|
||||||
}
|
}
|
||||||
return $this->handleGroup($request, $group);
|
return $this->groupView($request, $group);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -168,7 +178,7 @@ class Group extends FeedController
|
||||||
*/
|
*/
|
||||||
public function groupSettings(Request $request, int $id): array
|
public function groupSettings(Request $request, int $id): array
|
||||||
{
|
{
|
||||||
$local_group = DB::findOneBy(LocalGroup::class, ['group_id' => $id]);
|
$local_group = DB::findOneBy(LocalGroup::class, ['actor_id' => $id]);
|
||||||
$group_actor = $local_group->getActor();
|
$group_actor = $local_group->getActor();
|
||||||
$actor = Common::actor();
|
$actor = Common::actor();
|
||||||
if (!\is_null($group_actor) && $actor->canAdmin($group_actor)) {
|
if (!\is_null($group_actor) && $actor->canAdmin($group_actor)) {
|
||||||
|
@ -219,7 +229,7 @@ class Group extends FeedController
|
||||||
'roles' => ActorLocalRoles::VISITOR, // Can send direct messages to other actors
|
'roles' => ActorLocalRoles::VISITOR, // Can send direct messages to other actors
|
||||||
]));
|
]));
|
||||||
DB::persist(LocalGroup::create([
|
DB::persist(LocalGroup::create([
|
||||||
'group_id' => $group->getId(),
|
'actor_id' => $group->getId(),
|
||||||
'type' => $data['group_type'],
|
'type' => $data['group_type'],
|
||||||
'nickname' => $nickname,
|
'nickname' => $nickname,
|
||||||
]));
|
]));
|
||||||
|
|
|
@ -21,10 +21,8 @@ declare(strict_types = 1);
|
||||||
|
|
||||||
namespace Component\Group\Entity;
|
namespace Component\Group\Entity;
|
||||||
|
|
||||||
use App\Core\Cache;
|
|
||||||
use App\Core\DB\DB;
|
use App\Core\DB\DB;
|
||||||
use App\Core\Entity;
|
use App\Core\Entity;
|
||||||
|
|
||||||
use App\Entity\Actor;
|
use App\Entity\Actor;
|
||||||
use App\Util\Exception\NicknameEmptyException;
|
use App\Util\Exception\NicknameEmptyException;
|
||||||
use App\Util\Exception\NicknameException;
|
use App\Util\Exception\NicknameException;
|
||||||
|
@ -53,21 +51,21 @@ class LocalGroup extends Entity
|
||||||
{
|
{
|
||||||
// {{{ Autocode
|
// {{{ Autocode
|
||||||
// @codeCoverageIgnoreStart
|
// @codeCoverageIgnoreStart
|
||||||
private int $group_id;
|
private int $actor_id;
|
||||||
private string $nickname;
|
private string $nickname;
|
||||||
private string $type;
|
private string $type;
|
||||||
private DateTimeInterface $created;
|
private DateTimeInterface $created;
|
||||||
private DateTimeInterface $modified;
|
private DateTimeInterface $modified;
|
||||||
|
|
||||||
public function setGroupId(int $group_id): self
|
public function setActorId(int $actor_id): self
|
||||||
{
|
{
|
||||||
$this->group_id = $group_id;
|
$this->actor_id = $actor_id;
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getGroupId(): int
|
public function getActorId(): int
|
||||||
{
|
{
|
||||||
return $this->group_id;
|
return $this->actor_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setNickname(string $nickname): self
|
public function setNickname(string $nickname): self
|
||||||
|
@ -119,19 +117,17 @@ class LocalGroup extends Entity
|
||||||
|
|
||||||
public function getActor()
|
public function getActor()
|
||||||
{
|
{
|
||||||
return DB::find('actor', ['id' => $this->group_id]);
|
return DB::findOneBy('actor', ['id' => $this->actor_id]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getByNickname(string $nickname): ?self
|
public static function getByNickname(string $nickname): ?self
|
||||||
{
|
{
|
||||||
$res = DB::findBy(self::class, ['nickname' => $nickname]);
|
return DB::findOneBy(self::class, ['nickname' => $nickname]);
|
||||||
return $res === [] ? null : $res[0];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getActorByNickname(string $nickname): ?Actor
|
public static function getActorByNickname(string $nickname): ?Actor
|
||||||
{
|
{
|
||||||
$res = DB::findBy(Actor::class, ['nickname' => $nickname, 'type' => Actor::GROUP]);
|
return DB::findOneBy(Actor::class, ['nickname' => $nickname, 'type' => Actor::GROUP]);
|
||||||
return $res === [] ? null : $res[0];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -163,13 +159,13 @@ class LocalGroup extends Entity
|
||||||
'name' => 'local_group',
|
'name' => 'local_group',
|
||||||
'description' => 'Record for a user group on the local site, with some additional info not in user_group',
|
'description' => 'Record for a user group on the local site, with some additional info not in user_group',
|
||||||
'fields' => [
|
'fields' => [
|
||||||
'group_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'one to one', 'name' => 'local_group_group_id_fkey', 'not null' => true, 'description' => 'group represented'],
|
'actor_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'one to one', 'name' => 'local_group_group_id_fkey', 'not null' => true, 'description' => 'group represented'],
|
||||||
'nickname' => ['type' => 'varchar', 'not null' => true, 'length' => 64, 'description' => 'group represented'],
|
'nickname' => ['type' => 'varchar', 'not null' => true, 'length' => 64, 'description' => 'group represented'],
|
||||||
'type' => ['type' => 'varchar', 'not null' => true, 'default' => 'group', 'length' => 64, 'description' => 'Group or Organisation'],
|
'type' => ['type' => 'varchar', 'not null' => true, 'default' => 'group', 'length' => 64, 'description' => 'Group or Organisation'],
|
||||||
'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'],
|
'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'],
|
||||||
'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
'modified' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was modified'],
|
||||||
],
|
],
|
||||||
'primary key' => ['group_id'],
|
'primary key' => ['actor_id'],
|
||||||
'unique keys' => [
|
'unique keys' => [
|
||||||
'local_group_nickname_key' => ['nickname'],
|
'local_group_nickname_key' => ['nickname'],
|
||||||
],
|
],
|
||||||
|
|
|
@ -39,10 +39,10 @@ class Group extends Component
|
||||||
{
|
{
|
||||||
public function onAddRoute(RouteLoader $r): bool
|
public function onAddRoute(RouteLoader $r): bool
|
||||||
{
|
{
|
||||||
$r->connect(id: 'group_create', uri_path: '/group/new', target: [C\Group::class, 'groupCreate']);
|
|
||||||
$r->connect(id: 'group_actor_view_id', uri_path: '/group/{id<\d+>}', target: [C\Group::class, 'groupViewId']);
|
$r->connect(id: 'group_actor_view_id', uri_path: '/group/{id<\d+>}', target: [C\Group::class, 'groupViewId']);
|
||||||
$r->connect(id: 'group_settings', uri_path: '/group/{id<\d+>}/settings', target: [C\Group::class, 'groupSettings']);
|
|
||||||
$r->connect(id: 'group_actor_view_nickname', uri_path: '/!{nickname<' . Nickname::DISPLAY_FMT . '>}', target: [C\Group::class, 'groupViewNickname']);
|
$r->connect(id: 'group_actor_view_nickname', uri_path: '/!{nickname<' . Nickname::DISPLAY_FMT . '>}', target: [C\Group::class, 'groupViewNickname']);
|
||||||
|
$r->connect(id: 'group_create', uri_path: '/group/new', target: [C\Group::class, 'groupCreate']);
|
||||||
|
$r->connect(id: 'group_settings', uri_path: '/group/{id<\d+>}/settings', target: [C\Group::class, 'groupSettings']);
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ class Group extends Component
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function onPopulateSettingsTabs(Request $request, string $section, array &$tabs)
|
public function onPopulateSettingsTabs(Request $request, string $section, array &$tabs): bool
|
||||||
{
|
{
|
||||||
if ($section === 'profile' && $request->get('_route') === 'group_settings') {
|
if ($section === 'profile' && $request->get('_route') === 'group_settings') {
|
||||||
$group_id = $request->get('id');
|
$group_id = $request->get('id');
|
||||||
|
@ -92,7 +92,7 @@ class Group extends Component
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function onPostingFillTargetChoices(Request $request, Actor $actor, array &$targets)
|
public function onPostingFillTargetChoices(Request $request, Actor $actor, array &$targets): bool
|
||||||
{
|
{
|
||||||
$group = $this->getGroupFromContext($request);
|
$group = $this->getGroupFromContext($request);
|
||||||
if (!\is_null($group)) {
|
if (!\is_null($group)) {
|
||||||
|
@ -110,10 +110,8 @@ class Group extends Component
|
||||||
* in the Posting's form.
|
* in the Posting's form.
|
||||||
*
|
*
|
||||||
* @param null|Actor $context_actor Actor group, if current route is part of an existing Group set of routes
|
* @param null|Actor $context_actor Actor group, if current route is part of an existing Group set of routes
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
*/
|
||||||
public function onPostingGetContextActor(Request $request, Actor $actor, ?Actor &$context_actor)
|
public function onPostingGetContextActor(Request $request, Actor $actor, ?Actor &$context_actor): bool
|
||||||
{
|
{
|
||||||
$ctx = $this->getGroupFromContext($request);
|
$ctx = $this->getGroupFromContext($request);
|
||||||
if (!\is_null($ctx)) {
|
if (!\is_null($ctx)) {
|
||||||
|
|
84
components/Person/Controller/PersonFeed.php
Normal file
84
components/Person/Controller/PersonFeed.php
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
// {{{ License
|
||||||
|
|
||||||
|
// 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/>.
|
||||||
|
|
||||||
|
// }}}
|
||||||
|
|
||||||
|
namespace Component\Person\Controller;
|
||||||
|
|
||||||
|
use function App\Core\I18n\_m;
|
||||||
|
use App\Core\Router\Router;
|
||||||
|
use App\Entity\Actor;
|
||||||
|
use App\Entity as E;
|
||||||
|
use App\Entity\LocalUser;
|
||||||
|
use App\Util\Exception\ClientException;
|
||||||
|
use App\Util\Exception\ServerException;
|
||||||
|
use Component\Collection\Util\Controller\FeedController;
|
||||||
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
class PersonFeed extends FeedController
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @throws ClientException
|
||||||
|
* @throws ServerException
|
||||||
|
*/
|
||||||
|
public function personViewId(Request $request, int $id): array
|
||||||
|
{
|
||||||
|
$person = Actor::getById($id);
|
||||||
|
if (\is_null($person) || !$person->isPerson()) {
|
||||||
|
throw new ClientException(_m('No such person.'), 404);
|
||||||
|
}
|
||||||
|
if ($person->getIsLocal()) {
|
||||||
|
return [
|
||||||
|
'_redirect' => Router::url('person_actor_view_nickname', ['nickname' => $person->getNickname()]),
|
||||||
|
'actor' => $person,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
return $this->personView($request, $person);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* View a group feed by its nickname
|
||||||
|
*
|
||||||
|
* @param string $nickname The group's nickname to be shown
|
||||||
|
*
|
||||||
|
* @throws ClientException
|
||||||
|
* @throws ServerException
|
||||||
|
*/
|
||||||
|
public function personViewNickname(Request $request, string $nickname): array
|
||||||
|
{
|
||||||
|
$user = LocalUser::getByNickname($nickname);
|
||||||
|
if (\is_null($user)) {
|
||||||
|
throw new ClientException(_m('No such person.'), 404);
|
||||||
|
}
|
||||||
|
$person = Actor::getById($user->getId());
|
||||||
|
return $this->personView($request, $person);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function personView(Request $request, Actor $person): array
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'_template' => 'actor/view.html.twig',
|
||||||
|
'actor' => $person,
|
||||||
|
'nickname' => $person->getNickname(),
|
||||||
|
'notes' => E\Note::getAllNotesByActor($person),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
|
@ -33,7 +33,7 @@ declare(strict_types = 1);
|
||||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace Component\Person\Controller;
|
||||||
|
|
||||||
// {{{ Imports
|
// {{{ Imports
|
||||||
|
|
||||||
|
@ -45,7 +45,13 @@ use function App\Core\I18n\_m;
|
||||||
use App\Core\Log;
|
use App\Core\Log;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
use App\Util\Exception\AuthenticationException;
|
use App\Util\Exception\AuthenticationException;
|
||||||
|
use App\Util\Exception\NicknameEmptyException;
|
||||||
|
use App\Util\Exception\NicknameInvalidException;
|
||||||
|
use App\Util\Exception\NicknameNotAllowedException;
|
||||||
|
use App\Util\Exception\NicknameTakenException;
|
||||||
|
use App\Util\Exception\NicknameTooLongException;
|
||||||
use App\Util\Exception\NoLoggedInUser;
|
use App\Util\Exception\NoLoggedInUser;
|
||||||
|
use App\Util\Exception\RedirectException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use App\Util\Form\ActorArrayTransformer;
|
use App\Util\Form\ActorArrayTransformer;
|
||||||
use App\Util\Form\ActorForms;
|
use App\Util\Form\ActorForms;
|
||||||
|
@ -64,20 +70,22 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
// }}} Imports
|
// }}} Imports
|
||||||
|
|
||||||
class UserPanel extends Controller
|
class PersonSettings extends Controller
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Return main settings page forms
|
* Return main settings page forms
|
||||||
*
|
*
|
||||||
* @throws \App\Util\Exception\NicknameEmptyException
|
* @throws \App\Util\Exception\ClientException
|
||||||
* @throws \App\Util\Exception\NicknameInvalidException
|
* @throws \App\Util\Exception\NicknameException
|
||||||
* @throws \App\Util\Exception\NicknameNotAllowedException
|
|
||||||
* @throws \App\Util\Exception\NicknameTakenException
|
|
||||||
* @throws \App\Util\Exception\NicknameTooLongException
|
|
||||||
* @throws \App\Util\Exception\RedirectException
|
|
||||||
* @throws \Doctrine\DBAL\Exception
|
* @throws \Doctrine\DBAL\Exception
|
||||||
* @throws AuthenticationException
|
* @throws AuthenticationException
|
||||||
|
* @throws NicknameEmptyException
|
||||||
|
* @throws NicknameInvalidException
|
||||||
|
* @throws NicknameNotAllowedException
|
||||||
|
* @throws NicknameTakenException
|
||||||
|
* @throws NicknameTooLongException
|
||||||
* @throws NoLoggedInUser
|
* @throws NoLoggedInUser
|
||||||
|
* @throws RedirectException
|
||||||
* @throws ServerException
|
* @throws ServerException
|
||||||
*/
|
*/
|
||||||
public function allSettings(Request $request, LanguageController $language): array
|
public function allSettings(Request $request, LanguageController $language): array
|
39
components/Person/Person.php
Normal file
39
components/Person/Person.php
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
// {{{ License
|
||||||
|
// 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/>.
|
||||||
|
// }}}
|
||||||
|
|
||||||
|
namespace Component\Person;
|
||||||
|
|
||||||
|
use App\Core\Event;
|
||||||
|
use App\Core\Modules\Component;
|
||||||
|
use App\Core\Router\RouteLoader;
|
||||||
|
use App\Util\Nickname;
|
||||||
|
use Component\Person\Controller as C;
|
||||||
|
|
||||||
|
class Person extends Component
|
||||||
|
{
|
||||||
|
public function onAddRoute(RouteLoader $r): bool
|
||||||
|
{
|
||||||
|
$r->connect(id: 'person_actor_view_id', uri_path: '/person/{id<\d+>}', target: [C\PersonFeed::class, 'personViewId']);
|
||||||
|
$r->connect(id: 'person_actor_view_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}', target: [C\PersonFeed::class, 'personViewNickname'], options: ['is_system_path' => false]);
|
||||||
|
$r->connect(id: 'person_actor_settings', uri_path: '/person/{id<\d+>}/settings', target: [C\PersonSettings::class, 'allSettings']);
|
||||||
|
return Event::next;
|
||||||
|
}
|
||||||
|
}
|
|
@ -32,7 +32,7 @@ use App\Entity\Actor;
|
||||||
use App\Util\Common;
|
use App\Util\Common;
|
||||||
use App\Util\Exception\ClientException;
|
use App\Util\Exception\ClientException;
|
||||||
use App\Util\Exception\RedirectException;
|
use App\Util\Exception\RedirectException;
|
||||||
use Component\Collection\Util\ActorControllerTrait;
|
use App\Util\Exception\ServerException;
|
||||||
use Component\Collection\Util\Controller\CircleController;
|
use Component\Collection\Util\Controller\CircleController;
|
||||||
use Component\Subscription\Subscription as SubscriptionComponent;
|
use Component\Subscription\Subscription as SubscriptionComponent;
|
||||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||||
|
@ -43,30 +43,32 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
*/
|
*/
|
||||||
class Subscribers extends CircleController
|
class Subscribers extends CircleController
|
||||||
{
|
{
|
||||||
use ActorControllerTrait;
|
/**
|
||||||
public function subscribersByActorId(Request $request, int $id)
|
* @throws ServerException
|
||||||
|
*/
|
||||||
|
public function subscribersByActor(Request $request, Actor $actor): array
|
||||||
{
|
{
|
||||||
return $this->handleActorById(
|
return [
|
||||||
$id,
|
|
||||||
fn ($actor) => [
|
|
||||||
'actor' => $actor,
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function subscribersByActorNickname(Request $request, string $nickname)
|
|
||||||
{
|
|
||||||
return $this->handleActorByNickname(
|
|
||||||
$nickname,
|
|
||||||
fn ($actor) => [
|
|
||||||
'_template' => 'collection/actors.html.twig',
|
'_template' => 'collection/actors.html.twig',
|
||||||
'title' => _m('Subscribers'),
|
'title' => _m('Subscribers'),
|
||||||
'empty_message' => _m('No subscribers.'),
|
'empty_message' => _m('No subscribers.'),
|
||||||
'sort_form_fields' => [],
|
'sort_form_fields' => [],
|
||||||
'page' => $this->int('page') ?? 1,
|
'page' => $this->int('page') ?? 1,
|
||||||
'actors' => $actor->getSubscribers(),
|
'actors' => $actor->getSubscribers(),
|
||||||
],
|
];
|
||||||
);
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @throws ClientException
|
||||||
|
* @throws ServerException
|
||||||
|
*/
|
||||||
|
public function subscribersByActorId(Request $request, int $id): array
|
||||||
|
{
|
||||||
|
$actor = Actor::getById($id);
|
||||||
|
if (\is_null($actor)) {
|
||||||
|
throw new ClientException(_m('No such actor.'), 404);
|
||||||
|
}
|
||||||
|
return $this->subscribersByActor($request, $actor);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -24,7 +24,9 @@ declare(strict_types = 1);
|
||||||
namespace Component\Subscription\Controller;
|
namespace Component\Subscription\Controller;
|
||||||
|
|
||||||
use function App\Core\I18n\_m;
|
use function App\Core\I18n\_m;
|
||||||
use Component\Collection\Util\ActorControllerTrait;
|
use App\Entity\Actor;
|
||||||
|
use App\Util\Exception\ClientException;
|
||||||
|
use App\Util\Exception\ServerException;
|
||||||
use Component\Collection\Util\Controller\CircleController;
|
use Component\Collection\Util\Controller\CircleController;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
|
@ -33,29 +35,28 @@ use Symfony\Component\HttpFoundation\Request;
|
||||||
*/
|
*/
|
||||||
class Subscriptions extends CircleController
|
class Subscriptions extends CircleController
|
||||||
{
|
{
|
||||||
use ActorControllerTrait;
|
/**
|
||||||
public function subscriptionsByActorId(Request $request, int $id)
|
* @throws ClientException
|
||||||
|
* @throws ServerException
|
||||||
|
*/
|
||||||
|
public function subscriptionsByActorId(Request $request, int $id): array
|
||||||
{
|
{
|
||||||
return $this->handleActorById(
|
$actor = Actor::getById($id);
|
||||||
$id,
|
if (\is_null($actor)) {
|
||||||
fn ($actor) => [
|
throw new ClientException(_m('No such actor.'), 404);
|
||||||
'actor' => $actor,
|
}
|
||||||
],
|
return $this->subscriptionsByActor($request, $actor);
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function subscriptionsByActorNickname(Request $request, string $nickname)
|
public function subscriptionsByActor(Request $request, Actor $actor)
|
||||||
{
|
{
|
||||||
return $this->handleActorByNickname(
|
return [
|
||||||
$nickname,
|
|
||||||
fn ($actor) => [
|
|
||||||
'_template' => 'collection/actors.html.twig',
|
'_template' => 'collection/actors.html.twig',
|
||||||
'title' => _m('Subscriptions'),
|
'title' => _m('Subscriptions'),
|
||||||
'empty_message' => _m('Haven\'t subscribed anyone.'),
|
'empty_message' => _m('Haven\'t subscribed anyone.'),
|
||||||
'sort_form_fields' => [],
|
'sort_form_fields' => [],
|
||||||
'page' => $this->int('page') ?? 1,
|
'page' => $this->int('page') ?? 1,
|
||||||
'actors' => $actor->getSubscribers(),
|
'actors' => $actor->getSubscribers(),
|
||||||
],
|
];
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,6 @@ use App\Util\Common;
|
||||||
use App\Util\Exception\DuplicateFoundException;
|
use App\Util\Exception\DuplicateFoundException;
|
||||||
use App\Util\Exception\NotFoundException;
|
use App\Util\Exception\NotFoundException;
|
||||||
use App\Util\Exception\ServerException;
|
use App\Util\Exception\ServerException;
|
||||||
use App\Util\Nickname;
|
|
||||||
use Component\Subscription\Controller\Subscribers as SubscribersController;
|
use Component\Subscription\Controller\Subscribers as SubscribersController;
|
||||||
use Component\Subscription\Controller\Subscriptions as SubscriptionsController;
|
use Component\Subscription\Controller\Subscriptions as SubscriptionsController;
|
||||||
|
|
||||||
|
@ -50,9 +49,7 @@ class Subscription extends Component
|
||||||
$r->connect(id: 'actor_subscribe_add', uri_path: '/actor/subscribe/{object_id<\d+>}', target: [SubscribersController::class, 'subscribersAdd']);
|
$r->connect(id: 'actor_subscribe_add', uri_path: '/actor/subscribe/{object_id<\d+>}', target: [SubscribersController::class, 'subscribersAdd']);
|
||||||
$r->connect(id: 'actor_subscribe_remove', uri_path: '/actor/unsubscribe/{object_id<\d+>}', target: [SubscribersController::class, 'subscribersRemove']);
|
$r->connect(id: 'actor_subscribe_remove', uri_path: '/actor/unsubscribe/{object_id<\d+>}', target: [SubscribersController::class, 'subscribersRemove']);
|
||||||
$r->connect(id: 'actor_subscriptions_id', uri_path: '/actor/{id<\d+>}/subscriptions', target: [SubscriptionsController::class, 'subscriptionsByActorId']);
|
$r->connect(id: 'actor_subscriptions_id', uri_path: '/actor/{id<\d+>}/subscriptions', target: [SubscriptionsController::class, 'subscriptionsByActorId']);
|
||||||
$r->connect(id: 'actor_subscriptions_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/subscriptions', target: [SubscriptionsController::class, 'subscriptionsByActorNickname']);
|
|
||||||
$r->connect(id: 'actor_subscribers_id', uri_path: '/actor/{id<\d+>}/subscribers', target: [SubscribersController::class, 'subscribersByActorId']);
|
$r->connect(id: 'actor_subscribers_id', uri_path: '/actor/{id<\d+>}/subscribers', target: [SubscribersController::class, 'subscribersByActorId']);
|
||||||
$r->connect(id: 'actor_subscribers_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}/subscribers', target: [SubscribersController::class, 'subscribersByActorNickname']);
|
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -185,8 +185,12 @@ class ActivityPub extends Plugin
|
||||||
return Event::next;
|
return Event::next;
|
||||||
}
|
}
|
||||||
switch ($route) {
|
switch ($route) {
|
||||||
case 'actor_view_id':
|
case 'person_actor_view_id':
|
||||||
case 'actor_view_nickname':
|
case 'person_actor_view_nickname':
|
||||||
|
case 'group_actor_view_id':
|
||||||
|
case 'group_actor_view_nickname':
|
||||||
|
case 'bot_actor_view_id':
|
||||||
|
case 'bot_actor_view_nickname':
|
||||||
$response = ActorResponse::handle($vars['actor']);
|
$response = ActorResponse::handle($vars['actor']);
|
||||||
break;
|
break;
|
||||||
case 'note_view':
|
case 'note_view':
|
||||||
|
|
|
@ -45,6 +45,7 @@ use App\Util\Exception\ServerException;
|
||||||
use App\Util\Formatting;
|
use App\Util\Formatting;
|
||||||
use App\Util\TemporaryFile;
|
use App\Util\TemporaryFile;
|
||||||
use Component\Avatar\Avatar;
|
use Component\Avatar\Avatar;
|
||||||
|
use Component\Group\Entity\LocalGroup;
|
||||||
use DateTime;
|
use DateTime;
|
||||||
use DateTimeInterface;
|
use DateTimeInterface;
|
||||||
use Exception;
|
use Exception;
|
||||||
|
@ -198,7 +199,7 @@ class Actor extends Model
|
||||||
$uri = $object->getUri(Router::ABSOLUTE_URL);
|
$uri = $object->getUri(Router::ABSOLUTE_URL);
|
||||||
$attr = [
|
$attr = [
|
||||||
'@context' => 'https://www.w3.org/ns/activitystreams',
|
'@context' => 'https://www.w3.org/ns/activitystreams',
|
||||||
'type' => self::$_gs_actor_type_to_as2_actor_type[$object->getType()],
|
'type' => ($object->getType() === GSActor::GROUP) ? (LocalGroup::getByPK(['actor_id' => $object->getId()])->getType() === 'organisation' ? 'Organization' : 'Group'): self::$_gs_actor_type_to_as2_actor_type[$object->getType()],
|
||||||
'id' => $uri,
|
'id' => $uri,
|
||||||
'inbox' => Router::url('activitypub_actor_inbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
'inbox' => Router::url('activitypub_actor_inbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
||||||
'outbox' => Router::url('activitypub_actor_outbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
'outbox' => Router::url('activitypub_actor_outbox', ['gsactor_id' => $object->getId()], Router::ABSOLUTE_URL),
|
||||||
|
|
|
@ -23,36 +23,23 @@ declare(strict_types = 1);
|
||||||
|
|
||||||
namespace App\Controller;
|
namespace App\Controller;
|
||||||
|
|
||||||
use App\Entity as E;
|
use App\Core\Router\Router;
|
||||||
use Component\Collection\Util\ActorControllerTrait;
|
use App\Entity\Actor;
|
||||||
use Component\Collection\Util\Controller\FeedController;
|
use Component\Collection\Util\Controller\FeedController;
|
||||||
|
use InvalidArgumentException;
|
||||||
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
|
|
||||||
class ActorFeed extends FeedController
|
class ActorFeed extends FeedController
|
||||||
{
|
{
|
||||||
use ActorControllerTrait;
|
public function actorViewId(Request $request, int $id): RedirectResponse
|
||||||
public function actorViewId(Request $request, int $id)
|
|
||||||
{
|
{
|
||||||
return $this->handleActorById(
|
$route_id = match (Actor::getById($id)->getType()) {
|
||||||
$id,
|
Actor::PERSON => 'person_actor_view_id',
|
||||||
fn ($actor) => [
|
Actor::GROUP => 'group_actor_view_id',
|
||||||
'_template' => 'actor/view.html.twig',
|
Actor::BOT => 'bot_actor_view_id',
|
||||||
'actor' => $actor,
|
default => throw new InvalidArgumentException(),
|
||||||
'nickname' => $actor->getNickname(),
|
};
|
||||||
],
|
return new RedirectResponse(Router::url($route_id, ['id' => $id]), status: 302);
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function actorViewNickname(Request $request, string $nickname)
|
|
||||||
{
|
|
||||||
return $this->handleActorByNickname(
|
|
||||||
$nickname,
|
|
||||||
fn ($actor) => [
|
|
||||||
'_template' => 'actor/view.html.twig',
|
|
||||||
'actor' => $actor,
|
|
||||||
'nickname' => $actor->getNickname(),
|
|
||||||
'notes' => E\Note::getAllNotesByActor($actor),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -366,21 +366,13 @@ class Actor extends Entity
|
||||||
|
|
||||||
public function getSubscriptionsUrl(): string
|
public function getSubscriptionsUrl(): string
|
||||||
{
|
{
|
||||||
if ($this->getIsLocal()) {
|
|
||||||
return Router::url('actor_subscriptions_nickname', ['nickname' => $this->getNickname()]);
|
|
||||||
} else {
|
|
||||||
return Router::url('actor_subscriptions_id', ['id' => $this->getId()]);
|
return Router::url('actor_subscriptions_id', ['id' => $this->getId()]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public function getSubscribersUrl(): string
|
public function getSubscribersUrl(): string
|
||||||
{
|
{
|
||||||
if ($this->getIsLocal()) {
|
|
||||||
return Router::url('actor_subscribers_nickname', ['nickname' => $this->getNickname()]);
|
|
||||||
} else {
|
|
||||||
return Router::url('actor_subscribers_id', ['id' => $this->getId()]);
|
return Router::url('actor_subscribers_id', ['id' => $this->getId()]);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Resolve an ambiguous nickname reference, checking in following order:
|
* Resolve an ambiguous nickname reference, checking in following order:
|
||||||
|
@ -445,7 +437,7 @@ class Actor extends Entity
|
||||||
$url = null;
|
$url = null;
|
||||||
if (Event::handle('StartGetActorUrl', [$this, $type, &$url]) === Event::next) {
|
if (Event::handle('StartGetActorUrl', [$this, $type, &$url]) === Event::next) {
|
||||||
$url = match ($this->type) {
|
$url = match ($this->type) {
|
||||||
self::PERSON, self::BOT => Router::url('actor_view_nickname', ['nickname' => mb_strtolower($this->getNickname())], $type),
|
self::PERSON, self::BOT => Router::url('person_actor_view_nickname', ['nickname' => mb_strtolower($this->getNickname())], $type),
|
||||||
self::GROUP => Router::url('group_actor_view_nickname', ['nickname' => $this->getNickname()], $type),
|
self::GROUP => Router::url('group_actor_view_nickname', ['nickname' => $this->getNickname()], $type),
|
||||||
default => throw new BugFoundException('Actor type added but `Actor::getUrl` was not updated'),
|
default => throw new BugFoundException('Actor type added but `Actor::getUrl` was not updated'),
|
||||||
};
|
};
|
||||||
|
|
|
@ -293,7 +293,6 @@ class Note extends Entity
|
||||||
|
|
||||||
public static function getAllNotesByActor(Actor $actor): array
|
public static function getAllNotesByActor(Actor $actor): array
|
||||||
{
|
{
|
||||||
// TODO: Enforce scoping on the notes before returning
|
|
||||||
return DB::findBy('note', ['actor_id' => $actor->getId()], order_by: ['created' => 'DESC', 'id' => 'DESC']);
|
return DB::findBy('note', ['actor_id' => $actor->getId()], order_by: ['created' => 'DESC', 'id' => 'DESC']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,96 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
// {{{ License
|
|
||||||
// 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/>.
|
|
||||||
// }}}
|
|
||||||
|
|
||||||
namespace App\Entity;
|
|
||||||
|
|
||||||
use App\Core\Entity;
|
|
||||||
use DateTimeInterface;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Entity for related groups
|
|
||||||
*
|
|
||||||
* @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@hsal.es>
|
|
||||||
* @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org
|
|
||||||
* @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later
|
|
||||||
*/
|
|
||||||
class RelatedGroup extends Entity
|
|
||||||
{
|
|
||||||
// {{{ Autocode
|
|
||||||
// @codeCoverageIgnoreStart
|
|
||||||
private int $group_id;
|
|
||||||
private int $related_group_id;
|
|
||||||
private \DateTimeInterface $created;
|
|
||||||
|
|
||||||
public function setGroupId(int $group_id): self
|
|
||||||
{
|
|
||||||
$this->group_id = $group_id;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getGroupId(): int
|
|
||||||
{
|
|
||||||
return $this->group_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setRelatedGroupId(int $related_group_id): self
|
|
||||||
{
|
|
||||||
$this->related_group_id = $related_group_id;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getRelatedGroupId(): int
|
|
||||||
{
|
|
||||||
return $this->related_group_id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setCreated(\DateTimeInterface $created): self
|
|
||||||
{
|
|
||||||
$this->created = $created;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function getCreated(): \DateTimeInterface
|
|
||||||
{
|
|
||||||
return $this->created;
|
|
||||||
}
|
|
||||||
|
|
||||||
// @codeCoverageIgnoreEnd
|
|
||||||
// }}} Autocode
|
|
||||||
|
|
||||||
public static function schemaDef(): array
|
|
||||||
{
|
|
||||||
return [
|
|
||||||
'name' => 'related_group',
|
|
||||||
// @fixme description for related_group?
|
|
||||||
'fields' => [
|
|
||||||
'group_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'foreign key to group'],
|
|
||||||
'related_group_id' => ['type' => 'int', 'foreign key' => true, 'target' => 'Group.id', 'multiplicity' => 'one to one', 'not null' => true, 'description' => 'foreign key to group'],
|
|
||||||
'created' => ['type' => 'datetime', 'not null' => true, 'default' => 'CURRENT_TIMESTAMP', 'description' => 'date this record was created'],
|
|
||||||
],
|
|
||||||
'primary key' => ['group_id', 'related_group_id'],
|
|
||||||
];
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -37,7 +37,6 @@ namespace App\Routes;
|
||||||
|
|
||||||
use App\Controller as C;
|
use App\Controller as C;
|
||||||
use App\Core\Router\RouteLoader;
|
use App\Core\Router\RouteLoader;
|
||||||
use App\Util\Nickname;
|
|
||||||
|
|
||||||
abstract class Actor
|
abstract class Actor
|
||||||
{
|
{
|
||||||
|
@ -46,6 +45,5 @@ abstract class Actor
|
||||||
public static function load(RouteLoader $r): void
|
public static function load(RouteLoader $r): void
|
||||||
{
|
{
|
||||||
$r->connect(id: 'actor_view_id', uri_path: '/actor/{id<\d+>}', target: [C\ActorFeed::class, 'actorViewId']);
|
$r->connect(id: 'actor_view_id', uri_path: '/actor/{id<\d+>}', target: [C\ActorFeed::class, 'actorViewId']);
|
||||||
$r->connect(id: 'actor_view_nickname', uri_path: '/@{nickname<' . Nickname::DISPLAY_FMT . '>}', target: [C\ActorFeed::class, 'actorViewNickname'], options: ['is_system_path' => false]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -69,7 +69,5 @@ abstract class Main
|
||||||
foreach (['privacy', 'tos', 'version', 'source'] as $s) {
|
foreach (['privacy', 'tos', 'version', 'source'] as $s) {
|
||||||
$r->connect('doc_' . $s, '/doc/' . $s, C\TemplateController::class, ['template' => 'doc/' . $s . '.html.twig']);
|
$r->connect('doc_' . $s, '/doc/' . $s, C\TemplateController::class, ['template' => 'doc/' . $s . '.html.twig']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$r->connect('settings', '/settings', [C\UserPanel::class, 'allSettings']);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,7 +58,7 @@
|
||||||
|
|
||||||
{% block profile_current_actor %}
|
{% block profile_current_actor %}
|
||||||
<nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}">
|
<nav tabindex="0" class="profile-navigation" title="{{ 'Navigate through account related pages.' | trans }}">
|
||||||
<a title='{{ 'Access your account settings.' | trans }}' href="{{ path('settings') }}" class='{{ active('settings') }}'>
|
<a title='{{ 'Access your account settings.' | trans }}' href="{{ path('person_actor_settings', {id: app.user.getId()}) }}" class='{{ active('settings') }}'>
|
||||||
{% trans %}Settings{% endtrans %}
|
{% trans %}Settings{% endtrans %}
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
|
|
|
@ -33,8 +33,8 @@ class UserPanelTest extends GNUsocialTestCase
|
||||||
use AssertThrows;
|
use AssertThrows;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \App\Controller\UserPanel::allSettings
|
* @covers \App\Controller\PersonSettings::allSettings
|
||||||
* @covers \App\Controller\UserPanel::personalInfo
|
* @covers \App\Controller\PersonSettings::personalInfo
|
||||||
*/
|
*/
|
||||||
public function testPersonalInfo()
|
public function testPersonalInfo()
|
||||||
{
|
{
|
||||||
|
@ -66,8 +66,8 @@ class UserPanelTest extends GNUsocialTestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \App\Controller\UserPanel::account
|
* @covers \App\Controller\PersonSettings::account
|
||||||
* @covers \App\Controller\UserPanel::allSettings
|
* @covers \App\Controller\PersonSettings::allSettings
|
||||||
*/
|
*/
|
||||||
public function testAccount()
|
public function testAccount()
|
||||||
{
|
{
|
||||||
|
@ -94,8 +94,8 @@ class UserPanelTest extends GNUsocialTestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \App\Controller\UserPanel::account
|
* @covers \App\Controller\PersonSettings::account
|
||||||
* @covers \App\Controller\UserPanel::allSettings
|
* @covers \App\Controller\PersonSettings::allSettings
|
||||||
*/
|
*/
|
||||||
public function testAccountWrongPassword()
|
public function testAccountWrongPassword()
|
||||||
{
|
{
|
||||||
|
@ -115,8 +115,8 @@ class UserPanelTest extends GNUsocialTestCase
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \App\Controller\UserPanel::allSettings
|
* @covers \App\Controller\PersonSettings::allSettings
|
||||||
* @covers \App\Controller\UserPanel::notifications
|
* @covers \App\Controller\PersonSettings::notifications
|
||||||
*/
|
*/
|
||||||
public function testNotifications()
|
public function testNotifications()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue
Block a user