]> git.mxchange.org Git - friendica.git/blob - src/Module/AllFriends.php
Merge pull request #8939 from MrPetovan/task/8906-frio-viewas-redesign
[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                         //get further details of the contact
81                         $contactDetails = Model\Contact::getByURLForUser($friend['url'], $uid) ?: $friend;
82
83                         $connlnk = '';
84                         // $friend[cid] is only available for common contacts. So if the contact is a common one, use contact_photo_menu to generate the photoMenu
85                         // If the contact is not common to the user, Connect/Follow' will be added to the photo menu
86                         if ($friend['cid']) {
87                                 $friend['id'] = $friend['cid'];
88                                 $photoMenu = Model\Contact::photoMenu($friend);
89                         } else {
90                                 $connlnk = DI::baseUrl()->get() . '/follow/?url=' . $friend['url'];
91                                 $photoMenu = [
92                                         'profile' => [DI::l10n()->t('View Profile'), Model\Contact::magicLinkbyId($friend['id'], $friend['url'])],
93                                         'follow'  => [DI::l10n()->t('Connect/Follow'), $connlnk]
94                                 ];
95                         }
96
97                         $entry = [
98                                 'url'          => Model\Contact::magicLinkbyId($friend['id'], $friend['url']),
99                                 'itemurl'      => ($contactDetails['addr'] ?? '') ?: $friend['url'],
100                                 'name'         => $contactDetails['name'],
101                                 'thumb'        => Model\Contact::getThumb($contactDetails),
102                                 'img_hover'    => $contactDetails['name'],
103                                 'details'      => $contactDetails['location'],
104                                 'tags'         => $contactDetails['keywords'],
105                                 'about'        => $contactDetails['about'],
106                                 'account_type' => Model\Contact::getAccountType($contactDetails),
107                                 'network'      => ContactSelector::networkToName($contactDetails['network'], $contactDetails['url']),
108                                 'photoMenu'    => $photoMenu,
109                                 'conntxt'      => DI::l10n()->t('Connect'),
110                                 'connlnk'      => $connlnk,
111                                 'id'           => ++$id,
112                         ];
113                         $entries[] = $entry;
114                 }
115
116                 $tab_str = Contact::getTabsHTML($app, $contact, 4);
117
118                 $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
119                 return Renderer::replaceMacros($tpl, [
120                         '$tab_str'  => $tab_str,
121                         '$contacts' => $entries,
122                         '$paginate' => $pager->renderFull($total),
123                 ]);
124         }
125 }