]> git.mxchange.org Git - friendica.git/blob - src/Module/Directory.php
Merge pull request #10627 from annando/like-announce
[friendica.git] / src / Module / Directory.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
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\Nav;
26 use Friendica\Content\Pager;
27 use Friendica\Content\Widget;
28 use Friendica\Core\Hook;
29 use Friendica\Core\Session;
30 use Friendica\Core\Renderer;
31 use Friendica\DI;
32 use Friendica\Model;
33 use Friendica\Model\Profile;
34 use Friendica\Network\HTTPException;
35 use Friendica\Util\Strings;
36
37 /**
38  * Shows the local directory of this node
39  */
40 class Directory extends BaseModule
41 {
42         public static function content(array $parameters = [])
43         {
44                 $app = DI::app();
45                 $config = DI::config();
46
47                 if (($config->get('system', 'block_public') && !Session::isAuthenticated()) ||
48                         ($config->get('system', 'block_local_dir') && !Session::isAuthenticated())) {
49                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
50                 }
51
52                 if (local_user()) {
53                         DI::page()['aside'] .= Widget::findPeople();
54                         DI::page()['aside'] .= Widget::follow();
55                 }
56
57                 $output = '';
58                 $entries = [];
59
60                 Nav::setSelected('directory');
61
62                 $search = (!empty($_REQUEST['search']) ?
63                         Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) :
64                         '');
65
66                 $gDirPath = '';
67                 $dirURL = $config->get('system', 'directory');
68                 if (strlen($dirURL)) {
69                         $gDirPath = Profile::zrl($dirURL, true);
70                 }
71
72                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 60);
73
74                 $profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
75
76                 if ($profiles['total'] === 0) {
77                         notice(DI::l10n()->t('No entries (some entries may be hidden).'));
78                 } else {
79                         foreach ($profiles['entries'] as $entry) {
80                                 $contact = Model\Contact::getByURLForUser($entry['url'], local_user());
81                                 if (!empty($contact)) {
82                                         $entries[] = Contact::getContactTemplateVars($contact);
83                                 }
84                         }
85                 }
86
87                 $tpl = Renderer::getMarkupTemplate('directory_header.tpl');
88
89                 $output .= Renderer::replaceMacros($tpl, [
90                         '$search'     => $search,
91                         '$globaldir'  => DI::l10n()->t('Global Directory'),
92                         '$gDirPath'   => $gDirPath,
93                         '$desc'       => DI::l10n()->t('Find on this site'),
94                         '$contacts'   => $entries,
95                         '$finding'    => DI::l10n()->t('Results for:'),
96                         '$findterm'   => (strlen($search) ? $search : ""),
97                         '$title'      => DI::l10n()->t('Site Directory'),
98                         '$search_mod' => 'directory',
99                         '$submit'     => DI::l10n()->t('Find'),
100                         '$paginate'   => $pager->renderFull($profiles['total']),
101                 ]);
102
103                 return $output;
104         }
105
106         /**
107          * Format contact/profile/user data from the database into an usable
108          * array for displaying directory entries.
109          *
110          * @param array  $contact    The directory entry from the database.
111          * @param string $photo_size Avatar size (thumb, photo or micro).
112          *
113          * @return array
114          *
115          * @throws \Exception
116          */
117         public static function formatEntry(array $contact, $photo_size = 'photo')
118         {
119                 $itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['url']);
120
121                 $profile_link = $contact['url'];
122
123                 $about = (($contact['about']) ? $contact['about'] . '<br />' : '');
124
125                 $details = '';
126                 if (strlen($contact['locality'])) {
127                         $details .= $contact['locality'];
128                 }
129                 if (strlen($contact['region'])) {
130                         if (strlen($contact['locality'])) {
131                                 $details .= ', ';
132                         }
133                         $details .= $contact['region'];
134                 }
135                 if (strlen($contact['country-name'])) {
136                         if (strlen($details)) {
137                                 $details .= ', ';
138                         }
139                         $details .= $contact['country-name'];
140                 }
141
142                 $profile = $contact;
143
144                 if (!empty($profile['address'])
145                         || !empty($profile['locality'])
146                         || !empty($profile['region'])
147                         || !empty($profile['postal-code'])
148                         || !empty($profile['country-name'])
149                 ) {
150                         $location = DI::l10n()->t('Location:');
151                 } else {
152                         $location = '';
153                 }
154
155                 $homepage = (!empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false);
156
157                 $location_e = $location;
158
159                 $photo_menu = [
160                         'profile' => [DI::l10n()->t("View Profile"), Model\Contact::magicLink($profile_link)]
161                 ];
162
163                 $entry = [
164                         'id'           => $contact['id'],
165                         'url'          => Model\Contact::magicLink($profile_link),
166                         'itemurl'      => $itemurl,
167                         'thumb'        => Model\Contact::getThumb($contact),
168                         'img_hover'    => $contact['name'],
169                         'name'         => $contact['name'],
170                         'details'      => $details,
171                         'account_type' => Model\Contact::getAccountType($contact),
172                         'profile'      => $profile,
173                         'location'     => $location_e,
174                         'tags'         => $contact['pub_keywords'],
175                         'about'        => $about,
176                         'homepage'     => $homepage,
177                         'photo_menu'   => $photo_menu,
178
179                 ];
180
181                 $hook = ['contact' => $contact, 'entry' => $entry];
182
183                 Hook::callAll('directory_item', $hook);
184
185                 unset($profile);
186                 unset($location);
187
188                 return $hook['entry'];
189         }
190 }