]>
Commit | Line | Data |
---|---|---|
eb1af592 NL |
1 | <?php |
2 | /** | |
3 | * poche, a read it later open source system | |
4 | * | |
5 | * @category poche | |
6 | * @author Nicolas Lœuillet <support@inthepoche.com> | |
7 | * @copyright 2013 | |
8 | * @license http://www.wtfpl.net/ see COPYING file | |
9 | */ | |
10 | ||
11 | class Poche | |
12 | { | |
7ce7ec4c | 13 | public $user; |
eb1af592 NL |
14 | public $store; |
15 | public $tpl; | |
55821e04 | 16 | public $messages; |
6a361945 | 17 | public $pagination; |
eb1af592 | 18 | |
bc1ee852 | 19 | function __construct() |
eb1af592 | 20 | { |
4a291288 NL |
21 | $this->initTpl(); |
22 | if (!$this->checkBeforeInstall()) { | |
23 | exit; | |
6c158544 | 24 | } |
bc1ee852 | 25 | $this->store = new Database(); |
eb1af592 | 26 | $this->init(); |
6a361945 | 27 | $this->messages = new Messages(); |
eb1af592 NL |
28 | |
29 | # installation | |
30 | if(!$this->store->isInstalled()) | |
31 | { | |
32 | $this->install(); | |
33 | } | |
eb1af592 NL |
34 | } |
35 | ||
4a291288 NL |
36 | /** |
37 | * all checks before installation. | |
38 | * @return boolean | |
39 | */ | |
40 | private function checkBeforeInstall() | |
eb1af592 | 41 | { |
4a291288 NL |
42 | $msg = ''; |
43 | $allIsGood = TRUE; | |
bb5a7d9e | 44 | |
abed0f21 NL |
45 | if (!is_writable(CACHE)) { |
46 | Tools::logm('you don\'t have write access on cache directory'); | |
47 | die('You don\'t have write access on cache directory.'); | |
48 | } | |
49 | else if (file_exists('./install/update.php') && !DEBUG_POCHE) { | |
6d7defc8 | 50 | $msg = '<h1>setup</h1><p><strong>It\'s your first time here?</strong> Please copy /install/poche.sqlite in db folder. Then, delete install folder.<br /><strong>If you have already installed poche</strong>, an update is needed <a href="install/update.php">by clicking here</a>.</p>'; |
bb5a7d9e NL |
51 | $allIsGood = FALSE; |
52 | } | |
53 | else if (file_exists('./install') && !DEBUG_POCHE) { | |
6d7defc8 | 54 | $msg = '<h1>setup</h1><p><strong>If you want to update your poche</strong>, you just have to delete /install folder. <br /><strong>To install your poche with sqlite</strong>, copy /install/poche.sqlite in /db and delete the folder /install. you have to delete the /install folder before using poche.</p>'; |
4a291288 NL |
55 | $allIsGood = FALSE; |
56 | } | |
bb5a7d9e NL |
57 | else if (STORAGE == 'sqlite' && !is_writable(STORAGE_SQLITE)) { |
58 | Tools::logm('you don\'t have write access on sqlite file'); | |
6d7defc8 | 59 | $msg = '<h1>error</h1><p>You don\'t have write access on sqlite file.</p>'; |
bb5a7d9e NL |
60 | $allIsGood = FALSE; |
61 | } | |
abed0f21 | 62 | |
4a291288 NL |
63 | if (!$allIsGood) { |
64 | echo $this->tpl->render('error.twig', array( | |
65 | 'msg' => $msg | |
66 | )); | |
8d3275be | 67 | } |
7ce7ec4c | 68 | |
4a291288 NL |
69 | return $allIsGood; |
70 | } | |
eb1af592 | 71 | |
4a291288 NL |
72 | private function initTpl() |
73 | { | |
eb1af592 NL |
74 | # template engine |
75 | $loader = new Twig_Loader_Filesystem(TPL); | |
bc1ee852 NL |
76 | if (DEBUG_POCHE) { |
77 | $twig_params = array(); | |
78 | } | |
79 | else { | |
80 | $twig_params = array('cache' => CACHE); | |
81 | } | |
82 | $this->tpl = new Twig_Environment($loader, $twig_params); | |
eb1af592 | 83 | $this->tpl->addExtension(new Twig_Extensions_Extension_I18n()); |
55821e04 NL |
84 | # filter to display domain name of an url |
85 | $filter = new Twig_SimpleFilter('getDomain', 'Tools::getDomain'); | |
86 | $this->tpl->addFilter($filter); | |
eb1af592 | 87 | |
d9178758 NL |
88 | # filter for reading time |
89 | $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime'); | |
90 | $this->tpl->addFilter($filter); | |
4a291288 NL |
91 | } |
92 | ||
93 | private function init() | |
94 | { | |
95 | Tools::initPhp(); | |
96 | Session::init(); | |
97 | ||
98 | if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) { | |
99 | $this->user = $_SESSION['poche_user']; | |
100 | } | |
101 | else { | |
102 | # fake user, just for install & login screens | |
103 | $this->user = new User(); | |
104 | $this->user->setConfig($this->getDefaultConfig()); | |
105 | } | |
106 | ||
107 | # l10n | |
108 | $language = $this->user->getConfigValue('language'); | |
109 | putenv('LC_ALL=' . $language); | |
110 | setlocale(LC_ALL, $language); | |
111 | bindtextdomain($language, LOCALE); | |
112 | textdomain($language); | |
d9178758 | 113 | |
7ce7ec4c | 114 | # Pagination |
8d3275be | 115 | $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p'); |
eb1af592 NL |
116 | } |
117 | ||
118 | private function install() | |
119 | { | |
120 | Tools::logm('poche still not installed'); | |
121 | echo $this->tpl->render('install.twig', array( | |
6a361945 | 122 | 'token' => Session::getToken() |
eb1af592 NL |
123 | )); |
124 | if (isset($_GET['install'])) { | |
125 | if (($_POST['password'] == $_POST['password_repeat']) | |
126 | && $_POST['password'] != "" && $_POST['login'] != "") { | |
127 | # let's rock, install poche baby ! | |
bb5a7d9e NL |
128 | if ($this->store->install($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login']))) |
129 | { | |
130 | Session::logout(); | |
131 | Tools::logm('poche is now installed'); | |
132 | Tools::redirect(); | |
133 | } | |
6a361945 NL |
134 | } |
135 | else { | |
136 | Tools::logm('error during installation'); | |
eb1af592 NL |
137 | Tools::redirect(); |
138 | } | |
139 | } | |
140 | exit(); | |
141 | } | |
142 | ||
8d3275be NL |
143 | public function getDefaultConfig() |
144 | { | |
145 | return array( | |
146 | 'pager' => PAGINATION, | |
147 | 'language' => LANG, | |
148 | ); | |
149 | } | |
150 | ||
eb1af592 NL |
151 | /** |
152 | * Call action (mark as fav, archive, delete, etc.) | |
153 | */ | |
b916bcfc | 154 | public function action($action, Url $url, $id = 0, $import = FALSE) |
eb1af592 NL |
155 | { |
156 | switch ($action) | |
157 | { | |
158 | case 'add': | |
ec397236 NL |
159 | $content = $url->extract(); |
160 | ||
161 | if ($this->store->add($url->getUrl(), $content['title'], $content['body'], $this->user->getId())) { | |
162 | Tools::logm('add link ' . $url->getUrl()); | |
163 | $sequence = ''; | |
164 | if (STORAGE == 'postgres') { | |
165 | $sequence = 'entries_id_seq'; | |
eb1af592 | 166 | } |
ec397236 NL |
167 | $last_id = $this->store->getLastId($sequence); |
168 | if (DOWNLOAD_PICTURES) { | |
6fb46003 | 169 | $content = filtre_picture($content['body'], $url->getUrl(), $last_id); |
ec397236 NL |
170 | Tools::logm('updating content article'); |
171 | $this->store->updateContent($last_id, $content, $this->user->getId()); | |
172 | } | |
173 | if (!$import) { | |
174 | $this->messages->add('s', _('the link has been added successfully')); | |
eb1af592 NL |
175 | } |
176 | } | |
177 | else { | |
b916bcfc | 178 | if (!$import) { |
ec397236 NL |
179 | $this->messages->add('e', _('error during insertion : the link wasn\'t added')); |
180 | Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl()); | |
b916bcfc NL |
181 | } |
182 | } | |
ec397236 | 183 | |
b916bcfc | 184 | if (!$import) { |
ce4a1dcc | 185 | Tools::redirect('?view=home'); |
eb1af592 NL |
186 | } |
187 | break; | |
188 | case 'delete': | |
bc1ee852 | 189 | $msg = 'delete link #' . $id; |
8d3275be | 190 | if ($this->store->deleteById($id, $this->user->getId())) { |
eb1af592 NL |
191 | if (DOWNLOAD_PICTURES) { |
192 | remove_directory(ABS_PATH . $id); | |
193 | } | |
6a361945 | 194 | $this->messages->add('s', _('the link has been deleted successfully')); |
eb1af592 NL |
195 | } |
196 | else { | |
6a361945 | 197 | $this->messages->add('e', _('the link wasn\'t deleted')); |
bc1ee852 | 198 | $msg = 'error : can\'t delete link #' . $id; |
eb1af592 | 199 | } |
bc1ee852 NL |
200 | Tools::logm($msg); |
201 | Tools::redirect('?'); | |
eb1af592 NL |
202 | break; |
203 | case 'toggle_fav' : | |
8d3275be | 204 | $this->store->favoriteById($id, $this->user->getId()); |
eb1af592 | 205 | Tools::logm('mark as favorite link #' . $id); |
b916bcfc NL |
206 | if (!$import) { |
207 | Tools::redirect(); | |
208 | } | |
eb1af592 NL |
209 | break; |
210 | case 'toggle_archive' : | |
8d3275be | 211 | $this->store->archiveById($id, $this->user->getId()); |
eb1af592 | 212 | Tools::logm('archive link #' . $id); |
b916bcfc NL |
213 | if (!$import) { |
214 | Tools::redirect(); | |
215 | } | |
eb1af592 NL |
216 | break; |
217 | default: | |
218 | break; | |
219 | } | |
220 | } | |
221 | ||
222 | function displayView($view, $id = 0) | |
223 | { | |
224 | $tpl_vars = array(); | |
225 | ||
226 | switch ($view) | |
227 | { | |
eb1af592 | 228 | case 'config': |
32520785 NL |
229 | $dev = $this->getPocheVersion('dev'); |
230 | $prod = $this->getPocheVersion('prod'); | |
231 | $compare_dev = version_compare(POCHE_VERSION, $dev); | |
232 | $compare_prod = version_compare(POCHE_VERSION, $prod); | |
233 | $tpl_vars = array( | |
234 | 'dev' => $dev, | |
235 | 'prod' => $prod, | |
236 | 'compare_dev' => $compare_dev, | |
237 | 'compare_prod' => $compare_prod, | |
238 | ); | |
eb1af592 NL |
239 | Tools::logm('config view'); |
240 | break; | |
241 | case 'view': | |
8d3275be | 242 | $entry = $this->store->retrieveOneById($id, $this->user->getId()); |
eb1af592 NL |
243 | if ($entry != NULL) { |
244 | Tools::logm('view link #' . $id); | |
245 | $content = $entry['content']; | |
246 | if (function_exists('tidy_parse_string')) { | |
247 | $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8'); | |
248 | $tidy->cleanRepair(); | |
249 | $content = $tidy->value; | |
250 | } | |
251 | $tpl_vars = array( | |
252 | 'entry' => $entry, | |
253 | 'content' => $content, | |
254 | ); | |
255 | } | |
256 | else { | |
d8d1542e | 257 | Tools::logm('error in view call : entry is null'); |
eb1af592 NL |
258 | } |
259 | break; | |
093f1efb | 260 | default: # home, favorites and archive views |
8d3275be | 261 | $entries = $this->store->getEntriesByView($view, $this->user->getId()); |
eb1af592 | 262 | $tpl_vars = array( |
3eb04903 N |
263 | 'entries' => '', |
264 | 'page_links' => '', | |
eb1af592 | 265 | ); |
3eb04903 N |
266 | if (count($entries) > 0) { |
267 | $this->pagination->set_total(count($entries)); | |
268 | $page_links = $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . '&'); | |
269 | $datas = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit()); | |
270 | $tpl_vars['entries'] = $datas; | |
271 | $tpl_vars['page_links'] = $page_links; | |
272 | } | |
6a361945 | 273 | Tools::logm('display ' . $view . ' view'); |
eb1af592 NL |
274 | break; |
275 | } | |
276 | ||
277 | return $tpl_vars; | |
278 | } | |
c765c367 | 279 | |
07ee09f4 NL |
280 | /** |
281 | * update the password of the current user. | |
282 | * if MODE_DEMO is TRUE, the password can't be updated. | |
283 | * @todo add the return value | |
284 | * @todo set the new password in function header like this updatePassword($newPassword) | |
285 | * @return boolean | |
286 | */ | |
c765c367 NL |
287 | public function updatePassword() |
288 | { | |
55821e04 | 289 | if (MODE_DEMO) { |
8d3275be | 290 | $this->messages->add('i', _('in demo mode, you can\'t update your password')); |
55821e04 | 291 | Tools::logm('in demo mode, you can\'t do this'); |
6a361945 | 292 | Tools::redirect('?view=config'); |
55821e04 NL |
293 | } |
294 | else { | |
295 | if (isset($_POST['password']) && isset($_POST['password_repeat'])) { | |
296 | if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") { | |
8d3275be NL |
297 | $this->messages->add('s', _('your password has been updated')); |
298 | $this->store->updatePassword($this->user->getId(), Tools::encodeString($_POST['password'] . $this->user->getUsername())); | |
c765c367 | 299 | Session::logout(); |
8d3275be | 300 | Tools::logm('password updated'); |
c765c367 NL |
301 | Tools::redirect(); |
302 | } | |
303 | else { | |
8d3275be | 304 | $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields')); |
6a361945 | 305 | Tools::redirect('?view=config'); |
c765c367 NL |
306 | } |
307 | } | |
308 | } | |
309 | } | |
310 | ||
07ee09f4 NL |
311 | /** |
312 | * checks if login & password are correct and save the user in session. | |
313 | * it redirects the user to the $referer link | |
314 | * @param string $referer the url to redirect after login | |
315 | * @todo add the return value | |
316 | * @return boolean | |
317 | */ | |
c765c367 NL |
318 | public function login($referer) |
319 | { | |
320 | if (!empty($_POST['login']) && !empty($_POST['password'])) { | |
7ce7ec4c NL |
321 | $user = $this->store->login($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login'])); |
322 | if ($user != array()) { | |
323 | # Save login into Session | |
324 | Session::login($user['username'], $user['password'], $_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login']), array('poche_user' => new User($user))); | |
325 | ||
8d3275be | 326 | $this->messages->add('s', _('welcome to your poche')); |
c765c367 NL |
327 | if (!empty($_POST['longlastingsession'])) { |
328 | $_SESSION['longlastingsession'] = 31536000; | |
329 | $_SESSION['expires_on'] = time() + $_SESSION['longlastingsession']; | |
330 | session_set_cookie_params($_SESSION['longlastingsession']); | |
331 | } else { | |
332 | session_set_cookie_params(0); | |
333 | } | |
334 | session_regenerate_id(true); | |
8d3275be | 335 | Tools::logm('login successful'); |
c765c367 NL |
336 | Tools::redirect($referer); |
337 | } | |
8d3275be | 338 | $this->messages->add('e', _('login failed: bad login or password')); |
c765c367 NL |
339 | Tools::logm('login failed'); |
340 | Tools::redirect(); | |
341 | } else { | |
8d3275be | 342 | $this->messages->add('e', _('login failed: you have to fill all fields')); |
c765c367 NL |
343 | Tools::logm('login failed'); |
344 | Tools::redirect(); | |
345 | } | |
346 | } | |
347 | ||
07ee09f4 NL |
348 | /** |
349 | * log out the poche user. It cleans the session. | |
350 | * @todo add the return value | |
351 | * @return boolean | |
352 | */ | |
c765c367 NL |
353 | public function logout() |
354 | { | |
7ce7ec4c | 355 | $this->user = array(); |
c765c367 | 356 | Session::logout(); |
b916bcfc NL |
357 | $this->messages->add('s', _('see you soon!')); |
358 | Tools::logm('logout'); | |
c765c367 NL |
359 | Tools::redirect(); |
360 | } | |
361 | ||
07ee09f4 NL |
362 | /** |
363 | * import from Instapaper. poche needs a ./instapaper-export.html file | |
364 | * @todo add the return value | |
66b6a3b5 | 365 | * @param string $targetFile the file used for importing |
07ee09f4 NL |
366 | * @return boolean |
367 | */ | |
66b6a3b5 | 368 | private function importFromInstapaper($targetFile) |
c765c367 | 369 | { |
7f959169 | 370 | # TODO gestion des articles favs |
a62788c6 | 371 | $html = new simple_html_dom(); |
66b6a3b5 | 372 | $html->load_file($targetFile); |
b916bcfc | 373 | Tools::logm('starting import from instapaper'); |
a62788c6 NL |
374 | |
375 | $read = 0; | |
376 | $errors = array(); | |
377 | foreach($html->find('ol') as $ul) | |
378 | { | |
379 | foreach($ul->find('li') as $li) | |
380 | { | |
381 | $a = $li->find('a'); | |
382 | $url = new Url(base64_encode($a[0]->href)); | |
b916bcfc | 383 | $this->action('add', $url, 0, TRUE); |
a62788c6 | 384 | if ($read == '1') { |
b916bcfc NL |
385 | $sequence = ''; |
386 | if (STORAGE == 'postgres') { | |
387 | $sequence = 'entries_id_seq'; | |
388 | } | |
389 | $last_id = $this->store->getLastId($sequence); | |
390 | $this->action('toggle_archive', $url, $last_id, TRUE); | |
a62788c6 NL |
391 | } |
392 | } | |
7f959169 NL |
393 | |
394 | # the second <ol> is for read links | |
a62788c6 NL |
395 | $read = 1; |
396 | } | |
8d3275be | 397 | $this->messages->add('s', _('import from instapaper completed')); |
63c35580 NL |
398 | Tools::logm('import from instapaper completed'); |
399 | Tools::redirect(); | |
400 | } | |
c765c367 | 401 | |
07ee09f4 NL |
402 | /** |
403 | * import from Pocket. poche needs a ./ril_export.html file | |
404 | * @todo add the return value | |
66b6a3b5 | 405 | * @param string $targetFile the file used for importing |
07ee09f4 NL |
406 | * @return boolean |
407 | */ | |
66b6a3b5 | 408 | private function importFromPocket($targetFile) |
63c35580 | 409 | { |
7f959169 | 410 | # TODO gestion des articles favs |
63c35580 | 411 | $html = new simple_html_dom(); |
66b6a3b5 | 412 | $html->load_file($targetFile); |
b916bcfc | 413 | Tools::logm('starting import from pocket'); |
63c35580 NL |
414 | |
415 | $read = 0; | |
416 | $errors = array(); | |
417 | foreach($html->find('ul') as $ul) | |
418 | { | |
419 | foreach($ul->find('li') as $li) | |
c765c367 | 420 | { |
63c35580 NL |
421 | $a = $li->find('a'); |
422 | $url = new Url(base64_encode($a[0]->href)); | |
b916bcfc | 423 | $this->action('add', $url, 0, TRUE); |
63c35580 | 424 | if ($read == '1') { |
b916bcfc NL |
425 | $sequence = ''; |
426 | if (STORAGE == 'postgres') { | |
427 | $sequence = 'entries_id_seq'; | |
428 | } | |
429 | $last_id = $this->store->getLastId($sequence); | |
430 | $this->action('toggle_archive', $url, $last_id, TRUE); | |
c765c367 | 431 | } |
c765c367 | 432 | } |
7f959169 NL |
433 | |
434 | # the second <ul> is for read links | |
63c35580 | 435 | $read = 1; |
c765c367 | 436 | } |
8d3275be | 437 | $this->messages->add('s', _('import from pocket completed')); |
63c35580 NL |
438 | Tools::logm('import from pocket completed'); |
439 | Tools::redirect(); | |
440 | } | |
c765c367 | 441 | |
07ee09f4 NL |
442 | /** |
443 | * import from Readability. poche needs a ./readability file | |
444 | * @todo add the return value | |
66b6a3b5 | 445 | * @param string $targetFile the file used for importing |
07ee09f4 NL |
446 | * @return boolean |
447 | */ | |
66b6a3b5 | 448 | private function importFromReadability($targetFile) |
63c35580 | 449 | { |
7f959169 | 450 | # TODO gestion des articles lus / favs |
66b6a3b5 | 451 | $str_data = file_get_contents($targetFile); |
63c35580 | 452 | $data = json_decode($str_data,true); |
b916bcfc | 453 | Tools::logm('starting import from Readability'); |
c0d321c1 | 454 | $count = 0; |
63c35580 | 455 | foreach ($data as $key => $value) { |
c0d321c1 NL |
456 | $url = NULL; |
457 | $favorite = FALSE; | |
458 | $archive = FALSE; | |
7f959169 NL |
459 | foreach ($value as $attr => $attr_value) { |
460 | if ($attr == 'article__url') { | |
461 | $url = new Url(base64_encode($attr_value)); | |
c765c367 | 462 | } |
b916bcfc NL |
463 | $sequence = ''; |
464 | if (STORAGE == 'postgres') { | |
465 | $sequence = 'entries_id_seq'; | |
466 | } | |
c0d321c1 NL |
467 | if ($attr_value == 'true') { |
468 | if ($attr == 'favorite') { | |
469 | $favorite = TRUE; | |
470 | } | |
471 | if ($attr == 'archive') { | |
472 | $archive = TRUE; | |
473 | } | |
474 | } | |
475 | } | |
476 | # we can add the url | |
477 | if (!is_null($url) && $url->isCorrect()) { | |
478 | $this->action('add', $url, 0, TRUE); | |
479 | $count++; | |
480 | if ($favorite) { | |
481 | $last_id = $this->store->getLastId($sequence); | |
482 | $this->action('toggle_fav', $url, $last_id, TRUE); | |
483 | } | |
484 | if ($archive) { | |
b916bcfc NL |
485 | $last_id = $this->store->getLastId($sequence); |
486 | $this->action('toggle_archive', $url, $last_id, TRUE); | |
487 | } | |
c765c367 | 488 | } |
c765c367 | 489 | } |
c0d321c1 | 490 | $this->messages->add('s', _('import from Readability completed. ' . $count . ' new links.')); |
63c35580 NL |
491 | Tools::logm('import from Readability completed'); |
492 | Tools::redirect(); | |
c765c367 NL |
493 | } |
494 | ||
07ee09f4 NL |
495 | /** |
496 | * import datas into your poche | |
497 | * @param string $from name of the service to import : pocket, instapaper or readability | |
498 | * @todo add the return value | |
499 | * @return boolean | |
500 | */ | |
63c35580 | 501 | public function import($from) |
c765c367 | 502 | { |
66b6a3b5 E |
503 | $providers = array( |
504 | 'pocket' => 'importFromPocket', | |
505 | 'readability' => 'importFromReadability', | |
506 | 'instapaper' => 'importFromInstapaper' | |
507 | ); | |
508 | ||
509 | if (! isset($providers[$from])) { | |
510 | $this->messages->add('e', _('Unknown import provider.')); | |
511 | Tools::redirect(); | |
63c35580 | 512 | } |
66b6a3b5 E |
513 | |
514 | $targetDefinition = 'IMPORT_' . strtoupper($from) . '_FILE'; | |
515 | $targetFile = constant($targetDefinition); | |
516 | ||
517 | if (! defined($targetDefinition)) { | |
518 | $this->messages->add('e', _('Incomplete inc/poche/define.inc.php file, please define "' . $targetDefinition . '".')); | |
519 | Tools::redirect(); | |
63c35580 | 520 | } |
66b6a3b5 E |
521 | |
522 | if (! file_exists($targetFile)) { | |
523 | $this->messages->add('e', _('Could not find required "' . $targetFile . '" import file.')); | |
524 | Tools::redirect(); | |
63c35580 | 525 | } |
66b6a3b5 E |
526 | |
527 | $this->$providers[$from]($targetFile); | |
63c35580 | 528 | } |
c765c367 | 529 | |
07ee09f4 NL |
530 | /** |
531 | * export poche entries in json | |
532 | * @return json all poche entries | |
533 | */ | |
63c35580 NL |
534 | public function export() |
535 | { | |
8d3275be | 536 | $entries = $this->store->retrieveAll($this->user->getId()); |
63c35580 NL |
537 | echo $this->tpl->render('export.twig', array( |
538 | 'export' => Tools::renderJson($entries), | |
539 | )); | |
540 | Tools::logm('export view'); | |
c765c367 | 541 | } |
32520785 | 542 | |
07ee09f4 | 543 | /** |
a3436d4c | 544 | * Checks online the latest version of poche and cache it |
07ee09f4 NL |
545 | * @param string $which 'prod' or 'dev' |
546 | * @return string latest $which version | |
547 | */ | |
32520785 NL |
548 | private function getPocheVersion($which = 'prod') |
549 | { | |
550 | $cache_file = CACHE . '/' . $which; | |
a3436d4c NL |
551 | |
552 | # checks if the cached version file exists | |
32520785 NL |
553 | if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) { |
554 | $version = file_get_contents($cache_file); | |
555 | } else { | |
bc1ee852 | 556 | $version = file_get_contents('http://static.inthepoche.com/versions/' . $which); |
32520785 NL |
557 | file_put_contents($cache_file, $version, LOCK_EX); |
558 | } | |
559 | return $version; | |
560 | } | |
eb1af592 | 561 | } |