]> git.mxchange.org Git - friendica.git/blob - src/Module/AllFriends.php
Use a single function to create the template data for contacts
[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\ContactSelector;
26 use Friendica\Content\Pager;
27 use Friendica\Core\Renderer;
28 use Friendica\DI;
29 use Friendica\Model;
30 use Friendica\Network\HTTPException;
31
32 /**
33  * This module shows all public friends of the selected contact
34  */
35 class AllFriends extends BaseModule
36 {
37         public static function content(array $parameters = [])
38         {
39                 $app = DI::app();
40
41                 if (!local_user()) {
42                         throw new HTTPException\ForbiddenException();
43                 }
44
45                 $cid = 0;
46
47                 // @TODO: Replace with parameter from router
48                 if ($app->argc > 1) {
49                         $cid = intval($app->argv[1]);
50                 }
51
52                 if (!$cid) {
53                         throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
54                 }
55
56                 $uid = $app->user['uid'];
57
58                 $contact = Model\Contact::getContactForUser($cid, local_user(), ['name', 'url', 'photo', 'uid', 'id']);
59
60                 if (empty($contact)) {
61                         throw new HTTPException\BadRequestException(DI::l10n()->t('Invalid contact.'));
62                 }
63
64                 DI::page()['aside'] = "";
65                 Model\Profile::load($app, "", Model\Contact::getByURL($contact["url"], false));
66
67                 $total = Model\GContact::countAllFriends(local_user(), $cid);
68
69                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString());
70
71                 $friends = Model\GContact::allFriends(local_user(), $cid, $pager->getStart(), $pager->getItemsPerPage());
72                 if (empty($friends)) {
73                         return DI::l10n()->t('No friends to display.');
74                 }
75
76                 $id = 0;
77
78                 $entries = [];
79                 foreach ($friends as $friend) {
80                         $contact = Model\Contact::getByURL($friend['url']);
81                         if (!empty($contact)) {
82                                 $entries[] = Model\Contact::getTemplateData($contact, ++$id);
83                         }
84                 }
85
86                 $tab_str = Contact::getTabsHTML($app, $contact, 4);
87
88                 $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
89                 return Renderer::replaceMacros($tpl, [
90                         '$tab_str'  => $tab_str,
91                         '$contacts' => $entries,
92                         '$paginate' => $pager->renderFull($total),
93                 ]);
94         }
95 }