wallabag/index.php

64 lines
1.7 KiB
PHP
Raw Normal View History

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