]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/config.php
flash messages pour indiquer qu'une action s'est bien effectuée ou qu'il y a eu une...
[github/wallabag/wallabag.git] / inc / config.php
index 4c1978b545153e9a7e063ebc1285d0b2cbfff418..9d4b7fae260cb9478650346f35a8a48840d90b3e 100644 (file)
@@ -7,41 +7,39 @@
  * @copyright  2013
  * @license    http://www.wtfpl.net/ see COPYING file
  */
-define ('DB_PATH', 'sqlite:./db/poche.sqlite');
 
-include 'db.php';
+define ('POCHE_VERSION', '0.2');
+
+if (!is_dir('db/')) {
+    @mkdir('db/',0705);
+}
+
+define ('ABS_PATH', 'assets/');
+define ('CONVERT_LINKS_FOOTNOTES', TRUE);
+define ('DOWNLOAD_PICTURES', TRUE);
+$storage_type = 'sqlite'; # sqlite or file
+
 include 'functions.php';
 require_once 'Readability.php';
 require_once 'Encoding.php';
 require_once 'rain.tpl.class.php';
+require_once 'MyTool.class.php';
+require_once 'Session.class.php';
+require_once 'store/store.class.php';
+require_once 'store/sqlite.class.php';
+require_once 'store/file.class.php';
+require_once 'class.messages.php';
+
+Session::init();
 
-$db = new db(DB_PATH);
+$store         = new $storage_type();
+$msg   = new Messages();
 
-# Initialisation de RainTPL
+# initialisation de RainTPL
 raintpl::$tpl_dir   = './tpl/';
 raintpl::$cache_dir = './cache/';
 raintpl::$base_url  = get_poche_url();
 raintpl::configure('path_replace', false);
 raintpl::configure('debug', false);
 $tpl = new raintpl();
-
-# Démarrage session et initialisation du jeton de sécurité
-session_start();
-
-if (!isset($_SESSION['token_poche'])) {
-    $token = md5(uniqid(rand(), TRUE));
-    $_SESSION['token_poche'] = $token;
-    $_SESSION['token_time_poche'] = time();
-}
-
-# Traitement des paramètres et déclenchement des actions
-$action             = (isset ($_REQUEST['action'])) ? htmlentities($_REQUEST['action']) : '';
-$_SESSION['view']   = (isset ($_GET['view'])) ? htmlentities($_GET['view']) : 'index';
-$_SESSION['sort']   = (isset ($_REQUEST['sort'])) ? htmlentities($_REQUEST['sort']) : 'id';
-$id                 = (isset ($_REQUEST['id'])) ? htmlspecialchars($_REQUEST['id']) : '';
-$url                = (isset ($_GET['url'])) ? $_GET['url'] : '';
-$token              = (isset ($_REQUEST['token'])) ? $_REQUEST['token'] : '';
-
-if ($action != '') {
-    action_to_do($action, $id, $url, $token);
-}
\ No newline at end of file
+$tpl->assign('msg', $msg);
\ No newline at end of file