]> git.mxchange.org Git - friendica.git/blob - src/Content/Nav.php
Replace deprecated Addon::callHooks with Hook::callAll
[friendica.git] / src / Content / Nav.php
1 <?php
2 /**
3  * @file src/Content/Nav.php
4  */
5 namespace Friendica\Content;
6
7 use Friendica\App;
8 use Friendica\Core\Config;
9 use Friendica\Core\Hook;
10 use Friendica\Core\L10n;
11 use Friendica\Core\Renderer;
12 use Friendica\Core\System;
13 use Friendica\Database\DBA;
14 use Friendica\Model\Contact;
15 use Friendica\Model\Profile;
16
17 class Nav
18 {
19         private static $selected = [
20                 'global'    => null,
21                 'community' => null,
22                 'network'   => null,
23                 'home'      => null,
24                 'profiles'  => null,
25                 'introductions' => null,
26                 'notifications' => null,
27                 'messages'  => null,
28                 'directory' => null,
29                 'settings'  => null,
30                 'contacts'  => null,
31                 'manage'    => null,
32                 'events'    => null,
33                 'register'  => null
34         ];
35
36         /**
37          * An array of HTML links provided by addons providing a module via the app_menu hook
38          *
39          * @var array
40          */
41         private static $app_menu = null;
42
43         /**
44          * Set a menu item in navbar as selected
45          */
46         public static function setSelected($item)
47         {
48                 self::$selected[$item] = 'selected';
49         }
50
51         /**
52          * Build page header and site navigation bars
53          */
54         public static function build(App $a)
55         {
56                 // Placeholder div for popup panel
57                 $nav = '<div id="panel" style="display: none;"></div>';
58
59                 $nav_info = self::getInfo($a);
60
61                 $tpl = Renderer::getMarkupTemplate('nav.tpl');
62
63                 $nav .= Renderer::replaceMacros($tpl, [
64                         '$baseurl'      => System::baseUrl(),
65                         '$sitelocation' => $nav_info['sitelocation'],
66                         '$nav'          => $nav_info['nav'],
67                         '$banner'       => $nav_info['banner'],
68                         '$emptynotifications' => L10n::t('Nothing new here'),
69                         '$userinfo'     => $nav_info['userinfo'],
70                         '$sel'          => self::$selected,
71                         '$apps'         => self::getAppMenu(),
72                         '$clear_notifs' => L10n::t('Clear notifications'),
73                         '$search_hint'  => L10n::t('@name, !forum, #tags, content')
74                 ]);
75
76                 Hook::callAll('page_header', $nav);
77
78                 return $nav;
79         }
80
81         /**
82          * Returns the addon app menu
83          *
84          * @return array
85          */
86         public static function getAppMenu()
87         {
88                 if (is_null(self::$app_menu)) {
89                         self::populateAppMenu();
90                 }
91
92                 return self::$app_menu;
93         }
94
95         /**
96          * Fills the apps static variable with apps that require a menu
97          */
98         private static function populateAppMenu()
99         {
100                 self::$app_menu = [];
101
102                 //Don't populate apps_menu if apps are private
103                 $privateapps = Config::get('config', 'private_addons', false);
104                 if (local_user() || !$privateapps) {
105                         $arr = ['app_menu' => self::$app_menu];
106
107                         Hook::callAll('app_menu', $arr);
108
109                         self::$app_menu = $arr['app_menu'];
110                 }
111         }
112
113         /**
114          * Prepares a list of navigation links
115          *
116          * @brief Prepares a list of navigation links
117          * @param App $a
118          * @return array Navigation links
119          *      string 'sitelocation' => The webbie (username@site.com)
120          *      array 'nav' => Array of links used in the nav menu
121          *      string 'banner' => Formatted html link with banner image
122          *      array 'userinfo' => Array of user information (name, icon)
123          */
124         private static function getInfo(App $a)
125         {
126                 $ssl_state = ((local_user()) ? true : false);
127
128                 /*
129                  * Our network is distributed, and as you visit friends some of the
130                  * sites look exactly the same - it isn't always easy to know where you are.
131                  * Display the current site location as a navigation aid.
132                  */
133
134                 $myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : '');
135
136                 $sitelocation = $myident . substr(System::baseUrl($ssl_state), strpos(System::baseUrl($ssl_state), '//') + 2);
137
138                 // nav links: array of array('href', 'text', 'extra css classes', 'title')
139                 $nav = [];
140
141                 // Display login or logout
142                 $nav['usermenu'] = [];
143                 $userinfo = null;
144
145                 if (local_user()) {
146                         $nav['logout'] = ['logout', L10n::t('Logout'), '', L10n::t('End this session')];
147
148                         // user menu
149                         $nav['usermenu'][] = ['profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')];
150                         $nav['usermenu'][] = ['profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')];
151                         $nav['usermenu'][] = ['photos/' . $a->user['nickname'], L10n::t('Photos'), '', L10n::t('Your photos')];
152                         $nav['usermenu'][] = ['videos/' . $a->user['nickname'], L10n::t('Videos'), '', L10n::t('Your videos')];
153                         $nav['usermenu'][] = ['events/', L10n::t('Events'), '', L10n::t('Your events')];
154                         $nav['usermenu'][] = ['notes/', L10n::t('Personal notes'), '', L10n::t('Your personal notes')];
155
156                         // user info
157                         $contact = DBA::selectFirst('contact', ['micro'], ['uid' => $a->user['uid'], 'self' => true]);
158                         $userinfo = [
159                                 'icon' => (DBA::isResult($contact) ? $a->removeBaseURL($contact['micro']) : 'images/person-48.jpg'),
160                                 'name' => $a->user['username'],
161                         ];
162                 } else {
163                         $nav['login'] = ['login', L10n::t('Login'), ($a->module == 'login' ? 'selected' : ''), L10n::t('Sign in')];
164                 }
165
166                 // "Home" should also take you home from an authenticated remote profile connection
167                 $homelink = Profile::getMyURL();
168                 if (! $homelink) {
169                         $homelink = defaults($_SESSION, 'visitor_home', '');
170                 }
171
172                 if (($a->module != 'home') && (! (local_user()))) {
173                         $nav['home'] = [$homelink, L10n::t('Home'), '', L10n::t('Home Page')];
174                 }
175
176                 if (intval(Config::get('config', 'register_policy')) === REGISTER_OPEN && !local_user() && !remote_user()) {
177                         $nav['register'] = ['register', L10n::t('Register'), '', L10n::t('Create an account')];
178                 }
179
180                 $help_url = 'help';
181
182                 if (!Config::get('system', 'hide_help')) {
183                         $nav['help'] = [$help_url, L10n::t('Help'), '', L10n::t('Help and documentation')];
184                 }
185
186                 if (count(self::getAppMenu()) > 0) {
187                         $nav['apps'] = ['apps', L10n::t('Apps'), '', L10n::t('Addon applications, utilities, games')];
188                 }
189
190                 if (local_user() || !Config::get('system', 'local_search')) {
191                         $nav['search'] = ['search', L10n::t('Search'), '', L10n::t('Search site content')];
192
193                         $nav['searchoption'] = [
194                                 L10n::t('Full Text'),
195                                 L10n::t('Tags'),
196                                 L10n::t('Contacts')
197                         ];
198
199                         if (Config::get('system', 'poco_local_search')) {
200                                 $nav['searchoption'][] = L10n::t('Forums');
201                         }
202                 }
203
204                 $gdirpath = 'directory';
205
206                 if (strlen(Config::get('system', 'singleuser'))) {
207                         $gdir = Config::get('system', 'directory');
208                         if (strlen($gdir)) {
209                                 $gdirpath = Profile::zrl($gdir, true);
210                         }
211                 }
212
213                 if ((local_user() || Config::get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) &&
214                         !(Config::get('system', 'community_page_style') == CP_NO_INTERNAL_COMMUNITY)) {
215                         $nav['community'] = ['community', L10n::t('Community'), '', L10n::t('Conversations on this and other servers')];
216                 }
217
218                 if (local_user()) {
219                         $nav['events'] = ['events', L10n::t('Events'), '', L10n::t('Events and Calendar')];
220                 }
221
222                 $nav['directory'] = [$gdirpath, L10n::t('Directory'), '', L10n::t('People directory')];
223
224                 $nav['about'] = ['friendica', L10n::t('Information'), '', L10n::t('Information about this friendica instance')];
225
226                 if (Config::get('system', 'tosdisplay')) {
227                         $nav['tos'] = ['tos', L10n::t('Terms of Service'), '', L10n::t('Terms of Service of this Friendica instance')];
228                 }
229
230                 // The following nav links are only show to logged in users
231                 if (local_user()) {
232                         $nav['network'] = ['network', L10n::t('Network'), '', L10n::t('Conversations from your friends')];
233                         $nav['net_reset'] = ['network/?f=', L10n::t('Network Reset'), '', L10n::t('Load Network page with no filters')];
234
235                         $nav['home'] = ['profile/' . $a->user['nickname'], L10n::t('Home'), '', L10n::t('Your posts and conversations')];
236
237                         // Don't show notifications for public communities
238                         if (defaults($_SESSION, 'page_flags', '') != Contact::PAGE_COMMUNITY) {
239                                 $nav['introductions'] = ['notifications/intros', L10n::t('Introductions'), '', L10n::t('Friend Requests')];
240                                 $nav['notifications'] = ['notifications',       L10n::t('Notifications'), '', L10n::t('Notifications')];
241                                 $nav['notifications']['all'] = ['notifications/system', L10n::t('See all notifications'), '', ''];
242                                 $nav['notifications']['mark'] = ['', L10n::t('Mark as seen'), '', L10n::t('Mark all system notifications seen')];
243                         }
244
245                         $nav['messages'] = ['message', L10n::t('Messages'), '', L10n::t('Private mail')];
246                         $nav['messages']['inbox'] = ['message', L10n::t('Inbox'), '', L10n::t('Inbox')];
247                         $nav['messages']['outbox'] = ['message/sent', L10n::t('Outbox'), '', L10n::t('Outbox')];
248                         $nav['messages']['new'] = ['message/new', L10n::t('New Message'), '', L10n::t('New Message')];
249
250                         if (is_array($a->identities) && count($a->identities) > 1) {
251                                 $nav['manage'] = ['manage', L10n::t('Manage'), '', L10n::t('Manage other pages')];
252                         }
253
254                         $nav['delegations'] = ['delegate', L10n::t('Delegations'), '', L10n::t('Delegate Page Management')];
255
256                         $nav['settings'] = ['settings', L10n::t('Settings'), '', L10n::t('Account settings')];
257
258                         if (Feature::isEnabled(local_user(), 'multi_profiles')) {
259                                 $nav['profiles'] = ['profiles', L10n::t('Profiles'), '', L10n::t('Manage/Edit Profiles')];
260                         }
261
262                         $nav['contacts'] = ['contact', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')];
263                 }
264
265                 // Show the link to the admin configuration page if user is admin
266                 if (is_site_admin()) {
267                         $nav['admin'] = ['admin/', L10n::t('Admin'), '', L10n::t('Site setup and configuration')];
268                 }
269
270                 $nav['navigation'] = ['navigation/', L10n::t('Navigation'), '', L10n::t('Site map')];
271
272                 // Provide a banner/logo/whatever
273                 $banner = Config::get('system', 'banner');
274                 if (is_null($banner)) {
275                         $banner = '<a href="https://friendi.ca"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="https://friendi.ca">Friendica</a></span>';
276                 }
277
278                 Hook::callAll('nav_info', $nav);
279
280                 return [
281                         'sitelocation' => $sitelocation,
282                         'nav' => $nav,
283                         'banner' => $banner,
284                         'userinfo' => $userinfo,
285                 ];
286         }
287 }