wallabag/index.php

102 lines
3.3 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-03 17:26:54 +00:00
$notices = array();
2013-04-19 09:41:12 +00:00
# XSRF protection with token
2013-08-03 17:26:54 +00:00
// if (!empty($_POST)) {
// if (!Session::isToken($_POST['token'])) {
// die(_('Wrong token'));
// // TODO remettre le test
// }
// unset($_SESSION['tokens']);
// }
2013-04-19 09:41:12 +00:00
2013-08-02 20:40:51 +00:00
$referer = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
2013-04-19 09:41:12 +00:00
if (isset($_GET['login'])) {
2013-08-03 17:26:54 +00:00
# hello you
2013-04-19 09:41:12 +00:00
if (!empty($_POST['login']) && !empty($_POST['password'])) {
2013-08-04 18:58:31 +00:00
if (Session::login($_SESSION['login'], $_SESSION['pass'], $_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login']))) {
Tools::logm('login successful');
$notices['value'] = _('login successful');
2013-08-03 06:25:11 +00:00
2013-04-19 09:41:12 +00:00
if (!empty($_POST['longlastingsession'])) {
$_SESSION['longlastingsession'] = 31536000;
$_SESSION['expires_on'] = time() + $_SESSION['longlastingsession'];
session_set_cookie_params($_SESSION['longlastingsession']);
} else {
2013-08-03 17:26:54 +00:00
session_set_cookie_params(0);
2013-04-19 09:41:12 +00:00
}
session_regenerate_id(true);
2013-08-04 18:58:31 +00:00
Tools::redirect($referer);
2013-04-19 09:41:12 +00:00
}
2013-08-04 18:58:31 +00:00
Tools::logm('login failed');
$notices['value'] = _('Login failed !');
Tools::redirect();
2013-04-19 09:41:12 +00:00
} else {
2013-08-04 18:58:31 +00:00
Tools::logm('login failed');
Tools::redirect();
2013-04-19 09:41:12 +00:00
}
}
elseif (isset($_GET['logout'])) {
2013-08-03 17:26:54 +00:00
# see you soon !
2013-08-04 18:58:31 +00:00
Tools::logm('logout');
2013-04-19 09:41:12 +00:00
Session::logout();
2013-08-04 18:58:31 +00:00
Tools::redirect();
2013-04-19 09:41:12 +00:00
}
2013-06-01 06:23:37 +00:00
elseif (isset($_GET['config'])) {
2013-08-03 17:26:54 +00:00
# Update password
2013-06-01 06:23:37 +00:00
if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
if (!MODE_DEMO) {
2013-08-04 18:58:31 +00:00
Tools::logm('password updated');
$poche->store->updatePassword(Tools::encodeString($_POST['password'] . $_SESSION['login']));
2013-08-03 17:26:54 +00:00
Session::logout();
2013-08-04 18:58:31 +00:00
Tools::redirect();
}
else {
2013-08-04 18:58:31 +00:00
Tools::logm('in demo mode, you can\'t do this');
}
2013-06-01 06:23:37 +00:00
}
}
}
2013-04-19 09:41:12 +00:00
2013-08-03 17:26:54 +00:00
# Aaaaaaand action !
$view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'home';
$full_head = (isset ($_REQUEST['full_head'])) ? htmlentities($_REQUEST['full_head']) : 'yes';
$action = (isset ($_REQUEST['action'])) ? htmlentities($_REQUEST['action']) : '';
$_SESSION['sort'] = (isset ($_REQUEST['sort'])) ? htmlentities($_REQUEST['sort']) : 'id';
$id = (isset ($_REQUEST['id'])) ? htmlspecialchars($_REQUEST['id']) : '';
2013-08-04 18:58:31 +00:00
$url = new Url((isset ($_GET['url'])) ? $_GET['url'] : '');
2013-04-19 09:41:12 +00:00
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
'demo' => MODE_DEMO,
'title' => _('poche, a read it later open source system'),
2013-08-03 06:25:11 +00:00
'token' => Session::getToken(),
2013-08-03 17:26:54 +00:00
'notices' => $notices,
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-04 18:58:31 +00:00
echo $poche->tpl->render($tpl_file, $tpl_vars);