]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - inc/config.php
twig implementation
[github/wallabag/wallabag.git] / inc / config.php
index 38cb5eef43bef49f832e0033e453d29d6a5f0953..b78147aba13a46b9d789e89469f3a51cbea11f1c 100644 (file)
@@ -8,31 +8,73 @@
  * @license    http://www.wtfpl.net/ see COPYING file
  */
 
-define ('POCHE_VERSION', '0.1');
+define ('POCHE_VERSION', '0.3');
+define ('MODE_DEMO', FALSE);
+define ('DEBUG_POCHE', FALSE);
+define ('CONVERT_LINKS_FOOTNOTES', FALSE);
+define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
+define ('DOWNLOAD_PICTURES', FALSE);
+define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX');
+define ('ABS_PATH', 'assets/');
+define ('TPL', './tpl');
+define ('LOCALE', './locale');
+define ('CACHE', './cache');
+define ('LANG', 'fr_FR.UTF8');
+
+$storage_type = 'sqlite'; # sqlite, file
+
+# /!\ Be careful if you change the lines below /!\
 
-if (!is_dir('db/')) {
-    @mkdir('db/',0705);
+require_once 'poche/pocheTools.class.php';
+require_once 'poche/pocheCore.php';
+require_once '3rdparty/Readability.php';
+require_once '3rdparty/Encoding.php';
+require_once '3rdparty/Session.class.php';
+require_once '3rdparty/Twig/Autoloader.php';
+require_once 'store/store.class.php';
+require_once 'store/' . $storage_type . '.class.php';
+
+if (DOWNLOAD_PICTURES) {
+    require_once 'poche/pochePicture.php';
 }
 
-define ('DB_PATH', 'sqlite:./db/poche.sqlite');
-define ('ABS_PATH', 'assets/');
-define ('CONVERT_LINKS_FOOTNOTES', TRUE);
-define ('DOWNLOAD_PICTURES', TRUE);
-
-include 'db.php';
-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';
-
-$db = new db(DB_PATH);
-
-# 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();
\ No newline at end of file
+# i18n
+putenv('LC_ALL=' . LANG);
+setlocale(LC_ALL, LANG);
+bindtextdomain(LANG, LOCALE); 
+textdomain(LANG); 
+
+# template engine
+Twig_Autoloader::register();
+$loader = new Twig_Loader_Filesystem(TPL);
+$twig = new Twig_Environment($loader, array(
+    'cache' => CACHE,
+));
+$twig->addExtension(new Twig_Extensions_Extension_I18n());
+
+Session::init();
+$store = new $storage_type();
+
+# installation
+if(!$store->isInstalled())
+{
+    pocheTools::logm('poche still not installed');
+    echo $twig->render('install.twig', array(
+        'token' => Session::getToken(),
+    ));
+    if (isset($_GET['install'])) {
+        if (($_POST['password'] == $_POST['password_repeat']) 
+            && $_POST['password'] != "" && $_POST['login'] != "") {
+            # let's rock, install poche baby !
+            $store->install($_POST['login'], encode_string($_POST['password'] . $_POST['login']));
+            Session::logout();
+            pocheTools::redirect();
+        }
+    }
+    exit();
+}
+
+$_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin();
+$_SESSION['pass']  = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword();
+
+pocheTools::initPhp();
\ No newline at end of file