]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Poche.class.php
Added save search as tag functionality
[github/wallabag/wallabag.git] / inc / poche / Poche.class.php
CommitLineData
eb1af592
NL
1<?php
2/**
c95b78a8 3 * wallabag, self hostable application allowing you to not miss any content anymore
eb1af592 4 *
c95b78a8
NL
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
eb1af592
NL
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11class Poche
12{
00dbaf90
NL
13 public static $canRenderTemplates = true;
14 public static $configFileAvailable = true;
15
7ce7ec4c 16 public $user;
eb1af592
NL
17 public $store;
18 public $tpl;
55821e04 19 public $messages;
6a361945 20 public $pagination;
182faf26 21
00dbaf90 22 private $currentTheme = '';
5011388f 23 private $currentLanguage = '';
9d3b88b3 24 private $notInstalledMessage = array();
eb1af592 25
c9bd17a1
NL
26 private $language_names = array(
27 'cs_CZ.utf8' => 'čeština',
28 'de_DE.utf8' => 'German',
29 'en_EN.utf8' => 'English',
30 'es_ES.utf8' => 'Español',
31 'fa_IR.utf8' => 'فارسی',
32 'fr_FR.utf8' => 'Français',
33 'it_IT.utf8' => 'Italiano',
34 'pl_PL.utf8' => 'Polski',
5805ac45 35 'pt_BR.utf8' => 'Português (Brasil)',
c9bd17a1
NL
36 'ru_RU.utf8' => 'Pусский',
37 'sl_SI.utf8' => 'Slovenščina',
cbcae403 38 'uk_UA.utf8' => 'Українська',
c9bd17a1 39 );
00dbaf90 40 public function __construct()
eb1af592 41 {
9d3b88b3
NL
42 if ($this->configFileIsAvailable()) {
43 $this->init();
00dbaf90 44 }
182faf26 45
9d3b88b3
NL
46 if ($this->themeIsInstalled()) {
47 $this->initTpl();
00dbaf90 48 }
182faf26 49
9d3b88b3
NL
50 if ($this->systemIsInstalled()) {
51 $this->store = new Database();
52 $this->messages = new Messages();
53 # installation
54 if (! $this->store->isInstalled()) {
55 $this->install();
56 }
5cfafc61 57 $this->store->checkTags();
eb1af592 58 }
eb1af592 59 }
182faf26
MR
60
61 private function init()
00dbaf90
NL
62 {
63 Tools::initPhp();
eb1af592 64
00dbaf90
NL
65 if (isset($_SESSION['poche_user']) && $_SESSION['poche_user'] != array()) {
66 $this->user = $_SESSION['poche_user'];
67 } else {
68 # fake user, just for install & login screens
69 $this->user = new User();
70 $this->user->setConfig($this->getDefaultConfig());
71 }
72
73 # l10n
74 $language = $this->user->getConfigValue('language');
b6413975 75 @putenv('LC_ALL=' . $language);
00dbaf90 76 setlocale(LC_ALL, $language);
182faf26
MR
77 bindtextdomain($language, LOCALE);
78 textdomain($language);
00dbaf90
NL
79
80 # Pagination
81 $this->pagination = new Paginator($this->user->getConfigValue('pager'), 'p');
182faf26 82
00dbaf90
NL
83 # Set up theme
84 $themeDirectory = $this->user->getConfigValue('theme');
182faf26 85
00dbaf90
NL
86 if ($themeDirectory === false) {
87 $themeDirectory = DEFAULT_THEME;
88 }
182faf26 89
00dbaf90 90 $this->currentTheme = $themeDirectory;
5011388f
NL
91
92 # Set up language
93 $languageDirectory = $this->user->getConfigValue('language');
182faf26 94
5011388f
NL
95 if ($languageDirectory === false) {
96 $languageDirectory = DEFAULT_THEME;
97 }
182faf26 98
5011388f 99 $this->currentLanguage = $languageDirectory;
00dbaf90
NL
100 }
101
102 public function configFileIsAvailable() {
103 if (! self::$configFileAvailable) {
43c7b978 104 $this->notInstalledMessage[] = 'You have to copy (don\'t just rename!) inc/poche/config.inc.default.php to inc/poche/config.inc.php.';
00dbaf90
NL
105
106 return false;
107 }
108
109 return true;
110 }
182faf26 111
00dbaf90 112 public function themeIsInstalled() {
9d3b88b3 113 $passTheme = TRUE;
00dbaf90
NL
114 # Twig is an absolute requirement for Poche to function. Abort immediately if the Composer installer hasn't been run yet
115 if (! self::$canRenderTemplates) {
41265e07 116 $this->notInstalledMessage[] = 'Twig does not seem to be installed. Please initialize the Composer installation to automatically fetch dependencies. You can also download <a href="http://wllbg.org/vendor">vendor.zip</a> and extract it in your wallabag folder.';
9d3b88b3 117 $passTheme = FALSE;
00dbaf90 118 }
7f17a38d
NL
119
120 if (! is_writable(CACHE)) {
9d3b88b3 121 $this->notInstalledMessage[] = 'You don\'t have write access on cache directory.';
7f17a38d
NL
122
123 self::$canRenderTemplates = false;
124
9d3b88b3 125 $passTheme = FALSE;
182faf26
MR
126 }
127
00dbaf90 128 # Check if the selected theme and its requirements are present
f4fbfaa7
NL
129 $theme = $this->getTheme();
130
131 if ($theme != '' && ! is_dir(THEME . '/' . $theme)) {
132 $this->notInstalledMessage[] = 'The currently selected theme (' . $theme . ') does not seem to be properly installed (Missing directory: ' . THEME . '/' . $theme . ')';
182faf26 133
00dbaf90 134 self::$canRenderTemplates = false;
182faf26 135
9d3b88b3 136 $passTheme = FALSE;
00dbaf90 137 }
182faf26 138
f4fbfaa7
NL
139 $themeInfo = $this->getThemeInfo($theme);
140 if (isset($themeInfo['requirements']) && is_array($themeInfo['requirements'])) {
141 foreach ($themeInfo['requirements'] as $requiredTheme) {
142 if (! is_dir(THEME . '/' . $requiredTheme)) {
143 $this->notInstalledMessage[] = 'The required "' . $requiredTheme . '" theme is missing for the current theme (' . $theme . ')';
182faf26 144
f4fbfaa7 145 self::$canRenderTemplates = false;
182faf26 146
f4fbfaa7
NL
147 $passTheme = FALSE;
148 }
00dbaf90
NL
149 }
150 }
9d3b88b3
NL
151
152 if (!$passTheme) {
153 return FALSE;
154 }
155
182faf26 156
00dbaf90
NL
157 return true;
158 }
182faf26 159
4a291288
NL
160 /**
161 * all checks before installation.
00dbaf90 162 * @todo move HTML to template
182faf26 163 * @return boolean
4a291288 164 */
00dbaf90 165 public function systemIsInstalled()
eb1af592 166 {
9d3b88b3 167 $msg = TRUE;
182faf26 168
00dbaf90 169 $configSalt = defined('SALT') ? constant('SALT') : '';
182faf26 170
00dbaf90 171 if (empty($configSalt)) {
9d3b88b3
NL
172 $this->notInstalledMessage[] = 'You have not yet filled in the SALT value in the config.inc.php file.';
173 $msg = FALSE;
174 }
175 if (STORAGE == 'sqlite' && ! file_exists(STORAGE_SQLITE)) {
00dbaf90 176 Tools::logm('sqlite file doesn\'t exist');
9d3b88b3
NL
177 $this->notInstalledMessage[] = 'sqlite file doesn\'t exist, you can find it in install folder. Copy it in /db folder.';
178 $msg = FALSE;
179 }
180 if (is_dir(ROOT . '/install') && ! DEBUG_POCHE) {
181 $this->notInstalledMessage[] = 'you have to delete the /install folder before using poche.';
182 $msg = FALSE;
183 }
184 if (STORAGE == 'sqlite' && ! is_writable(STORAGE_SQLITE)) {
bb5a7d9e 185 Tools::logm('you don\'t have write access on sqlite file');
9d3b88b3
NL
186 $this->notInstalledMessage[] = 'You don\'t have write access on sqlite file.';
187 $msg = FALSE;
bb5a7d9e 188 }
00dbaf90 189
9d3b88b3 190 if (! $msg) {
00dbaf90 191 return false;
8d3275be 192 }
7ce7ec4c 193
00dbaf90
NL
194 return true;
195 }
182faf26 196
00dbaf90
NL
197 public function getNotInstalledMessage() {
198 return $this->notInstalledMessage;
4a291288 199 }
eb1af592 200
4a291288
NL
201 private function initTpl()
202 {
00dbaf90 203 $loaderChain = new Twig_Loader_Chain();
f4fbfaa7 204 $theme = $this->getTheme();
182faf26 205
00dbaf90
NL
206 # add the current theme as first to the loader chain so Twig will look there first for overridden template files
207 try {
f4fbfaa7 208 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . $theme));
00dbaf90
NL
209 } catch (Twig_Error_Loader $e) {
210 # @todo isInstalled() should catch this, inject Twig later
f4fbfaa7 211 die('The currently selected theme (' . $theme . ') does not seem to be properly installed (' . THEME . '/' . $theme .' is missing)');
00dbaf90 212 }
182faf26 213
00dbaf90 214 # add all required themes to the loader chain
f4fbfaa7
NL
215 $themeInfo = $this->getThemeInfo($theme);
216 if (isset($themeInfo['requirements']) && is_array($themeInfo['requirements'])) {
217 foreach ($themeInfo['requirements'] as $requiredTheme) {
218 try {
219 $loaderChain->addLoader(new Twig_Loader_Filesystem(THEME . '/' . $requiredTheme));
220 } catch (Twig_Error_Loader $e) {
221 # @todo isInstalled() should catch this, inject Twig later
222 die('The required "' . $requiredTheme . '" theme is missing for the current theme (' . $theme . ')');
223 }
00dbaf90
NL
224 }
225 }
182faf26 226
bc1ee852 227 if (DEBUG_POCHE) {
f4fbfaa7 228 $twigParams = array();
00dbaf90 229 } else {
f4fbfaa7 230 $twigParams = array('cache' => CACHE);
bc1ee852 231 }
182faf26 232
f4fbfaa7 233 $this->tpl = new Twig_Environment($loaderChain, $twigParams);
eb1af592 234 $this->tpl->addExtension(new Twig_Extensions_Extension_I18n());
182faf26 235
55821e04
NL
236 # filter to display domain name of an url
237 $filter = new Twig_SimpleFilter('getDomain', 'Tools::getDomain');
238 $this->tpl->addFilter($filter);
eb1af592 239
d9178758
NL
240 # filter for reading time
241 $filter = new Twig_SimpleFilter('getReadingTime', 'Tools::getReadingTime');
242 $this->tpl->addFilter($filter);
eb1af592 243 }
b6413975 244
4d99bae8 245 public function createNewUser() {
246 if (isset($_GET['newuser'])){
247 if ($_POST['newusername'] != "" && $_POST['password4newuser'] != ""){
248 $newusername = filter_var($_POST['newusername'], FILTER_SANITIZE_STRING);
b6413975 249 if (!$this->store->userExists($newusername)){
4d99bae8 250 if ($this->store->install($newusername, Tools::encodeString($_POST['password4newuser'] . $newusername))) {
251 Tools::logm('The new user '.$newusername.' has been installed');
252 $this->messages->add('s', sprintf(_('The new user %s has been installed. Do you want to <a href="?logout">logout ?</a>'),$newusername));
253 Tools::redirect();
254 }
255 else {
256 Tools::logm('error during adding new user');
257 Tools::redirect();
258 }
259 }
260 else {
261 $this->messages->add('e', sprintf(_('Error : An user with the name %s already exists !'),$newusername));
262 Tools::logm('An user with the name '.$newusername.' already exists !');
263 Tools::redirect();
264 }
265 }
266 }
267 }
b6413975 268
4d99bae8 269 public function deleteUser(){
270 if (isset($_GET['deluser'])){
271 if ($this->store->listUsers() > 1) {
272 if (Tools::encodeString($_POST['password4deletinguser'].$this->user->getUsername()) == $this->store->getUserPassword($this->user->getId())) {
273 $username = $this->user->getUsername();
274 $this->store->deleteUserConfig($this->user->getId());
275 Tools::logm('The configuration for user '. $username .' has been deleted !');
276 $this->store->deleteTagsEntriesAndEntries($this->user->getId());
277 Tools::logm('The entries for user '. $username .' has been deleted !');
278 $this->store->deleteUser($this->user->getId());
279 Tools::logm('User '. $username .' has been completely deleted !');
280 Session::logout();
281 Tools::logm('logout');
282 Tools::redirect();
283 $this->messages->add('s', sprintf(_('User %s has been successfully deleted !'),$newusername));
284 }
285 else {
286 Tools::logm('Bad password !');
287 $this->messages->add('e', _('Error : The password is wrong !'));
288 }
289 }
290 else {
291 Tools::logm('Only user !');
292 $this->messages->add('e', _('Error : You are the only user, you cannot delete your account !'));
293 }
294 }
295 }
eb1af592 296
f4fbfaa7 297 private function install()
eb1af592
NL
298 {
299 Tools::logm('poche still not installed');
300 echo $this->tpl->render('install.twig', array(
00dbaf90
NL
301 'token' => Session::getToken(),
302 'theme' => $this->getTheme(),
303 'poche_url' => Tools::getPocheUrl()
eb1af592
NL
304 ));
305 if (isset($_GET['install'])) {
182faf26 306 if (($_POST['password'] == $_POST['password_repeat'])
eb1af592
NL
307 && $_POST['password'] != "" && $_POST['login'] != "") {
308 # let's rock, install poche baby !
bb5a7d9e
NL
309 if ($this->store->install($_POST['login'], Tools::encodeString($_POST['password'] . $_POST['login'])))
310 {
311 Session::logout();
312 Tools::logm('poche is now installed');
313 Tools::redirect();
314 }
6a361945
NL
315 }
316 else {
317 Tools::logm('error during installation');
eb1af592
NL
318 Tools::redirect();
319 }
320 }
321 exit();
322 }
182faf26 323
00dbaf90
NL
324 public function getTheme() {
325 return $this->currentTheme;
326 }
5011388f 327
f4fbfaa7
NL
328 /**
329 * Provides theme information by parsing theme.ini file if present in the theme's root directory.
330 * In all cases, the following data will be returned:
331 * - name: theme's name, or key if the theme is unnamed,
332 * - current: boolean informing if the theme is the current user theme.
333 *
334 * @param string $theme Theme key (directory name)
335 * @return array|boolean Theme information, or false if the theme doesn't exist.
336 */
337 public function getThemeInfo($theme) {
338 if (!is_dir(THEME . '/' . $theme)) {
339 return false;
340 }
341
342 $themeIniFile = THEME . '/' . $theme . '/theme.ini';
343 $themeInfo = array();
344
345 if (is_file($themeIniFile) && is_readable($themeIniFile)) {
346 $themeInfo = parse_ini_file($themeIniFile);
347 }
182faf26 348
f4fbfaa7
NL
349 if ($themeInfo === false) {
350 $themeInfo = array();
351 }
352 if (!isset($themeInfo['name'])) {
353 $themeInfo['name'] = $theme;
354 }
355 $themeInfo['current'] = ($theme === $this->getTheme());
356
357 return $themeInfo;
5011388f 358 }
182faf26 359
00dbaf90
NL
360 public function getInstalledThemes() {
361 $handle = opendir(THEME);
362 $themes = array();
f4fbfaa7 363
00dbaf90
NL
364 while (($theme = readdir($handle)) !== false) {
365 # Themes are stored in a directory, so all directory names are themes
366 # @todo move theme installation data to database
f4fbfaa7 367 if (!is_dir(THEME . '/' . $theme) || in_array($theme, array('.', '..'))) {
00dbaf90
NL
368 continue;
369 }
f4fbfaa7
NL
370
371 $themes[$theme] = $this->getThemeInfo($theme);
00dbaf90 372 }
f4fbfaa7 373
3ade95a3
NL
374 ksort($themes);
375
00dbaf90
NL
376 return $themes;
377 }
eb1af592 378
f4fbfaa7
NL
379 public function getLanguage() {
380 return $this->currentLanguage;
381 }
382
5011388f
NL
383 public function getInstalledLanguages() {
384 $handle = opendir(LOCALE);
385 $languages = array();
182faf26 386
5011388f
NL
387 while (($language = readdir($handle)) !== false) {
388 # Languages are stored in a directory, so all directory names are languages
389 # @todo move language installation data to database
cbcae403 390 if (! is_dir(LOCALE . '/' . $language) || in_array($language, array('..', '.', 'tools'))) {
5011388f
NL
391 continue;
392 }
182faf26 393
5011388f 394 $current = false;
182faf26 395
5011388f
NL
396 if ($language === $this->getLanguage()) {
397 $current = true;
398 }
182faf26 399
cbcae403 400 $languages[] = array('name' => (isset($this->language_names[$language]) ? $this->language_names[$language] : $language), 'value' => $language, 'current' => $current);
5011388f 401 }
182faf26 402
5011388f
NL
403 return $languages;
404 }
405
8d3275be 406 public function getDefaultConfig()
182faf26 407 {
8d3275be
NL
408 return array(
409 'pager' => PAGINATION,
410 'language' => LANG,
00dbaf90
NL
411 'theme' => DEFAULT_THEME
412 );
8d3275be
NL
413 }
414
eb1af592
NL
415 /**
416 * Call action (mark as fav, archive, delete, etc.)
417 */
926acd7b 418 public function action($action, Url $url, $id = 0, $import = FALSE, $autoclose = FALSE, $tags = null)
eb1af592
NL
419 {
420 switch ($action)
421 {
422 case 'add':
a297fb1e
MR
423 $content = Tools::getPageContent($url);
424 $title = ($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled');
425 $body = $content['rss']['channel']['item']['description'];
426
427 // clean content from prevent xss attack
0f859c6f 428 $purifier = $this->getPurifier();
a297fb1e
MR
429 $title = $purifier->purify($title);
430 $body = $purifier->purify($body);
1570a653 431
182faf26 432 //search for possible duplicate
8d7cd2cc 433 $duplicate = NULL;
a297fb1e 434 $duplicate = $this->store->retrieveOneByURL($url->getUrl(), $this->user->getId());
488fc63b 435
182faf26 436 $last_id = $this->store->add($url->getUrl(), $title, $body, $this->user->getId());
a297fb1e 437 if ( $last_id ) {
ec397236 438 Tools::logm('add link ' . $url->getUrl());
ec397236 439 if (DOWNLOAD_PICTURES) {
42c80841 440 $content = filtre_picture($body, $url->getUrl(), $last_id);
ec397236
NL
441 Tools::logm('updating content article');
442 $this->store->updateContent($last_id, $content, $this->user->getId());
443 }
488fc63b
MR
444
445 if ($duplicate != NULL) {
446 // duplicate exists, so, older entry needs to be deleted (as new entry should go to the top of list), BUT favorite mark and tags should be preserved
447 Tools::logm('link ' . $url->getUrl() . ' is a duplicate');
448 // 1) - preserve tags and favorite, then drop old entry
449 $this->store->reassignTags($duplicate['id'], $last_id);
450 if ($duplicate['is_fav']) {
451 $this->store->favoriteById($last_id, $this->user->getId());
452 }
453 if ($this->store->deleteById($duplicate['id'], $this->user->getId())) {
454 Tools::logm('previous link ' . $url->getUrl() .' entry deleted');
455 }
456 }
457
182faf26 458 $this->messages->add('s', _('the link has been added successfully'));
eb1af592
NL
459 }
460 else {
a297fb1e
MR
461 $this->messages->add('e', _('error during insertion : the link wasn\'t added'));
462 Tools::logm('error during insertion : the link wasn\'t added ' . $url->getUrl());
b916bcfc 463 }
ec397236 464
a297fb1e
MR
465 if ($autoclose == TRUE) {
466 Tools::redirect('?view=home');
467 } else {
468 Tools::redirect('?view=home&closewin=true');
eb1af592
NL
469 }
470 break;
471 case 'delete':
bc1ee852 472 $msg = 'delete link #' . $id;
8d3275be 473 if ($this->store->deleteById($id, $this->user->getId())) {
eb1af592
NL
474 if (DOWNLOAD_PICTURES) {
475 remove_directory(ABS_PATH . $id);
476 }
6a361945 477 $this->messages->add('s', _('the link has been deleted successfully'));
eb1af592
NL
478 }
479 else {
6a361945 480 $this->messages->add('e', _('the link wasn\'t deleted'));
bc1ee852 481 $msg = 'error : can\'t delete link #' . $id;
eb1af592 482 }
bc1ee852 483 Tools::logm($msg);
985ce3ec 484 Tools::redirect('?');
eb1af592
NL
485 break;
486 case 'toggle_fav' :
8d3275be 487 $this->store->favoriteById($id, $this->user->getId());
eb1af592 488 Tools::logm('mark as favorite link #' . $id);
c2cf7075
MR
489 if ( Tools::isAjaxRequest() ) {
490 echo 1;
491 exit;
492 }
493 else {
494 Tools::redirect();
495 }
eb1af592
NL
496 break;
497 case 'toggle_archive' :
8d3275be 498 $this->store->archiveById($id, $this->user->getId());
eb1af592 499 Tools::logm('archive link #' . $id);
c2cf7075
MR
500 if ( Tools::isAjaxRequest() ) {
501 echo 1;
502 exit;
503 }
504 else {
505 Tools::redirect();
506 }
eb1af592 507 break;
f14807de
NL
508 case 'archive_all' :
509 $this->store->archiveAll($this->user->getId());
510 Tools::logm('archive all links');
a297fb1e 511 Tools::redirect();
f14807de 512 break;
c432fa16 513 case 'add_tag' :
decc23aa 514 if (isset($_GET['search'])) {
515 //when we want to apply a tag to a search
516 $search = true;
517 $tags = array($_GET['search']);
518 $allentry_ids = $this->store->search($tags[0], $this->user->getId());
519 $entry_ids = array();
520 foreach ($allentry_ids as $eachentry) {
521 $entry_ids[] = $eachentry[0];
522 }
523 } else { //add a tag to a single article
524 $tags = explode(',', $_POST['value']);
525 $entry_ids = array($_POST['entry_id']);
fb26cc93 526 }
decc23aa 527 foreach($entry_ids as $entry_id) {
528 $entry = $this->store->retrieveOneById($entry_id, $this->user->getId());
529 if (!$entry) {
530 $this->messages->add('e', _('Article not found!'));
531 Tools::logm('error : article not found');
532 Tools::redirect();
533 }
534 //get all already set tags to preven duplicates
535 $already_set_tags = array();
536 $entry_tags = $this->store->retrieveTagsByEntry($entry_id);
537 foreach ($entry_tags as $tag) {
538 $already_set_tags[] = $tag['value'];
539 }
540 foreach($tags as $key => $tag_value) {
541 $value = trim($tag_value);
542 if ($value && !in_array($value, $already_set_tags)) {
543 $tag = $this->store->retrieveTagByValue($value);
544 if (is_null($tag)) {
545 # we create the tag
546 $tag = $this->store->createTag($value);
547 $sequence = '';
548 if (STORAGE == 'postgres') {
549 $sequence = 'tags_id_seq';
550 }
551 $tag_id = $this->store->getLastId($sequence);
fb26cc93 552 }
decc23aa 553 else {
554 $tag_id = $tag['id'];
555 }
556
557 # we assign the tag to the article
558 $this->store->setTagToEntry($tag_id, $entry_id);
559 }
c432fa16 560 }
c432fa16 561 }
decc23aa 562 $this->messages->add('s', _('the tag has been applied successfully'));
a297fb1e 563 Tools::redirect();
c432fa16
NL
564 break;
565 case 'remove_tag' :
566 $tag_id = $_GET['tag_id'];
b89d5a2b
NL
567 $entry = $this->store->retrieveOneById($id, $this->user->getId());
568 if (!$entry) {
569 $this->messages->add('e', _('Article not found!'));
570 Tools::logm('error : article not found');
571 Tools::redirect();
572 }
c432fa16
NL
573 $this->store->removeTagForEntry($id, $tag_id);
574 Tools::redirect();
575 break;
eb1af592
NL
576 default:
577 break;
578 }
579 }
580
581 function displayView($view, $id = 0)
582 {
583 $tpl_vars = array();
584
585 switch ($view)
586 {
eb1af592 587 case 'config':
11c680f9
NL
588 $dev_infos = $this->getPocheVersion('dev');
589 $dev = trim($dev_infos[0]);
590 $check_time_dev = date('d-M-Y H:i', $dev_infos[1]);
591 $prod_infos = $this->getPocheVersion('prod');
592 $prod = trim($prod_infos[0]);
593 $check_time_prod = date('d-M-Y H:i', $prod_infos[1]);
031df528
NL
594 $compare_dev = version_compare(POCHE, $dev);
595 $compare_prod = version_compare(POCHE, $prod);
00dbaf90 596 $themes = $this->getInstalledThemes();
5011388f 597 $languages = $this->getInstalledLanguages();
72c20a52 598 $token = $this->user->getConfigValue('token');
1810c13b 599 $http_auth = (isset($_SERVER['PHP_AUTH_USER']) || isset($_SERVER['REMOTE_USER'])) ? true : false;
4d99bae8 600 $only_user = ($this->store->listUsers() > 1) ? false : true;
32520785 601 $tpl_vars = array(
00dbaf90 602 'themes' => $themes,
5011388f 603 'languages' => $languages,
32520785
NL
604 'dev' => $dev,
605 'prod' => $prod,
11c680f9
NL
606 'check_time_dev' => $check_time_dev,
607 'check_time_prod' => $check_time_prod,
32520785
NL
608 'compare_dev' => $compare_dev,
609 'compare_prod' => $compare_prod,
72c20a52
NL
610 'token' => $token,
611 'user_id' => $this->user->getId(),
df6afaf0 612 'http_auth' => $http_auth,
4d99bae8 613 'only_user' => $only_user
32520785 614 );
eb1af592
NL
615 Tools::logm('config view');
616 break;
6cab59c3
NL
617 case 'edit-tags':
618 # tags
b89d5a2b
NL
619 $entry = $this->store->retrieveOneById($id, $this->user->getId());
620 if (!$entry) {
621 $this->messages->add('e', _('Article not found!'));
622 Tools::logm('error : article not found');
623 Tools::redirect();
624 }
6cab59c3
NL
625 $tags = $this->store->retrieveTagsByEntry($id);
626 $tpl_vars = array(
c432fa16 627 'entry_id' => $id,
6cab59c3 628 'tags' => $tags,
032e0ca1 629 'entry' => $entry,
4886ed6d
NL
630 );
631 break;
2e2ebe5e 632 case 'tags':
f778e472 633 $token = $this->user->getConfigValue('token');
fb26cc93
MR
634 //if term is set - search tags for this term
635 $term = Tools::checkVar('term');
636 $tags = $this->store->retrieveAllTags($this->user->getId(), $term);
637 if (Tools::isAjaxRequest()) {
638 $result = array();
639 foreach ($tags as $tag) {
640 $result[] = $tag['value'];
641 }
642 echo json_encode($result);
643 exit;
644 }
2e2ebe5e 645 $tpl_vars = array(
f778e472
NL
646 'token' => $token,
647 'user_id' => $this->user->getId(),
2e2ebe5e
NL
648 'tags' => $tags,
649 );
650 break;
a4585f7e
MR
651 case 'search':
652 if (isset($_GET['search'])) {
653 $search = filter_var($_GET['search'], FILTER_SANITIZE_STRING);
654 $tpl_vars['entries'] = $this->store->search($search, $this->user->getId());
655 $count = count($tpl_vars['entries']);
656 $this->pagination->set_total($count);
657 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
658 $this->pagination->page_links('?view=' . $view . '?search=' . $search . '&sort=' . $_SESSION['sort'] . '&' ));
659 $tpl_vars['page_links'] = $page_links;
660 $tpl_vars['nb_results'] = $count;
661 $tpl_vars['search_term'] = $search;
662 }
663 break;
eb1af592 664 case 'view':
8d3275be 665 $entry = $this->store->retrieveOneById($id, $this->user->getId());
eb1af592
NL
666 if ($entry != NULL) {
667 Tools::logm('view link #' . $id);
668 $content = $entry['content'];
669 if (function_exists('tidy_parse_string')) {
670 $tidy = tidy_parse_string($content, array('indent'=>true, 'show-body-only' => true), 'UTF8');
671 $tidy->cleanRepair();
672 $content = $tidy->value;
3408ed48 673 }
a3223127 674
3408ed48
NL
675 # flattr checking
676 $flattr = new FlattrItem();
7b171c73
NL
677 $flattr->checkItem($entry['url'], $entry['id']);
678
679 # tags
680 $tags = $this->store->retrieveTagsByEntry($entry['id']);
a3223127 681
3408ed48 682 $tpl_vars = array(
7b171c73
NL
683 'entry' => $entry,
684 'content' => $content,
685 'flattr' => $flattr,
686 'tags' => $tags
3408ed48 687 );
eb1af592
NL
688 }
689 else {
d8d1542e 690 Tools::logm('error in view call : entry is null');
eb1af592
NL
691 }
692 break;
032e0ca1 693 default: # home, favorites, archive and tag views
eb1af592 694 $tpl_vars = array(
3eb04903
N
695 'entries' => '',
696 'page_links' => '',
7f9f5281 697 'nb_results' => '',
6065553c 698 'listmode' => (isset($_COOKIE['listmode']) ? true : false),
eb1af592 699 );
182faf26 700
032e0ca1
MR
701 //if id is given - we retrive entries by tag: id is tag id
702 if ($id) {
703 $tpl_vars['tag'] = $this->store->retrieveTag($id, $this->user->getId());
704 $tpl_vars['id'] = intval($id);
705 }
706
707 $count = $this->store->getEntriesByViewCount($view, $this->user->getId(), $id);
708
709 if ($count > 0) {
710 $this->pagination->set_total($count);
c515ffec 711 $page_links = str_replace(array('previous', 'next'), array(_('previous'), _('next')),
032e0ca1
MR
712 $this->pagination->page_links('?view=' . $view . '&sort=' . $_SESSION['sort'] . (($id)?'&id='.$id:'') . '&' ));
713 $tpl_vars['entries'] = $this->store->getEntriesByView($view, $this->user->getId(), $this->pagination->get_limit(), $id);
3eb04903 714 $tpl_vars['page_links'] = $page_links;
032e0ca1 715 $tpl_vars['nb_results'] = $count;
3eb04903 716 }
6a361945 717 Tools::logm('display ' . $view . ' view');
eb1af592
NL
718 break;
719 }
720
721 return $tpl_vars;
722 }
c765c367 723
07ee09f4 724 /**
182faf26
MR
725 * update the password of the current user.
726 * if MODE_DEMO is TRUE, the password can't be updated.
07ee09f4
NL
727 * @todo add the return value
728 * @todo set the new password in function header like this updatePassword($newPassword)
729 * @return boolean
730 */
c765c367
NL
731 public function updatePassword()
732 {
55821e04 733 if (MODE_DEMO) {
8d3275be 734 $this->messages->add('i', _('in demo mode, you can\'t update your password'));
55821e04 735 Tools::logm('in demo mode, you can\'t do this');
6a361945 736 Tools::redirect('?view=config');
55821e04
NL
737 }
738 else {
739 if (isset($_POST['password']) && isset($_POST['password_repeat'])) {
740 if ($_POST['password'] == $_POST['password_repeat'] && $_POST['password'] != "") {
8d3275be
NL
741 $this->messages->add('s', _('your password has been updated'));
742 $this->store->updatePassword($this->user->getId(), Tools::encodeString($_POST['password'] . $this->user->getUsername()));
c765c367 743 Session::logout();
8d3275be 744 Tools::logm('password updated');
c765c367
NL
745 Tools::redirect();
746 }
747 else {
8d3275be 748 $this->messages->add('e', _('the two fields have to be filled & the password must be the same in the two fields'));
6a361945 749 Tools::redirect('?view=config');
c765c367
NL
750 }
751 }
752 }
753 }
182faf26 754
00dbaf90
NL
755 public function updateTheme()
756 {
757 # no data
758 if (empty($_POST['theme'])) {
759 }
182faf26 760
00dbaf90
NL
761 # we are not going to change it to the current theme...
762 if ($_POST['theme'] == $this->getTheme()) {
763 $this->messages->add('w', _('still using the "' . $this->getTheme() . '" theme!'));
764 Tools::redirect('?view=config');
765 }
182faf26 766
00dbaf90
NL
767 $themes = $this->getInstalledThemes();
768 $actualTheme = false;
182faf26 769
f4fbfaa7
NL
770 foreach (array_keys($themes) as $theme) {
771 if ($theme == $_POST['theme']) {
00dbaf90
NL
772 $actualTheme = true;
773 break;
774 }
775 }
182faf26 776
00dbaf90
NL
777 if (! $actualTheme) {
778 $this->messages->add('e', _('that theme does not seem to be installed'));
779 Tools::redirect('?view=config');
780 }
182faf26 781
00dbaf90
NL
782 $this->store->updateUserConfig($this->user->getId(), 'theme', $_POST['theme']);
783 $this->messages->add('s', _('you have changed your theme preferences'));
182faf26 784
00dbaf90
NL
785 $currentConfig = $_SESSION['poche_user']->config;
786 $currentConfig['theme'] = $_POST['theme'];
182faf26 787
00dbaf90 788 $_SESSION['poche_user']->setConfig($currentConfig);
56532c4e
NL
789
790 $this->emptyCache();
182faf26 791
00dbaf90
NL
792 Tools::redirect('?view=config');
793 }
c765c367 794
5011388f
NL
795 public function updateLanguage()
796 {
797 # no data
798 if (empty($_POST['language'])) {
799 }
182faf26 800
5011388f
NL
801 # we are not going to change it to the current language...
802 if ($_POST['language'] == $this->getLanguage()) {
803 $this->messages->add('w', _('still using the "' . $this->getLanguage() . '" language!'));
804 Tools::redirect('?view=config');
805 }
182faf26 806
5011388f
NL
807 $languages = $this->getInstalledLanguages();
808 $actualLanguage = false;
182faf26 809
5011388f 810 foreach ($languages as $language) {
c9bd17a1 811 if ($language['value'] == $_POST['language']) {
5011388f
NL
812 $actualLanguage = true;
813 break;
814 }
815 }
182faf26 816
5011388f
NL
817 if (! $actualLanguage) {
818 $this->messages->add('e', _('that language does not seem to be installed'));
819 Tools::redirect('?view=config');
820 }
182faf26 821
5011388f
NL
822 $this->store->updateUserConfig($this->user->getId(), 'language', $_POST['language']);
823 $this->messages->add('s', _('you have changed your language preferences'));
182faf26 824
5011388f
NL
825 $currentConfig = $_SESSION['poche_user']->config;
826 $currentConfig['language'] = $_POST['language'];
182faf26 827
5011388f 828 $_SESSION['poche_user']->setConfig($currentConfig);
e145f767
NL
829
830 $this->emptyCache();
182faf26 831
5011388f 832 Tools::redirect('?view=config');
182faf26 833 }
df6afaf0
DS
834 /**
835 * get credentials from differents sources
836 * it redirects the user to the $referer link
837 * @return array
838 */
1810c13b
NL
839 private function credentials() {
840 if(isset($_SERVER['PHP_AUTH_USER'])) {
6af66b11 841 return array($_SERVER['PHP_AUTH_USER'],'php_auth',true);
1810c13b
NL
842 }
843 if(!empty($_POST['login']) && !empty($_POST['password'])) {
6af66b11 844 return array($_POST['login'],$_POST['password'],false);
1810c13b
NL
845 }
846 if(isset($_SERVER['REMOTE_USER'])) {
6af66b11 847 return array($_SERVER['REMOTE_USER'],'http_auth',true);
1810c13b 848 }
5cfafc61 849
6af66b11
MR
850 return array(false,false,false);
851 }
df6afaf0 852
07ee09f4
NL
853 /**
854 * checks if login & password are correct and save the user in session.
855 * it redirects the user to the $referer link
856 * @param string $referer the url to redirect after login
857 * @todo add the return value
858 * @return boolean
859 */
c765c367
NL
860 public function login($referer)
861 {
6af66b11 862 list($login,$password,$isauthenticated)=$this->credentials();
df6afaf0
DS
863 if($login === false || $password === false) {
864 $this->messages->add('e', _('login failed: you have to fill all fields'));
865 Tools::logm('login failed');
866 Tools::redirect();
867 }
868 if (!empty($login) && !empty($password)) {
6af66b11 869 $user = $this->store->login($login, Tools::encodeString($password . $login), $isauthenticated);
7ce7ec4c
NL
870 if ($user != array()) {
871 # Save login into Session
6af66b11
MR
872 $longlastingsession = isset($_POST['longlastingsession']);
873 $passwordTest = ($isauthenticated) ? $user['password'] : Tools::encodeString($password . $login);
874 Session::login($user['username'], $user['password'], $login, $passwordTest, $longlastingsession, array('poche_user' => new User($user)));
26929c08 875 $this->messages->add('s', _('welcome to your wallabag'));
8d3275be 876 Tools::logm('login successful');
c765c367
NL
877 Tools::redirect($referer);
878 }
8d3275be 879 $this->messages->add('e', _('login failed: bad login or password'));
c765c367
NL
880 Tools::logm('login failed');
881 Tools::redirect();
c765c367
NL
882 }
883 }
884
07ee09f4
NL
885 /**
886 * log out the poche user. It cleans the session.
887 * @todo add the return value
182faf26 888 * @return boolean
07ee09f4 889 */
c765c367
NL
890 public function logout()
891 {
7ce7ec4c 892 $this->user = array();
c765c367 893 Session::logout();
b916bcfc 894 Tools::logm('logout');
c765c367
NL
895 Tools::redirect();
896 }
897
07ee09f4
NL
898 /**
899 * import datas into your poche
182faf26 900 * @return boolean
07ee09f4 901 */
182faf26
MR
902 public function import() {
903
904 if ( isset($_FILES['file']) ) {
5ce39784
MR
905 Tools::logm('Import stated: parsing file');
906
182faf26
MR
907 // assume, that file is in json format
908 $str_data = file_get_contents($_FILES['file']['tmp_name']);
909 $data = json_decode($str_data, true);
910
911 if ( $data === null ) {
912 //not json - assume html
913 $html = new simple_html_dom();
914 $html->load_file($_FILES['file']['tmp_name']);
915 $data = array();
916 $read = 0;
917 foreach (array('ol','ul') as $list) {
918 foreach ($html->find($list) as $ul) {
86da3988
MR
919 foreach ($ul->find('li') as $li) {
920 $tmpEntry = array();
a8ef1f3f
MR
921 $a = $li->find('a');
922 $tmpEntry['url'] = $a[0]->href;
923 $tmpEntry['tags'] = $a[0]->tags;
924 $tmpEntry['is_read'] = $read;
925 if ($tmpEntry['url']) {
926 $data[] = $tmpEntry;
927 }
86da3988
MR
928 }
929 # the second <ol/ul> is for read links
930 $read = ((sizeof($data) && $read)?0:1);
182faf26
MR
931 }
932 }
63c35580 933 }
182faf26 934
a297fb1e
MR
935 //for readability structure
936 foreach ($data as $record) {
937 if (is_array($record)) {
938 $data[] = $record;
939 foreach ($record as $record2) {
940 if (is_array($record2)) {
86da3988 941 $data[] = $record2;
a297fb1e
MR
942 }
943 }
944 }
945 }
946
86da3988 947 $urlsInserted = array(); //urls of articles inserted
182faf26 948 foreach ($data as $record) {
a297fb1e 949 $url = trim( isset($record['article__url']) ? $record['article__url'] : (isset($record['url']) ? $record['url'] : '') );
86da3988 950 if ( $url and !in_array($url, $urlsInserted) ) {
182faf26
MR
951 $title = (isset($record['title']) ? $record['title'] : _('Untitled - Import - ').'</a> <a href="./?import">'._('click to finish import').'</a><a>');
952 $body = (isset($record['content']) ? $record['content'] : '');
a297fb1e
MR
953 $isRead = (isset($record['is_read']) ? intval($record['is_read']) : (isset($record['archive'])?intval($record['archive']):0));
954 $isFavorite = (isset($record['is_fav']) ? intval($record['is_fav']) : (isset($record['favorite'])?intval($record['favorite']):0) );
182faf26
MR
955 //insert new record
956 $id = $this->store->add($url, $title, $body, $this->user->getId(), $isFavorite, $isRead);
957 if ( $id ) {
86da3988
MR
958 $urlsInserted[] = $url; //add
959
182faf26 960 if ( isset($record['tags']) && trim($record['tags']) ) {
86da3988 961 //@TODO: set tags
182faf26
MR
962
963 }
964 }
965 }
966 }
967
86da3988 968 $i = sizeof($urlsInserted);
182faf26
MR
969 if ( $i > 0 ) {
970 $this->messages->add('s', _('Articles inserted: ').$i._('. Please note, that some may be marked as "read".'));
971 }
5ce39784 972 Tools::logm('Import of articles finished: '.$i.' articles added (w/o content if not provided).');
182faf26
MR
973 }
974 //file parsing finished here
975
976 //now download article contents if any
977
978 //check if we need to download any content
979 $recordsDownloadRequired = $this->store->retrieveUnfetchedEntriesCount($this->user->getId());
980 if ( $recordsDownloadRequired == 0 ) {
981 //nothing to download
982 $this->messages->add('s', _('Import finished.'));
5ce39784 983 Tools::logm('Import finished completely');
182faf26
MR
984 Tools::redirect();
985 }
986 else {
987 //if just inserted - don't download anything, download will start in next reload
988 if ( !isset($_FILES['file']) ) {
989 //download next batch
5ce39784 990 Tools::logm('Fetching next batch of articles...');
182faf26
MR
991 $items = $this->store->retrieveUnfetchedEntries($this->user->getId(), IMPORT_LIMIT);
992
0f859c6f 993 $purifier = $this->getPurifier();
182faf26
MR
994
995 foreach ($items as $item) {
86da3988 996 $url = new Url(base64_encode($item['url']));
5ce39784 997 Tools::logm('Fetching article '.$item['id']);
86da3988 998 $content = Tools::getPageContent($url);
182faf26 999
86da3988
MR
1000 $title = (($content['rss']['channel']['item']['title'] != '') ? $content['rss']['channel']['item']['title'] : _('Untitled'));
1001 $body = (($content['rss']['channel']['item']['description'] != '') ? $content['rss']['channel']['item']['description'] : _('Undefined'));
182faf26 1002
86da3988
MR
1003 //clean content to prevent xss attack
1004 $title = $purifier->purify($title);
1005 $body = $purifier->purify($body);
182faf26 1006
86da3988 1007 $this->store->updateContentAndTitle($item['id'], $title, $body, $this->user->getId());
5ce39784 1008 Tools::logm('Article '.$item['id'].' updated.');
182faf26
MR
1009 }
1010
63c35580 1011 }
182faf26
MR
1012 }
1013
1014 return array('includeImport'=>true, 'import'=>array('recordsDownloadRequired'=>$recordsDownloadRequired, 'recordsUnderDownload'=> IMPORT_LIMIT, 'delay'=> IMPORT_DELAY * 1000) );
63c35580 1015 }
c765c367 1016
07ee09f4
NL
1017 /**
1018 * export poche entries in json
1019 * @return json all poche entries
1020 */
a8ef1f3f
MR
1021 public function export() {
1022 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
1023 header('Content-Disposition: attachment; filename='.$filename);
1024
1025 $entries = $this->store->retrieveAll($this->user->getId());
1026 echo $this->tpl->render('export.twig', array(
1027 'export' => Tools::renderJson($entries),
1028 ));
1029 Tools::logm('export view');
c765c367 1030 }
32520785 1031
07ee09f4 1032 /**
a3436d4c 1033 * Checks online the latest version of poche and cache it
07ee09f4
NL
1034 * @param string $which 'prod' or 'dev'
1035 * @return string latest $which version
1036 */
a8ef1f3f
MR
1037 private function getPocheVersion($which = 'prod') {
1038 $cache_file = CACHE . '/' . $which;
1039 $check_time = time();
1040
1041 # checks if the cached version file exists
1042 if (file_exists($cache_file) && (filemtime($cache_file) > (time() - 86400 ))) {
1043 $version = file_get_contents($cache_file);
1044 $check_time = filemtime($cache_file);
1045 } else {
1046 $version = file_get_contents('http://static.wallabag.org/versions/' . $which);
1047 file_put_contents($cache_file, $version, LOCK_EX);
1048 }
1049 return array($version, $check_time);
32520785 1050 }
72c20a52
NL
1051
1052 public function generateToken()
1053 {
a8ef1f3f
MR
1054 if (ini_get('open_basedir') === '') {
1055 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
1056 echo 'This is a server using Windows!';
1057 // alternative to /dev/urandom for Windows
1058 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1059 } else {
1060 $token = substr(base64_encode(file_get_contents('/dev/urandom', false, null, 0, 20)), 0, 15);
72c20a52 1061 }
a8ef1f3f
MR
1062 }
1063 else {
1064 $token = substr(base64_encode(uniqid(mt_rand(), true)), 0, 20);
1065 }
72c20a52 1066
a8ef1f3f
MR
1067 $token = str_replace('+', '', $token);
1068 $this->store->updateUserConfig($this->user->getId(), 'token', $token);
1069 $currentConfig = $_SESSION['poche_user']->config;
1070 $currentConfig['token'] = $token;
1071 $_SESSION['poche_user']->setConfig($currentConfig);
1072 Tools::redirect();
72c20a52
NL
1073 }
1074
f778e472 1075 public function generateFeeds($token, $user_id, $tag_id, $type = 'home')
72c20a52 1076 {
f778e472 1077 $allowed_types = array('home', 'fav', 'archive', 'tag');
72c20a52
NL
1078 $config = $this->store->getConfigUser($user_id);
1079
17b2afef
NL
1080 if ($config == null) {
1081 die(_('User with this id (' . $user_id . ') does not exist.'));
1082 }
1083
72c20a52
NL
1084 if (!in_array($type, $allowed_types) ||
1085 $token != $config['token']) {
1086 die(_('Uh, there is a problem while generating feeds.'));
1087 }
1088 // Check the token
1089
9e7c840b 1090 $feed = new FeedWriter(RSS2);
2e4440c3 1091 $feed->setTitle('wallabag — ' . $type . ' feed');
72c20a52 1092 $feed->setLink(Tools::getPocheUrl());
223268c2
NL
1093 $feed->setChannelElement('pubDate', date(DATE_RSS , time()));
1094 $feed->setChannelElement('generator', 'wallabag');
1095 $feed->setDescription('wallabag ' . $type . ' elements');
72c20a52 1096
f778e472 1097 if ($type == 'tag') {
b89d5a2b 1098 $entries = $this->store->retrieveEntriesByTag($tag_id, $user_id);
f778e472
NL
1099 }
1100 else {
1101 $entries = $this->store->getEntriesByView($type, $user_id);
1102 }
1103
72c20a52
NL
1104 if (count($entries) > 0) {
1105 foreach ($entries as $entry) {
1106 $newItem = $feed->createNewItem();
0b57c682 1107 $newItem->setTitle($entry['title']);
f86784c2 1108 $newItem->setSource(Tools::getPocheUrl() . '?view=view&amp;id=' . $entry['id']);
ed02e38e 1109 $newItem->setLink($entry['url']);
72c20a52
NL
1110 $newItem->setDate(time());
1111 $newItem->setDescription($entry['content']);
1112 $feed->addItem($newItem);
1113 }
1114 }
1115
1116 $feed->genarateFeed();
1117 exit;
1118 }
6285e57c
NL
1119
1120 public function emptyCache() {
1121 $files = new RecursiveIteratorIterator(
1122 new RecursiveDirectoryIterator(CACHE, RecursiveDirectoryIterator::SKIP_DOTS),
1123 RecursiveIteratorIterator::CHILD_FIRST
1124 );
1125
1126 foreach ($files as $fileinfo) {
1127 $todo = ($fileinfo->isDir() ? 'rmdir' : 'unlink');
1128 $todo($fileinfo->getRealPath());
1129 }
1130
1131 Tools::logm('empty cache');
1132 $this->messages->add('s', _('Cache deleted.'));
1133 Tools::redirect();
1134 }
0f859c6f
MR
1135
1136 /**
1137 * return new purifier object with actual config
1138 */
1139 protected function getPurifier() {
1140 $config = HTMLPurifier_Config::createDefault();\r
1141 $config->set('Cache.SerializerPath', CACHE);\r
1142 $config->set('HTML.SafeIframe', true);\r
1143 $config->set('URI.SafeIframeRegexp', '%^(https?:)?//(www\.youtube(?:-nocookie)?\.com/embed/|player\.vimeo\.com/video/)%'); //allow YouTube and Vimeo$purifier = new HTMLPurifier($config);
1144\r
1145 return new HTMLPurifier($config);
1146 }
df6afaf0 1147}