3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Module;
24 use Friendica\BaseModule;
25 use Friendica\Core\Hook;
26 use Friendica\Core\Renderer;
27 use Friendica\Core\Session;
28 use Friendica\Database\DBA;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Notify\Type;
32 use Friendica\Model\User;
33 use Friendica\Network\HTTPException\ForbiddenException;
36 * Switches current user between delegates/parent user
38 class Delegation extends BaseModule
40 public static function post(array $parameters = [])
47 $orig_record = DI::app()->user;
49 if (Session::get('submanage')) {
50 $user = User::getById(Session::get('submanage'));
51 if (DBA::isResult($user)) {
52 $uid = intval($user['uid']);
57 $identity = intval($_POST['identity'] ?? 0);
65 $manages = DBA::selectToArray('manage', ['mid'], ['uid' => $uid]);
66 foreach ($manages as $manage) {
67 if ($identity == $manage['mid']) {
68 $limited_id = $manage['mid'];
74 $user = User::getById($limited_id);
76 // Check if the target user is one of our children
77 $user = DBA::selectFirst('user', [], ['uid' => $identity, 'parent-uid' => $orig_record['uid']]);
79 // Check if the target user is one of our siblings
80 if (!DBA::isResult($user) && ($orig_record['parent-uid'] != 0)) {
81 $user = DBA::selectFirst('user', [], ['uid' => $identity, 'parent-uid' => $orig_record['parent-uid']]);
84 // Check if it's our parent or our own user
85 if (!DBA::isResult($user)
87 $orig_record['parent-uid'] != 0 && $orig_record['parent-uid'] == $identity
89 $orig_record['uid'] != 0 && $orig_record['uid'] == $identity
92 $user = User::getById($identity);
96 if (!DBA::isResult($user)) {
102 DI::auth()->setForUser(DI::app(), $user, true, true);
105 Session::set('submanage', $original_id);
109 Hook::callAll('home_init', $ret);
111 DI::baseUrl()->redirect('profile/' . DI::app()->user['nickname']);
115 public static function content(array $parameters = [])
118 throw new ForbiddenException(DI::l10n()->t('Permission denied.'));
121 $identities = DI::app()->identities;
123 //getting additinal information for each identity
124 foreach ($identities as $key => $identity) {
125 $thumb = Contact::selectFirst(['thumb'], ['uid' => $identity['uid'], 'self' => true]);
126 if (!DBA::isResult($thumb)) {
130 $identities[$key]['thumb'] = $thumb['thumb'];
132 $identities[$key]['selected'] = ($identity['nickname'] === DI::app()->user['nickname']);
134 $condition = ["`uid` = ? AND `msg` != '' AND NOT (`type` IN (?, ?)) AND NOT `seen`", $identity['uid'], Type::INTRO, Type::MAIL];
135 $params = ['distinct' => true, 'expression' => 'parent'];
136 $notifications = DBA::count('notify', $condition, $params);
138 $params = ['distinct' => true, 'expression' => 'convid'];
139 $notifications += DBA::count('mail', ['uid' => $identity['uid'], 'seen' => false], $params);
141 $notifications += DBA::count('intro', ['blocked' => false, 'ignore' => false, 'uid' => $identity['uid']]);
143 $identities[$key]['notifications'] = $notifications;
146 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('delegation.tpl'), [
147 '$title' => DI::l10n()->t('Manage Identities and/or Pages'),
148 '$desc' => DI::l10n()->t('Toggle between different identities or community/group pages which share your account details or which you have been granted "manage" permissions'),
149 '$choose' => DI::l10n()->t('Select an identity to manage: '),
150 '$identities' => $identities,
151 '$submit' => DI::l10n()->t('Submit'),