]> git.mxchange.org Git - friendica.git/blob - src/Module/AllFriends.php
Removed unused parameter
[friendica.git] / src / Module / AllFriends.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
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.
11  *
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.
16  *
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/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Content\Pager;
26 use Friendica\Core\Renderer;
27 use Friendica\DI;
28 use Friendica\Model;
29 use Friendica\Network\HTTPException;
30
31 /**
32  * This module shows all public friends of the selected contact
33  */
34 class AllFriends extends BaseModule
35 {
36         public static function content(array $parameters = [])
37         {
38                 $app = DI::app();
39
40                 if (!local_user()) {
41                         throw new HTTPException\ForbiddenException();
42                 }
43
44                 $cid = 0;
45
46                 // @TODO: Replace with parameter from router
47                 if ($app->argc > 1) {
48                         $cid = intval($app->argv[1]);
49                 }
50
51                 if (!$cid) {
52                         throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
53                 }
54
55                 $uid = $app->user['uid'];
56
57                 $contact = Model\Contact::getById($cid, []);
58
59                 if (empty($contact)) {
60                         throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
61                 }
62
63                 DI::page()['aside'] = "";
64                 Model\Profile::load($app, "", $contact);
65
66                 $total = Model\Contact\Relation::countFollows($cid);
67
68                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
69
70                 $friends = Model\Contact\Relation::listFollows($cid, [], [], $pager->getItemsPerPage(), $pager->getStart());
71                 if (empty($friends)) {
72                         return DI::l10n()->t('No friends to display.');
73                 }
74
75                 $tab_str = Contact::getTabsHTML($app, $contact, 4);
76
77                 $entries = [];
78                 foreach ($friends as $friend) {
79                         $entries[] = Contact::getContactTemplateVars($friend);
80                 }
81
82                 $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
83                 return Renderer::replaceMacros($tpl, [
84                         '$tab_str'  => $tab_str,
85                         '$contacts' => $entries,
86                         '$paginate' => $pager->renderFull($total),
87                 ]);
88         }
89 }