2018-01-15 14:19:55 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Content/Nav.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Content;
|
|
|
|
|
|
|
|
use Friendica\App;
|
|
|
|
use Friendica\Core\Config;
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-22 09:54:13 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2019-05-26 16:15:38 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-01-15 14:19:55 -05:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-01-15 14:19:55 -05:00
|
|
|
use Friendica\Model\Profile;
|
2019-01-14 08:45:13 -05:00
|
|
|
use Friendica\Model\User;
|
2018-01-15 14:19:55 -05:00
|
|
|
|
|
|
|
class Nav
|
|
|
|
{
|
2018-10-22 14:44:55 -04:00
|
|
|
private static $selected = [
|
|
|
|
'global' => null,
|
|
|
|
'community' => null,
|
|
|
|
'network' => null,
|
|
|
|
'home' => null,
|
|
|
|
'profiles' => null,
|
|
|
|
'introductions' => null,
|
|
|
|
'notifications' => null,
|
|
|
|
'messages' => null,
|
|
|
|
'directory' => null,
|
|
|
|
'settings' => null,
|
|
|
|
'contacts' => null,
|
|
|
|
'manage' => null,
|
|
|
|
'events' => null,
|
|
|
|
'register' => null
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An array of HTML links provided by addons providing a module via the app_menu hook
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
private static $app_menu = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set a menu item in navbar as selected
|
2019-01-06 16:06:53 -05:00
|
|
|
*
|
|
|
|
* @param string $item
|
2018-10-22 14:44:55 -04:00
|
|
|
*/
|
|
|
|
public static function setSelected($item)
|
|
|
|
{
|
|
|
|
self::$selected[$item] = 'selected';
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:51:56 -05:00
|
|
|
/**
|
|
|
|
* Build page header and site navigation bars
|
2019-01-06 16:06:53 -05:00
|
|
|
*
|
|
|
|
* @param App $a
|
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 14:51:56 -05:00
|
|
|
*/
|
|
|
|
public static function build(App $a)
|
2018-01-15 14:19:55 -05:00
|
|
|
{
|
2018-10-22 14:44:55 -04:00
|
|
|
// Placeholder div for popup panel
|
2018-11-30 09:06:22 -05:00
|
|
|
$nav = '<div id="panel" style="display: none;"></div>';
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:51:56 -05:00
|
|
|
$nav_info = self::getInfo($a);
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('nav.tpl');
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$nav .= Renderer::replaceMacros($tpl, [
|
2018-01-15 17:42:12 -05:00
|
|
|
'$sitelocation' => $nav_info['sitelocation'],
|
2018-10-22 14:44:55 -04:00
|
|
|
'$nav' => $nav_info['nav'],
|
|
|
|
'$banner' => $nav_info['banner'],
|
2018-01-22 09:54:13 -05:00
|
|
|
'$emptynotifications' => L10n::t('Nothing new here'),
|
2018-10-22 14:44:55 -04:00
|
|
|
'$userinfo' => $nav_info['userinfo'],
|
|
|
|
'$sel' => self::$selected,
|
|
|
|
'$apps' => self::getAppMenu(),
|
2018-01-22 09:54:13 -05:00
|
|
|
'$clear_notifs' => L10n::t('Clear notifications'),
|
2018-10-22 14:44:55 -04:00
|
|
|
'$search_hint' => L10n::t('@name, !forum, #tags, content')
|
2018-01-15 17:12:39 -05:00
|
|
|
]);
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('page_header', $nav);
|
2018-10-22 14:44:55 -04:00
|
|
|
|
|
|
|
return $nav;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the addon app menu
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public static function getAppMenu()
|
|
|
|
{
|
|
|
|
if (is_null(self::$app_menu)) {
|
|
|
|
self::populateAppMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
return self::$app_menu;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fills the apps static variable with apps that require a menu
|
|
|
|
*/
|
|
|
|
private static function populateAppMenu()
|
|
|
|
{
|
|
|
|
self::$app_menu = [];
|
|
|
|
|
|
|
|
//Don't populate apps_menu if apps are private
|
|
|
|
$privateapps = Config::get('config', 'private_addons', false);
|
|
|
|
if (local_user() || !$privateapps) {
|
|
|
|
$arr = ['app_menu' => self::$app_menu];
|
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('app_menu', $arr);
|
2018-10-22 14:44:55 -04:00
|
|
|
|
|
|
|
self::$app_menu = $arr['app_menu'];
|
|
|
|
}
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
/**
|
2018-01-15 14:51:56 -05:00
|
|
|
* Prepares a list of navigation links
|
2018-01-15 14:19:55 -05:00
|
|
|
*
|
2018-01-15 14:51:56 -05:00
|
|
|
* @brief Prepares a list of navigation links
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param App $a
|
2018-01-15 14:19:55 -05:00
|
|
|
* @return array Navigation links
|
2019-01-06 16:06:53 -05:00
|
|
|
* string 'sitelocation' => The webbie (username@site.com)
|
|
|
|
* array 'nav' => Array of links used in the nav menu
|
|
|
|
* string 'banner' => Formatted html link with banner image
|
|
|
|
* array 'userinfo' => Array of user information (name, icon)
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 14:19:55 -05:00
|
|
|
*/
|
2018-01-15 14:51:56 -05:00
|
|
|
private static function getInfo(App $a)
|
2018-01-15 14:19:55 -05:00
|
|
|
{
|
|
|
|
$ssl_state = ((local_user()) ? true : false);
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
/*
|
|
|
|
* Our network is distributed, and as you visit friends some of the
|
|
|
|
* sites look exactly the same - it isn't always easy to know where you are.
|
|
|
|
* Display the current site location as a navigation aid.
|
|
|
|
*/
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
$myident = ((is_array($a->user) && isset($a->user['nickname'])) ? $a->user['nickname'] . '@' : '');
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
$sitelocation = $myident . substr(System::baseUrl($ssl_state), strpos(System::baseUrl($ssl_state), '//') + 2);
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// nav links: array of array('href', 'text', 'extra css classes', 'title')
|
2018-01-15 14:51:56 -05:00
|
|
|
$nav = [];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// Display login or logout
|
2018-01-15 14:51:56 -05:00
|
|
|
$nav['usermenu'] = [];
|
2018-01-15 14:19:55 -05:00
|
|
|
$userinfo = null;
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2019-06-11 19:42:08 -04:00
|
|
|
if (local_user() || remote_user()) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['logout'] = ['logout', L10n::t('Logout'), '', L10n::t('End this session')];
|
2019-06-11 19:42:08 -04:00
|
|
|
} else {
|
|
|
|
$nav['login'] = ['login', L10n::t('Login'), ($a->module == 'login' ? 'selected' : ''), L10n::t('Sign in')];
|
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2019-06-11 19:42:08 -04:00
|
|
|
if (local_user()) {
|
2018-01-15 14:19:55 -05:00
|
|
|
// user menu
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['usermenu'][] = ['profile/' . $a->user['nickname'], L10n::t('Status'), '', L10n::t('Your posts and conversations')];
|
|
|
|
$nav['usermenu'][] = ['profile/' . $a->user['nickname'] . '?tab=profile', L10n::t('Profile'), '', L10n::t('Your profile page')];
|
|
|
|
$nav['usermenu'][] = ['photos/' . $a->user['nickname'], L10n::t('Photos'), '', L10n::t('Your photos')];
|
|
|
|
$nav['usermenu'][] = ['videos/' . $a->user['nickname'], L10n::t('Videos'), '', L10n::t('Your videos')];
|
|
|
|
$nav['usermenu'][] = ['events/', L10n::t('Events'), '', L10n::t('Your events')];
|
|
|
|
$nav['usermenu'][] = ['notes/', L10n::t('Personal notes'), '', L10n::t('Your personal notes')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// user info
|
2018-07-20 08:19:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['micro'], ['uid' => $a->user['uid'], 'self' => true]);
|
2018-01-15 14:51:56 -05:00
|
|
|
$userinfo = [
|
2018-10-09 13:58:58 -04:00
|
|
|
'icon' => (DBA::isResult($contact) ? $a->removeBaseURL($contact['micro']) : 'images/person-48.jpg'),
|
2018-01-15 14:19:55 -05:00
|
|
|
'name' => $a->user['username'],
|
2018-01-15 14:51:56 -05:00
|
|
|
];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// "Home" should also take you home from an authenticated remote profile connection
|
|
|
|
$homelink = Profile::getMyURL();
|
|
|
|
if (! $homelink) {
|
2019-05-26 16:15:38 -04:00
|
|
|
$homelink = Session::get('visitor_home', '');
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (($a->module != 'home') && (! (local_user()))) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['home'] = [$homelink, L10n::t('Home'), '', L10n::t('Home Page')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-12-27 20:56:15 -05:00
|
|
|
if (intval(Config::get('config', 'register_policy')) === \Friendica\Module\Register::OPEN && !local_user() && !remote_user()) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['register'] = ['register', L10n::t('Register'), '', L10n::t('Create an account')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
$help_url = 'help';
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (!Config::get('system', 'hide_help')) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['help'] = [$help_url, L10n::t('Help'), '', L10n::t('Help and documentation')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-10-22 14:44:55 -04:00
|
|
|
if (count(self::getAppMenu()) > 0) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['apps'] = ['apps', L10n::t('Apps'), '', L10n::t('Addon applications, utilities, games')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (local_user() || !Config::get('system', 'local_search')) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['search'] = ['search', L10n::t('Search'), '', L10n::t('Search site content')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:51:56 -05:00
|
|
|
$nav['searchoption'] = [
|
2018-01-22 09:54:13 -05:00
|
|
|
L10n::t('Full Text'),
|
|
|
|
L10n::t('Tags'),
|
|
|
|
L10n::t('Contacts')
|
2018-01-15 17:42:12 -05:00
|
|
|
];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (Config::get('system', 'poco_local_search')) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['searchoption'][] = L10n::t('Forums');
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
$gdirpath = 'directory';
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (strlen(Config::get('system', 'singleuser'))) {
|
|
|
|
$gdir = Config::get('system', 'directory');
|
|
|
|
if (strlen($gdir)) {
|
|
|
|
$gdirpath = Profile::zrl($gdir, true);
|
|
|
|
}
|
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-04-23 07:14:25 -04:00
|
|
|
if ((local_user() || Config::get('system', 'community_page_style') != CP_NO_COMMUNITY_PAGE) &&
|
|
|
|
!(Config::get('system', 'community_page_style') == CP_NO_INTERNAL_COMMUNITY)) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['community'] = ['community', L10n::t('Community'), '', L10n::t('Conversations on this and other servers')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (local_user()) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['events'] = ['events', L10n::t('Events'), '', L10n::t('Events and Calendar')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['directory'] = [$gdirpath, L10n::t('Directory'), '', L10n::t('People directory')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['about'] = ['friendica', L10n::t('Information'), '', L10n::t('Information about this friendica instance')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-05-16 05:57:06 -04:00
|
|
|
if (Config::get('system', 'tosdisplay')) {
|
|
|
|
$nav['tos'] = ['tos', L10n::t('Terms of Service'), '', L10n::t('Terms of Service of this Friendica instance')];
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// The following nav links are only show to logged in users
|
|
|
|
if (local_user()) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['network'] = ['network', L10n::t('Network'), '', L10n::t('Conversations from your friends')];
|
2018-11-30 05:43:07 -05:00
|
|
|
$nav['net_reset'] = ['network/?f=', L10n::t('Network Reset'), '', L10n::t('Load Network page with no filters')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['home'] = ['profile/' . $a->user['nickname'], L10n::t('Home'), '', L10n::t('Your posts and conversations')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
|
|
|
// Don't show notifications for public communities
|
2019-05-26 16:15:38 -04:00
|
|
|
if (Session::get('page_flags', '') != User::PAGE_FLAGS_COMMUNITY) {
|
2018-04-21 17:59:02 -04:00
|
|
|
$nav['introductions'] = ['notifications/intros', L10n::t('Introductions'), '', L10n::t('Friend Requests')];
|
|
|
|
$nav['notifications'] = ['notifications', L10n::t('Notifications'), '', L10n::t('Notifications')];
|
|
|
|
$nav['notifications']['all'] = ['notifications/system', L10n::t('See all notifications'), '', ''];
|
|
|
|
$nav['notifications']['mark'] = ['', L10n::t('Mark as seen'), '', L10n::t('Mark all system notifications seen')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['messages'] = ['message', L10n::t('Messages'), '', L10n::t('Private mail')];
|
|
|
|
$nav['messages']['inbox'] = ['message', L10n::t('Inbox'), '', L10n::t('Inbox')];
|
|
|
|
$nav['messages']['outbox'] = ['message/sent', L10n::t('Outbox'), '', L10n::t('Outbox')];
|
|
|
|
$nav['messages']['new'] = ['message/new', L10n::t('New Message'), '', L10n::t('New Message')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (is_array($a->identities) && count($a->identities) > 1) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['manage'] = ['manage', L10n::t('Manage'), '', L10n::t('Manage other pages')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['delegations'] = ['delegate', L10n::t('Delegations'), '', L10n::t('Delegate Page Management')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['settings'] = ['settings', L10n::t('Settings'), '', L10n::t('Account settings')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
if (Feature::isEnabled(local_user(), 'multi_profiles')) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['profiles'] = ['profiles', L10n::t('Profiles'), '', L10n::t('Manage/Edit Profiles')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-10-13 07:29:56 -04:00
|
|
|
$nav['contacts'] = ['contact', L10n::t('Contacts'), '', L10n::t('Manage/edit friends and contacts')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// Show the link to the admin configuration page if user is admin
|
|
|
|
if (is_site_admin()) {
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['admin'] = ['admin/', L10n::t('Admin'), '', L10n::t('Site setup and configuration')];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-22 09:54:13 -05:00
|
|
|
$nav['navigation'] = ['navigation/', L10n::t('Navigation'), '', L10n::t('Site map')];
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:19:55 -05:00
|
|
|
// Provide a banner/logo/whatever
|
|
|
|
$banner = Config::get('system', 'banner');
|
|
|
|
if (is_null($banner)) {
|
|
|
|
$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>';
|
|
|
|
}
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('nav_info', $nav);
|
2018-04-21 17:59:02 -04:00
|
|
|
|
2018-01-15 14:51:56 -05:00
|
|
|
return [
|
2018-01-15 14:19:55 -05:00
|
|
|
'sitelocation' => $sitelocation,
|
|
|
|
'nav' => $nav,
|
|
|
|
'banner' => $banner,
|
|
|
|
'userinfo' => $userinfo,
|
2018-01-15 14:51:56 -05:00
|
|
|
];
|
2018-01-15 14:19:55 -05:00
|
|
|
}
|
|
|
|
}
|