wallabag/index.php

75 lines
2.1 KiB
PHP
Raw Normal View History

2013-04-03 15:14:01 +02:00
<?php
/**
* poche, a read it later open source system
*
* @category poche
2013-04-13 11:08:31 +02:00
* @author Nicolas Lœuillet <support@inthepoche.com>
2013-04-03 15:14:01 +02:00
* @copyright 2013
* @license http://www.wtfpl.net/ see COPYING file
*/
if (file_exists(__DIR__ . '/inc/poche/myconfig.inc.php')) {
require_once __DIR__ . '/inc/poche/myconfig.inc.php';
}
2013-08-16 20:19:31 +02:00
require_once './inc/poche/Tools.class.php';
Tools::createMyConfig();
2013-08-04 20:58:31 +02:00
include dirname(__FILE__).'/inc/poche/config.inc.php';
2013-04-03 15:14:01 +02:00
2013-08-08 09:11:12 +02:00
# Parse GET & REFERER vars
2013-08-02 22:40:51 +02:00
$referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
2013-08-05 10:32:15 +02:00
$view = Tools::checkVar('view', 'home');
2013-08-04 22:35:08 +02:00
$action = Tools::checkVar('action');
$id = Tools::checkVar('id');
2013-08-05 23:11:10 +02:00
$_SESSION['sort'] = Tools::checkVar('sort', 'id');
2013-08-04 22:35:08 +02:00
$url = new Url((isset ($_GET['url'])) ? $_GET['url'] : '');
2013-08-08 09:11:12 +02:00
# poche actions
2013-04-19 11:41:12 +02:00
if (isset($_GET['login'])) {
2013-08-03 19:26:54 +02:00
# hello you
$poche->login($referer);
2013-04-19 11:41:12 +02:00
}
elseif (isset($_GET['logout'])) {
2013-08-03 19:26:54 +02:00
# see you soon !
$poche->logout();
2013-04-19 11:41:12 +02:00
}
elseif (isset($_GET['config'])) {
2013-08-03 19:26:54 +02:00
# Update password
$poche->updatePassword();
}
elseif (isset($_GET['import'])) {
2013-08-08 12:33:02 +02:00
$import = $poche->import($_GET['from']);
2013-06-01 08:23:37 +02:00
}
2013-08-04 22:35:08 +02:00
elseif (isset($_GET['export'])) {
$poche->export();
}
2013-09-10 14:41:58 +02:00
elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) {
$plain_url = new Url(base64_encode($_GET['plainurl']));
$poche->action('add', $plain_url);
}
2013-08-08 09:11:12 +02:00
# vars to send to templates
2013-08-02 22:40:51 +02:00
$tpl_vars = array(
2013-08-26 22:25:03 +02:00
'lang' => Tools::getDocLanguage($poche->user->getConfigValue('language')),
2013-08-02 22:40:51 +02:00
'referer' => $referer,
'view' => $view,
2013-08-04 20:58:31 +02:00
'poche_url' => Tools::getPocheUrl(),
2013-08-02 22:40:51 +02:00
'title' => _('poche, a read it later open source system'),
2013-08-03 08:25:11 +02:00
'token' => Session::getToken(),
2013-08-02 22:40:51 +02:00
);
if (Session::isLogged()) {
2013-08-04 20:58:31 +02:00
$poche->action($action, $url, $id);
$tpl_file = Tools::getTplFile($view);
$tpl_vars = array_merge($tpl_vars, $poche->displayView($view, $id));
}
else {
2013-08-03 08:25:11 +02:00
$tpl_file = 'login.twig';
}
2013-08-02 22:40:51 +02:00
2013-08-05 15:54:37 +02:00
# because messages can be added in $poche->action(), we have to add this entry now (we can add it before)
2013-08-05 21:56:32 +02:00
$messages = $poche->messages->display('all', FALSE);
$tpl_vars = array_merge($tpl_vars, array('messages' => $messages));
2013-08-05 15:54:37 +02:00
2013-08-08 09:11:12 +02:00
# display poche
2013-08-04 20:58:31 +02:00
echo $poche->tpl->render($tpl_file, $tpl_vars);