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