diff options
Diffstat (limited to 'inc/config.php')
-rw-r--r-- | inc/config.php | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/inc/config.php b/inc/config.php deleted file mode 100644 index 495dbb85..00000000 --- a/inc/config.php +++ /dev/null | |||
@@ -1,79 +0,0 @@ | |||
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 | define ('POCHE_VERSION', '0.3'); | ||
12 | define ('MODE_DEMO', FALSE); | ||
13 | define ('DEBUG_POCHE', FALSE); | ||
14 | define ('CONVERT_LINKS_FOOTNOTES', FALSE); | ||
15 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); | ||
16 | define ('DOWNLOAD_PICTURES', FALSE); | ||
17 | define ('SALT', '464v54gLLw928uz4zUBqkRJeiPY68zCX'); | ||
18 | define ('ABS_PATH', 'assets/'); | ||
19 | define ('TPL', './tpl'); | ||
20 | define ('LOCALE', './locale'); | ||
21 | define ('CACHE', './cache'); | ||
22 | define ('LANG', 'fr_FR.UTF8'); | ||
23 | |||
24 | $storage_type = 'sqlite'; # sqlite, file | ||
25 | |||
26 | # /!\ Be careful if you change the lines below /!\ | ||
27 | require_once 'poche/pocheTools.class.php'; | ||
28 | require_once 'poche/pocheCore.php'; | ||
29 | require_once '3rdparty/Readability.php'; | ||
30 | require_once '3rdparty/Encoding.php'; | ||
31 | require_once '3rdparty/Session.class.php'; | ||
32 | require_once 'store/store.class.php'; | ||
33 | require_once 'store/' . $storage_type . '.class.php'; | ||
34 | require_once './vendor/autoload.php'; | ||
35 | |||
36 | if (DOWNLOAD_PICTURES) { | ||
37 | require_once 'poche/pochePicture.php'; | ||
38 | } | ||
39 | |||
40 | # i18n | ||
41 | putenv('LC_ALL=' . LANG); | ||
42 | setlocale(LC_ALL, LANG); | ||
43 | bindtextdomain(LANG, LOCALE); | ||
44 | textdomain(LANG); | ||
45 | |||
46 | # template engine | ||
47 | // Twig_Autoloader::register(); | ||
48 | $loader = new Twig_Loader_Filesystem(TPL); | ||
49 | $twig = new Twig_Environment($loader, array( | ||
50 | 'cache' => CACHE, | ||
51 | )); | ||
52 | $twig->addExtension(new Twig_Extensions_Extension_I18n()); | ||
53 | |||
54 | Session::init(); | ||
55 | $store = new $storage_type(); | ||
56 | |||
57 | # installation | ||
58 | if(!$store->isInstalled()) | ||
59 | { | ||
60 | pocheTools::logm('poche still not installed'); | ||
61 | echo $twig->render('install.twig', array( | ||
62 | 'token' => Session::getToken(), | ||
63 | )); | ||
64 | if (isset($_GET['install'])) { | ||
65 | if (($_POST['password'] == $_POST['password_repeat']) | ||
66 | && $_POST['password'] != "" && $_POST['login'] != "") { | ||
67 | # let's rock, install poche baby ! | ||
68 | $store->install($_POST['login'], encode_string($_POST['password'] . $_POST['login'])); | ||
69 | Session::logout(); | ||
70 | pocheTools::redirect(); | ||
71 | } | ||
72 | } | ||
73 | exit(); | ||
74 | } | ||
75 | |||
76 | $_SESSION['login'] = (isset ($_SESSION['login'])) ? $_SESSION['login'] : $store->getLogin(); | ||
77 | $_SESSION['pass'] = (isset ($_SESSION['pass'])) ? $_SESSION['pass'] : $store->getPassword(); | ||
78 | |||
79 | pocheTools::initPhp(); \ No newline at end of file | ||