aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-15 10:54:14 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-15 10:54:14 +0200
commit4a2912880f0914b456711d695f96ce2ace18c814 (patch)
tree6a2532f63eb1f443f9358f36a76b8427e377abd3 /inc/poche/Poche.class.php
parentca1b0a1a6fb9b331c631df32d132736c9c627ac4 (diff)
downloadwallabag-4a2912880f0914b456711d695f96ce2ace18c814.tar.gz
wallabag-4a2912880f0914b456711d695f96ce2ace18c814.tar.zst
wallabag-4a2912880f0914b456711d695f96ce2ace18c814.zip
more verif while installing
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r--inc/poche/Poche.class.php69
1 files changed, 50 insertions, 19 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 82f0228e..1d8aaca2 100644
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -18,11 +18,10 @@ class Poche
18 18
19 function __construct() 19 function __construct()
20 { 20 {
21 if (file_exists('./install') && !DEBUG_POCHE) { 21 $this->initTpl();
22 Tools::logm('folder /install exists'); 22 if (!$this->checkBeforeInstall()) {
23 die('If you want to update your poche, you just have to delete /install folder. <br />To install your poche with sqlite, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.'); 23 exit;
24 } 24 }
25
26 $this->store = new Database(); 25 $this->store = new Database();
27 $this->init(); 26 $this->init();
28 $this->messages = new Messages(); 27 $this->messages = new Messages();
@@ -34,27 +33,37 @@ class Poche
34 } 33 }
35 } 34 }
36 35
37 private function init() 36 /**
37 * all checks before installation.
38 * @return boolean
39 */
40 private function checkBeforeInstall()
38 { 41 {
39 Tools::initPhp(); 42 $msg = '';
40 Session::init(); 43 $allIsGood = TRUE;
44 if (file_exists('./install') && !DEBUG_POCHE) {
45 Tools::logm('folder /install exists');
46 $msg = 'If you want to update your poche, you just have to delete /install folder. <br />To install your poche with sqlite, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.';
47 $allIsGood = FALSE;
48 }
41 49
42 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) { 50 if (STORAGE == 'sqlite' && !is_writable(STORAGE_SQLITE)) {
43 $this->user = $_SESSION['poche_user']; 51 Tools::logm('you don\'t have write access on db file');
52 $msg = 'You don\'t have write access on ' . STORAGE_SQLITE . ' file.';
53 $allIsGood = FALSE;
44 } 54 }
45 else { 55
46 # fake user, just for install & login screens 56 if (!$allIsGood) {
47 $this->user = new User(); 57 echo $this->tpl->render('error.twig', array(
48 $this->user->setConfig($this->getDefaultConfig()); 58 'msg' => $msg
59 ));
49 } 60 }
50 61
51 # l10n 62 return $allIsGood;
52 $language = $this->user->getConfigValue('language'); 63 }
53 putenv('LC_ALL=' . $language);
54 setlocale(LC_ALL, $language);
55 bindtextdomain($language, LOCALE);
56 textdomain($language);
57 64
65 private function initTpl()
66 {
58 # template engine 67 # template engine
59 $loader = new Twig_Loader_Filesystem(TPL); 68 $loader = new Twig_Loader_Filesystem(TPL);
60 if (DEBUG_POCHE) { 69 if (DEBUG_POCHE) {
@@ -72,6 +81,28 @@ class Poche
72 # filter for reading time 81 # filter for reading time
73 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime'); 82 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime');
74 $this->tpl->addFilter($filter); 83 $this->tpl->addFilter($filter);
84 }
85
86 private function init()
87 {
88 Tools::initPhp();
89 Session::init();
90
91 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) {
92 $this->user = $_SESSION['poche_user'];
93 }
94 else {
95 # fake user, just for install & login screens
96 $this->user = new User();
97 $this->user->setConfig($this->getDefaultConfig());
98 }
99
100 # l10n
101 $language = $this->user->getConfigValue('language');
102 putenv('LC_ALL=' . $language);
103 setlocale(LC_ALL, $language);
104 bindtextdomain($language, LOCALE);
105 textdomain($language);
75 106
76 # Pagination 107 # Pagination
77 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p'); 108 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p');