3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Module;
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;
33 use Friendica\Model\Profile;
34 use Friendica\Network\HTTPException;
35 use Friendica\Util\Strings;
38 * Shows the local directory of this node
40 class Directory extends BaseModule
42 public static function content(array $parameters = [])
45 $config = DI::config();
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.'));
53 DI::page()['aside'] .= Widget::findPeople();
54 DI::page()['aside'] .= Widget::follow();
60 Nav::setSelected('directory');
62 $search = (!empty($_REQUEST['search']) ?
63 Strings::escapeTags(trim(rawurldecode($_REQUEST['search']))) :
67 $dirURL = $config->get('system', 'directory');
68 if (strlen($dirURL)) {
69 $gDirPath = Profile::zrl($dirURL, true);
72 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), 60);
74 $profiles = Profile::searchProfiles($pager->getStart(), $pager->getItemsPerPage(), $search);
76 if ($profiles['total'] === 0) {
77 notice(DI::l10n()->t('No entries (some entries may be hidden).'));
79 if (in_array('small', $app->argv)) {
85 foreach ($profiles['entries'] as $entry) {
86 $contact = Model\Contact::getByURLForUser($entry['url'], local_user());
87 if (!empty($contact)) {
88 $entries[] = Contact::getContactTemplateVars($contact);
93 $tpl = Renderer::getMarkupTemplate('directory_header.tpl');
95 $output .= Renderer::replaceMacros($tpl, [
97 '$globaldir' => DI::l10n()->t('Global Directory'),
98 '$gDirPath' => $gDirPath,
99 '$desc' => DI::l10n()->t('Find on this site'),
100 '$contacts' => $entries,
101 '$finding' => DI::l10n()->t('Results for:'),
102 '$findterm' => (strlen($search) ? $search : ""),
103 '$title' => DI::l10n()->t('Site Directory'),
104 '$search_mod' => 'directory',
105 '$submit' => DI::l10n()->t('Find'),
106 '$paginate' => $pager->renderFull($profiles['total']),
113 * Format contact/profile/user data from the database into an usable
114 * array for displaying directory entries.
116 * @param array $contact The directory entry from the database.
117 * @param string $photo_size Avatar size (thumb, photo or micro).
123 public static function formatEntry(array $contact, $photo_size = 'photo')
125 $itemurl = (($contact['addr'] != "") ? $contact['addr'] : $contact['url']);
127 $profile_link = $contact['url'];
129 $about = (($contact['about']) ? $contact['about'] . '<br />' : '');
132 if (strlen($contact['locality'])) {
133 $details .= $contact['locality'];
135 if (strlen($contact['region'])) {
136 if (strlen($contact['locality'])) {
139 $details .= $contact['region'];
141 if (strlen($contact['country-name'])) {
142 if (strlen($details)) {
145 $details .= $contact['country-name'];
150 if (!empty($profile['address'])
151 || !empty($profile['locality'])
152 || !empty($profile['region'])
153 || !empty($profile['postal-code'])
154 || !empty($profile['country-name'])
156 $location = DI::l10n()->t('Location:');
161 $homepage = (!empty($profile['homepage']) ? DI::l10n()->t('Homepage:') : false);
163 $location_e = $location;
166 'profile' => [DI::l10n()->t("View Profile"), Model\Contact::magicLink($profile_link)]
170 'id' => $contact['id'],
171 'url' => Model\Contact::magicLink($profile_link),
172 'itemurl' => $itemurl,
173 'thumb' => Model\Contact::getThumb($contact),
174 'img_hover' => $contact['name'],
175 'name' => $contact['name'],
176 'details' => $details,
177 'account_type' => Model\Contact::getAccountType($contact),
178 'profile' => $profile,
179 'location' => $location_e,
180 'tags' => $contact['pub_keywords'],
182 'homepage' => $homepage,
183 'photo_menu' => $photo_menu,
187 $hook = ['contact' => $contact, 'entry' => $entry];
189 Hook::callAll('directory_item', $hook);
194 return $hook['entry'];