]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/config.php
possibilité de désactiver la récupération des images d'un article
[github/wallabag/wallabag.git] / inc / config.php
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 if (!is_dir('db/')) {
12 @mkdir('db/',0705);
13 }
14
15 define ('DB_PATH', 'sqlite:./db/poche.sqlite');
16 define ('ABS_PATH', 'assets/');
17 define ('DOWNLOAD_PICTURES', TRUE);
18
19 include 'db.php';
20 include 'functions.php';
21 require_once 'Readability.php';
22 require_once 'Encoding.php';
23 require_once 'rain.tpl.class.php';
24
25 $db = new db(DB_PATH);
26
27 # Initialisation de RainTPL
28 raintpl::$tpl_dir = './tpl/';
29 raintpl::$cache_dir = './cache/';
30 raintpl::$base_url = get_poche_url();
31 raintpl::configure('path_replace', false);
32 raintpl::configure('debug', false);
33 $tpl = new raintpl();
34
35 # Démarrage session et initialisation du jeton de sécurité
36 session_start();
37
38 if (!isset($_SESSION['token_poche'])) {
39 $token = md5(uniqid(rand(), TRUE));
40 $_SESSION['token_poche'] = $token;
41 $_SESSION['token_time_poche'] = time();
42 }
43
44 # Traitement des paramètres et déclenchement des actions
45 $view = (isset ($_REQUEST['view'])) ? htmlentities($_REQUEST['view']) : 'index';
46 $action = (isset ($_REQUEST['action'])) ? htmlentities($_REQUEST['action']) : '';
47 $_SESSION['sort'] = (isset ($_REQUEST['sort'])) ? htmlentities($_REQUEST['sort']) : 'id';
48 $id = (isset ($_REQUEST['id'])) ? htmlspecialchars($_REQUEST['id']) : '';
49 $url = (isset ($_GET['url'])) ? $_GET['url'] : '';
50 $token = (isset ($_REQUEST['token'])) ? $_REQUEST['token'] : '';
51
52 if ($action != '') {
53 action_to_do($action, $id, $url, $token);
54 }