2013-04-09 13:05:49 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* poche, a read it later open source system
|
|
|
|
*
|
|
|
|
* @category poche
|
|
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
|
|
* @copyright 2013
|
|
|
|
* @license http://www.wtfpl.net/ see COPYING file
|
|
|
|
*/
|
2013-04-17 13:11:57 +00:00
|
|
|
|
2013-04-17 13:32:57 +00:00
|
|
|
if (!is_dir('db/')) {
|
|
|
|
@mkdir('db/',0705);
|
|
|
|
}
|
|
|
|
|
2013-04-09 13:05:49 +00:00
|
|
|
define ('DB_PATH', 'sqlite:./db/poche.sqlite');
|
2013-04-17 13:32:57 +00:00
|
|
|
define ('ABS_PATH', 'assets/');
|
2013-04-18 08:15:46 +00:00
|
|
|
define ('CONVERT_LINKS_FOOTNOTES', TRUE);
|
2013-04-18 07:43:08 +00:00
|
|
|
define ('DOWNLOAD_PICTURES', TRUE);
|
2013-04-09 13:05:49 +00:00
|
|
|
|
|
|
|
include 'db.php';
|
|
|
|
include 'functions.php';
|
|
|
|
require_once 'Readability.php';
|
|
|
|
require_once 'Encoding.php';
|
2013-04-15 07:38:41 +00:00
|
|
|
require_once 'rain.tpl.class.php';
|
2013-04-18 13:39:34 +00:00
|
|
|
require_once 'MyTool.class.php';
|
|
|
|
require_once 'Session.class.php';
|
2013-04-15 07:38:41 +00:00
|
|
|
|
|
|
|
$db = new db(DB_PATH);
|
|
|
|
|
2013-04-18 13:39:34 +00:00
|
|
|
# initialisation de RainTPL
|
2013-04-15 07:38:41 +00:00
|
|
|
raintpl::$tpl_dir = './tpl/';
|
|
|
|
raintpl::$cache_dir = './cache/';
|
|
|
|
raintpl::$base_url = get_poche_url();
|
|
|
|
raintpl::configure('path_replace', false);
|
|
|
|
raintpl::configure('debug', false);
|
2013-04-15 12:09:58 +00:00
|
|
|
$tpl = new raintpl();
|
|
|
|
|
2013-04-18 13:39:34 +00:00
|
|
|
# initialize session
|
|
|
|
Session::init();
|
|
|
|
# XSRF protection with token
|
|
|
|
if (!empty($_POST)) {
|
|
|
|
if (!Session::isToken($_POST['token'])) {
|
|
|
|
die('Wrong token.');
|
|
|
|
}
|
|
|
|
unset($_SESSION['tokens']);
|
|
|
|
}
|
|
|
|
|
|
|
|
$ref = empty($_SERVER['HTTP_REFERER']) ? '' : $_SERVER['HTTP_REFERER'];
|
|
|
|
|
|
|
|
if (isset($_GET['login'])) {
|
|
|
|
// Login
|
|
|
|
if (!empty($_POST['login']) && !empty($_POST['password'])) {
|
|
|
|
if (Session::login('poche', 'poche', $_POST['login'], $_POST['password'])) {
|
|
|
|
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-04-15 12:09:58 +00:00
|
|
|
|
2013-04-18 13:39:34 +00:00
|
|
|
MyTool::redirect();
|
|
|
|
}
|
|
|
|
logm('login failed');
|
|
|
|
die("Login failed !");
|
|
|
|
} else {
|
|
|
|
logm('login successful');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
elseif (isset($_GET['logout'])) {
|
|
|
|
logm('logout');
|
|
|
|
Session::logout();
|
|
|
|
MyTool::redirect();
|
2013-04-16 09:52:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Traitement des paramètres et déclenchement des actions
|
2013-04-16 10:58:03 +00:00
|
|
|
$view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'index';
|
2013-04-16 09:52:25 +00:00
|
|
|
$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-18 13:39:34 +00:00
|
|
|
|
|
|
|
$tpl->assign('isLogged', Session::isLogged());
|
|
|
|
$tpl->assign('referer', $ref);
|
|
|
|
$tpl->assign('view', $view);
|
|
|
|
$tpl->assign('poche_url', get_poche_url());
|
2013-04-16 09:52:25 +00:00
|
|
|
|
|
|
|
if ($action != '') {
|
2013-04-18 13:39:34 +00:00
|
|
|
action_to_do($action, $url, $id);
|
2013-04-17 13:11:57 +00:00
|
|
|
}
|