]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - index.php
feature #505 - it is now possible to add link from bagged article (TODO: redev it...
[github/wallabag/wallabag.git] / index.php
... / ...
CommitLineData
1<?php
2/**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11define ('POCHE', '1.5.3');
12require 'check_setup.php';
13require_once 'inc/poche/global.inc.php';
14
15# Start Poche
16$poche = new Poche();
17$notInstalledMessage = $poche -> getNotInstalledMessage();
18
19# Parse GET & REFERER vars
20$referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
21$view = Tools::checkVar('view', 'home');
22$action = Tools::checkVar('action');
23$id = Tools::checkVar('id');
24$_SESSION['sort'] = Tools::checkVar('sort', 'id');
25$url = new Url((isset ($_GET['url'])) ? $_GET['url'] : '');
26
27# vars to _always_ send to templates
28$tpl_vars = array(
29 'referer' => $referer,
30 'view' => $view,
31 'poche_url' => Tools::getPocheUrl(),
32 'title' => _('wallabag, a read it later open source system'),
33 'token' => Session::getToken(),
34 'theme' => $poche->getTheme()
35);
36
37if (! empty($notInstalledMessage)) {
38 if (! Poche::$canRenderTemplates || ! Poche::$configFileAvailable) {
39 # We cannot use Twig to display the error message
40 echo '<h1>Errors</h1><ol>';
41 foreach ($notInstalledMessage as $message) {
42 echo '<li>' . $message . '</li>';
43 }
44 echo '</ol>';
45 die();
46 } else {
47 # Twig is installed, put the error message in the template
48 $tpl_file = Tools::getTplFile('error');
49 $tpl_vars = array_merge($tpl_vars, array('msg' => $poche->getNotInstalledMessage()));
50 echo $poche->tpl->render($tpl_file, $tpl_vars);
51 exit;
52 }
53}
54
55# poche actions
56if (isset($_GET['login'])) {
57 # hello you
58 $poche->login($referer);
59} elseif (isset($_GET['logout'])) {
60 # see you soon !
61 $poche->logout();
62} elseif (isset($_GET['config'])) {
63 # Update password
64 $poche->updatePassword();
65} elseif (isset($_GET['import'])) {
66 $import = $poche->import($_GET['from']);
67} elseif (isset($_GET['download'])) {
68 Tools::download_db();
69} elseif (isset($_GET['empty-cache'])) {
70 $poche->emptyCache();
71} elseif (isset($_GET['export'])) {
72 $poche->export();
73} elseif (isset($_GET['updatetheme'])) {
74 $poche->updateTheme();
75} elseif (isset($_GET['updatelanguage'])) {
76 $poche->updateLanguage();
77} elseif (isset($_GET['uploadfile'])) {
78 $poche->uploadFile();
79} elseif (isset($_GET['feed'])) {
80 if (isset($_GET['action']) && $_GET['action'] == 'generate') {
81 $poche->generateToken();
82 }
83 else {
84 $tag_id = (isset($_GET['tag_id']) ? intval($_GET['tag_id']) : 0);
85 $poche->generateFeeds($_GET['token'], $_GET['user_id'], $tag_id, $_GET['type']);
86 }
87}
88
89elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) {
90 $plain_url = new Url(base64_encode($_GET['plainurl']));
91 $poche->action('add', $plain_url);
92}
93
94if (Session::isLogged()) {
95 $poche->action($action, $url, $id);
96 $tpl_file = Tools::getTplFile($view);
97 $tpl_vars = array_merge($tpl_vars, $poche->displayView($view, $id));
98} elseif(isset($_SERVER['PHP_AUTH_USER'])) {
99 if($poche->store->userExists($_SERVER['PHP_AUTH_USER'])) {
100 $poche->login($referer);
101 } else {
102 $poche->messages->add('e', _('login failed: user doesn\'t exist'));
103 Tools::logm('user doesn\'t exist');
104 $tpl_file = Tools::getTplFile('login');
105 $tpl_vars['http_auth'] = 1;
106 }
107} elseif(isset($_SERVER['REMOTE_USER'])) {
108 if($poche->store->userExists($_SERVER['REMOTE_USER'])) {
109 $poche->login($referer);
110 } else {
111 $poche->messages->add('e', _('login failed: user doesn\'t exist'));
112 Tools::logm('user doesn\'t exist');
113 $tpl_file = Tools::getTplFile('login');
114 $tpl_vars['http_auth'] = 1;
115 }
116} else {
117 $tpl_file = Tools::getTplFile('login');
118 $tpl_vars['http_auth'] = 0;
119}
120
121# because messages can be added in $poche->action(), we have to add this entry now (we can add it before)
122$messages = $poche->messages->display('all', FALSE);
123$tpl_vars = array_merge($tpl_vars, array('messages' => $messages));
124
125# display poche
126echo $poche->tpl->render($tpl_file, $tpl_vars);