wallabag/index.php

97 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-04-09 13:18:39 +00:00
include dirname(__FILE__).'/inc/config.php';
2013-04-03 13:14:01 +00:00
2013-08-03 06:25:11 +00:00
$errors = array();
2013-04-19 09:41:12 +00:00
# XSRF protection with token
if (!empty($_POST)) {
if (!Session::isToken($_POST['token'])) {
2013-08-03 06:57:35 +00:00
#die(_('Wrong token'));
// TODO CORRIGER ICI !!!
2013-04-19 09:41:12 +00:00
}
unset($_SESSION['tokens']);
}
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'])) {
if (!empty($_POST['login']) && !empty($_POST['password'])) {
2013-05-31 20:55:52 +00:00
if (Session::login($_SESSION['login'], $_SESSION['pass'], $_POST['login'], encode_string($_POST['password'] . $_POST['login']))) {
2013-08-02 21:04:24 +00:00
pocheTools::logm('login successful');
2013-08-03 06:25:11 +00:00
$errors[]['value'] = _('login successful');
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 {
session_set_cookie_params(0); // when browser closes
}
session_regenerate_id(true);
2013-08-02 21:04:24 +00:00
pocheTools::redirect($referer);
2013-04-19 09:41:12 +00:00
}
2013-08-02 21:04:24 +00:00
pocheTools::logm('login failed');
2013-08-03 06:25:11 +00:00
$errors[]['value'] = _('Login failed !');
2013-04-19 09:41:12 +00:00
} else {
2013-08-02 21:04:24 +00:00
pocheTools::logm('login failed');
2013-04-19 09:41:12 +00:00
}
}
elseif (isset($_GET['logout'])) {
2013-08-02 21:04:24 +00:00
pocheTools::logm('logout');
2013-04-19 09:41:12 +00:00
Session::logout();
2013-08-02 21:04:24 +00:00
pocheTools::redirect();
2013-04-19 09:41:12 +00:00
}
2013-06-01 06:23:37 +00:00
elseif (isset($_GET['config'])) {
if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
2013-08-02 21:04:24 +00:00
pocheTools::logm('password updated');
if (!MODE_DEMO) {
$store->updatePassword(encode_string($_POST['password'] . $_SESSION['login']));
2013-08-02 20:40:51 +00:00
#your password has been updated
}
else {
2013-08-02 20:40:51 +00:00
#in demo mode, you can\'t update password
}
2013-06-01 06:23:37 +00:00
}
2013-08-02 20:40:51 +00:00
#else
#your password can\'t be empty and you have to repeat it in the second field
2013-06-01 06:23:37 +00:00
}
}
2013-04-19 09:41:12 +00:00
# Traitement des paramètres et déclenchement des actions
2013-08-03 06:25:11 +00:00
$view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'home';
2013-04-19 09:41:12 +00:00
$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']) : '';
$url = (isset ($_GET['url'])) ? $_GET['url'] : '';
2013-08-02 20:40:51 +00:00
$tpl_vars = array(
'referer' => $referer,
'view' => $view,
2013-08-02 21:04:24 +00:00
'poche_url' => pocheTools::getUrl(),
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(),
'errors' => $errors,
2013-08-02 20:40:51 +00:00
);
if (Session::isLogged()) {
2013-04-19 09:41:12 +00:00
action_to_do($action, $url, $id);
2013-08-03 06:57:35 +00:00
$tpl_file = get_tpl_file($view);
2013-08-03 06:25:11 +00:00
$tpl_vars = array_merge($tpl_vars, display_view($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-03 06:25:11 +00:00
echo $twig->render($tpl_file, $tpl_vars);