wallabag/index.php

101 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 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-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 17:26:54 +00:00
$pocheTools[]['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-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 17:26:54 +00:00
$notices[]['value'] = _('Login failed !');
pocheTools::redirect();
2013-04-19 09:41:12 +00:00
} else {
2013-08-02 21:04:24 +00:00
pocheTools::logm('login failed');
2013-08-03 17:26:54 +00:00
pocheTools::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-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'])) {
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-03 17:26:54 +00:00
pocheTools::logm('password updated');
$store->updatePassword(encode_string($_POST['password'] . $_SESSION['login']));
2013-08-03 17:26:54 +00:00
Session::logout();
pocheTools::redirect();
}
else {
2013-08-03 17:26:54 +00:00
pocheTools::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']) : '';
$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-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(),
2013-08-03 17:26:54 +00:00
'notices' => $notices,
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);