auth->getInfo('user_lang'); $_lang = preg_match('/^[a-z]{2}(-[a-z]{2})?$/',$_lang) ? $_lang : 'en'; if (l10n::set(dirname(__FILE__).'/../../locales/'.$_lang.'/date') === false && $_lang != 'en') { l10n::set(dirname(__FILE__).'/../../locales/en/date'); } l10n::set(dirname(__FILE__).'/../../locales/'.$_lang.'/main'); l10n::set(dirname(__FILE__).'/../../locales/'.$_lang.'/plugins'); } if (defined('DC_AUTH_SESS_ID') && defined('DC_AUTH_SESS_UID')) { # We have session information in constants $_COOKIE[DC_SESSION_NAME] = DC_AUTH_SESS_ID; if (!$core->auth->checkSession(DC_AUTH_SESS_UID)) { throw new Exception('Invalid session data.'); } # Check nonce from POST requests if (!empty($_POST)) { if (empty($_POST['xd_check']) || !$core->checkNonce($_POST['xd_check'])) { throw new Exception('Precondition Failed.'); } } if (empty($_SESSION['sess_blog_id'])) { throw new Exception('Permission denied.'); } # Loading locales dc_load_locales(); $core->setBlog($_SESSION['sess_blog_id']); if (!$core->blog->id) { throw new Exception('Permission denied.'); } } elseif ($core->auth->sessionExists()) { # If we have a session we launch it now try { if (!$core->auth->checkSession()) { # Avoid loop caused by old cookie $p = $core->session->getCookieParameters(false,-600); $p[3] = '/'; call_user_func_array('setcookie',$p); http::redirect('auth.php'); } } catch (Exception $e) { __error(__('Database error') ,__('There seems to be no Session table in your database. Is Dotclear completly installed?') ,20); } # Check nonce from POST requests if (!empty($_POST)) { if (empty($_POST['xd_check']) || !$core->checkNonce($_POST['xd_check'])) { http::head(412); header('Content-Type: text/plain'); echo 'Precondition Failed'; exit; } } if (!empty($_REQUEST['switchblog']) && $core->auth->getPermissions($_REQUEST['switchblog']) !== false) { $_SESSION['sess_blog_id'] = $_REQUEST['switchblog']; if (isset($_SESSION['media_manager_dir'])) { unset($_SESSION['media_manager_dir']); } if (isset($_SESSION['media_manager_page'])) { unset($_SESSION['media_manager_page']); } # Removing switchblog from URL $redir = $_SERVER['REQUEST_URI']; $redir = preg_replace('/switchblog=(.*?)(&|$)/','',$redir); $redir = preg_replace('/\?$/','',$redir); http::redirect($redir); exit; } # Check blog to use and log out if no result if (isset($_SESSION['sess_blog_id'])) { if ($core->auth->getPermissions($_SESSION['sess_blog_id']) === false) { unset($_SESSION['sess_blog_id']); } } else { if (($b = $core->auth->findUserBlog($core->auth->getInfo('user_default_blog'))) !== false) { $_SESSION['sess_blog_id'] = $b; unset($b); } } # Loading locales dc_load_locales(); if (isset($_SESSION['sess_blog_id'])) { $core->setBlog($_SESSION['sess_blog_id']); } else { $core->session->destroy(); http::redirect('auth.php'); } /* # Check add to my fav fired if (!empty($_REQUEST['add-favorite'])) { $redir = $_SERVER['REQUEST_URI']; # Extract admin page from URI # TO BE COMPLETED } */ } if ($core->auth->userID() && $core->blog !== null) { # Loading resources and help files $locales_root = dirname(__FILE__).'/../../locales/'; require $locales_root.'/en/resources.php'; if (($f = l10n::getFilePath($locales_root,'resources.php',$_lang))) { require $f; } unset($f); if (($hfiles = @scandir($locales_root.$_lang.'/help')) !== false) { foreach ($hfiles as $hfile) { if (preg_match('/^(.*)\.html$/',$hfile,$m)) { $GLOBALS['__resources']['help'][$m[1]] = $locales_root.$_lang.'/help/'.$hfile; } } } unset($hfiles,$locales_root); # Standard favorites $_fav = new ArrayObject(); # [] : Title, URL, small icon, large icon, permissions, id, class # NB : '*' in permissions means any, null means super admin only $_fav['prefs'] = new ArrayObject(array('prefs',__('My preferences'),'preferences.php', 'images/menu/user-pref.png','images/menu/user-pref-b.png', '*',null,null)); $_fav['new_post'] = new ArrayObject(array('new_post',__('New entry'),'post.php', 'images/menu/edit.png','images/menu/edit-b.png', 'usage,contentadmin',null,'menu-new-post')); $_fav['posts'] = new ArrayObject(array('posts',__('Entries'),'posts.php', 'images/menu/entries.png','images/menu/entries-b.png', 'usage,contentadmin',null,null)); $_fav['comments'] = new ArrayObject(array('comments',__('Comments'),'comments.php', 'images/menu/comments.png','images/menu/comments-b.png', 'usage,contentadmin',null,null)); $_fav['search'] = new ArrayObject(array('search',__('Search'),'search.php', 'images/menu/search.png','images/menu/search-b.png', 'usage,contentadmin',null,null)); $_fav['categories'] = new ArrayObject(array('categories',__('Categories'),'categories.php', 'images/menu/categories.png','images/menu/categories-b.png', 'categories',null,null)); $_fav['media'] = new ArrayObject(array('media',__('Media manager'),'media.php', 'images/menu/media.png','images/menu/media-b.png', 'media,media_admin',null,null)); $_fav['blog_pref'] = new ArrayObject(array('blog_pref',__('Blog settings'),'blog_pref.php', 'images/menu/blog-pref.png','images/menu/blog-pref-b.png', 'admin',null,null)); $_fav['blog_theme'] = new ArrayObject(array('blog_theme',__('Blog appearance'),'blog_theme.php', 'images/menu/themes.png','images/menu/blog-theme-b.png', 'admin',null,null)); $_fav['blogs'] = new ArrayObject(array('blogs',__('Blogs'),'blogs.php', 'images/menu/blogs.png','images/menu/blogs-b.png', 'usage,contentadmin',null,null)); $_fav['users'] = new ArrayObject(array('users',__('Users'),'users.php', 'images/menu/users.png','images/menu/users-b.png', null,null,null)); $_fav['plugins'] = new ArrayObject(array('plugins',__('Plugins'),'plugins.php', 'images/menu/plugins.png','images/menu/plugins-b.png', null,null,null)); $_fav['langs'] = new ArrayObject(array('langs',__('Languages'),'langs.php', 'images/menu/langs.png','images/menu/langs-b.png', null,null,null)); # Menus creation $_menu['Dashboard'] = new dcMenu('dashboard-menu',null); $_menu['Favorites'] = new dcMenu('favorites-menu','My favorites'); $_menu['Blog'] = new dcMenu('blog-menu','Blog'); $_menu['System'] = new dcMenu('system-menu','System'); $_menu['Plugins'] = new dcMenu('plugins-menu','Plugins'); # Loading plugins $core->plugins->loadModules(DC_PLUGINS_ROOT,'admin',$_lang); # Loading favorites info from plugins $core->callBehavior('adminDashboardFavs', $core, $_fav); # Set menu titles $_menu['System']->title = __('System'); $_menu['Blog']->title = __('Blog'); $_menu['Plugins']->title = __('Plugins'); $_menu['Favorites']->title = __('My favorites'); /* if (!preg_match('/index.php$/',$_SERVER['REQUEST_URI'])) { # Admin index can't be add in fav's $_menu['Dashboard']->prependItem(__('Add this page to my favorites'),'#','images/menu/add_to_favorites.png', false,$core->auth->check('usage,contentadmin',$core->blog->id),'fav-add'); } */ $_menu['Dashboard']->prependItem(__('My preferences'),'preferences.php','images/menu/user-pref.png', preg_match('/preferences.php(\?.*)?$/',$_SERVER['REQUEST_URI']), true); $_menu['Dashboard']->prependItem(__('Dashboard'),'index.php','images/menu/dashboard.png', preg_match('/index.php$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id)); $_menu['Blog']->prependItem(__('Blog appearance'),'blog_theme.php','images/menu/themes.png', preg_match('/blog_theme.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('admin',$core->blog->id)); $_menu['Blog']->prependItem(__('Blog settings'),'blog_pref.php','images/menu/blog-pref.png', preg_match('/blog_pref.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('admin',$core->blog->id)); $_menu['Blog']->prependItem(__('Media manager'),'media.php','images/menu/media.png', preg_match('/media(_item)?.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('media,media_admin',$core->blog->id)); $_menu['Blog']->prependItem(__('Categories'),'categories.php','images/menu/categories.png', preg_match('/categories.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('categories',$core->blog->id)); $_menu['Blog']->prependItem(__('Search'),'search.php','images/menu/search.png', preg_match('/search.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id)); $_menu['Blog']->prependItem(__('Comments'),'comments.php','images/menu/comments.png', preg_match('/comments.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id)); $_menu['Blog']->prependItem(__('Entries'),'posts.php','images/menu/entries.png', preg_match('/posts.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id)); $_menu['Blog']->prependItem(__('New entry'),'post.php','images/menu/edit.png', preg_match('/post.php$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id),'menu-new-post'); $_menu['System']->prependItem(__('Updates'),'update.php','images/menu/update.png', preg_match('/update.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->isSuperAdmin() && is_readable(DC_DIGESTS)); $_menu['System']->prependItem(__('Languages'),'langs.php','images/menu/langs.png', preg_match('/langs.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->isSuperAdmin()); $_menu['System']->prependItem(__('Plugins'),'plugins.php','images/menu/plugins.png', preg_match('/plugins.php(\?.*)?$/',$_SERVER['REQUEST_URI']), $core->auth->isSuperAdmin()); $_menu['System']->prependItem(__('Users'),'users.php','images/menu/users.png', preg_match('/users.php$/',$_SERVER['REQUEST_URI']), $core->auth->isSuperAdmin()); $_menu['System']->prependItem(__('Blogs'),'blogs.php','images/menu/blogs.png', preg_match('/blogs.php$/',$_SERVER['REQUEST_URI']), $core->auth->isSuperAdmin() || $core->auth->check('usage,contentadmin',$core->blog->id) && $core->auth->blog_count > 1); try { // Set favorites menu $ws = $core->auth->user_prefs->addWorkspace('favorites'); $count = 0; foreach ($ws->dumpPrefs() as $k => $v) { // User favorites only if (!$v['global']) { $count++; $fav = unserialize($v['value']); $_menu['Favorites']->addItem($fav['title'],$fav['url'],$fav['small-icon'], preg_match('/'.$fav['url'].'(\?.*)?$/',$_SERVER['REQUEST_URI']), (($fav['permissions'] == '*') || $core->auth->check($fav['permissions'],$core->blog->id)),$fav['id'],$fav['class']); } } if (!$count) { // Global favorites if any foreach ($ws->dumpPrefs() as $k => $v) { $count++; $fav = unserialize($v['value']); $_menu['Favorites']->addItem($fav['title'],$fav['url'],$fav['small-icon'], preg_match('/'.$fav['url'].'(\?.*)?$/',$_SERVER['REQUEST_URI']), (($fav['permissions'] == '*') || $core->auth->check($fav['permissions'],$core->blog->id)),$fav['id'],$fav['class']); } } if (!$count) { // No user or global favorites, add "new entry" fav $_menu['Favorites']->addItem(__('New entry'),'post.php','images/menu/edit.png', preg_match('/post.php$/',$_SERVER['REQUEST_URI']), $core->auth->check('usage,contentadmin',$core->blog->id),'menu-new-post',null); } } catch (Exception $e) { $version = $core->getVersion('core'); if (version_compare($version,'2.3','<')) { ; // Ignore lack of dc_pref table before the logout following an auto-update } else { $core->error->add($e->getMessage()); } } } ?>