]> git.mxchange.org Git - friendica.git/blob - AllFriends.php
68a4f304e658247e931ce1d585d88ccd5c3e99a6
[friendica.git] / 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::getContactForUser($cid, local_user(), ['name', 'url', 'photo', 'uid', 'id']);
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, "", Model\Contact::getByURL($contact["url"], false));
65
66                 $total = Model\GContact::countAllFriends(local_user(), $cid);
67
68                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
69
70                 $friends = Model\GContact::allFriends(local_user(), $cid, $pager->getStart(), $pager->getItemsPerPage());
71                 if (empty($friends)) {
72                         return DI::l10n()->t('No friends to display.');
73                 }
74
75                 $entries = [];
76                 foreach ($friends as $friend) {
77                         $contact = Model\Contact::getByURLForUser($friend['url'], local_user());
78                         if (!empty($contact)) {
79                                 $entries[] = Contact::getContactTemplateVars($contact);
80                         }
81                 }
82
83                 $tab_str = Contact::getTabsHTML($app, $contact, 4);
84
85                 $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
86                 return Renderer::replaceMacros($tpl, [
87                         '$tab_str'  => $tab_str,
88                         '$contacts' => $entries,
89                         '$paginate' => $pager->renderFull($total),
90                 ]);
91         }
92 }