X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=index.php;h=96f28a72936368b47352e875eb08de6fd76cb7e1;hb=68e20616663e048d47297ff251f64081b1d1fe3a;hp=fdcfc32860f02861b9d76f97a31e4b7711abf4eb;hpb=c1e24b0461111affb121f5a1bc9d42acf94caf93;p=github%2Fwallabag%2Fwallabag.git diff --git a/index.php b/index.php index fdcfc328..96f28a72 100644 --- a/index.php +++ b/index.php @@ -8,7 +8,7 @@ * @license http://www.wtfpl.net/ see COPYING file */ -define ('POCHE', '1.0.0'); +define ('POCHE', '1.2.0'); require_once 'inc/poche/global.inc.php'; session_start(); @@ -70,6 +70,13 @@ if (isset($_GET['login'])) { $poche->updateTheme(); } elseif (isset($_GET['updatelanguage'])) { $poche->updateLanguage(); +} elseif (isset($_GET['feed'])) { + if (isset($_GET['action']) && $_GET['action'] == 'generate') { + $poche->generateToken(); + } + else { + $poche->generateFeeds($_GET['token'], $_GET['user_id'], $_GET['type']); + } } elseif (isset($_GET['plainurl']) && !empty($_GET['plainurl'])) { @@ -81,8 +88,18 @@ if (Session::isLogged()) { $poche->action($action, $url, $id); $tpl_file = Tools::getTplFile($view); $tpl_vars = array_merge($tpl_vars, $poche->displayView($view, $id)); +} elseif(isset($_SERVER['PHP_AUTH_USER'])) { + if($poche->store->userExists($_SERVER['PHP_AUTH_USER'])) { + $poche->login($referer); + } else { + $poche->messages->add('e', _('login failed: user doesn\'t exist')); + Tools::logm('user doesn\'t exist'); + $tpl_file = Tools::getTplFile('login'); + $tpl_vars['http_auth'] = 1; + } } else { $tpl_file = Tools::getTplFile('login'); + $tpl_vars['http_auth'] = 0; } # because messages can be added in $poche->action(), we have to add this entry now (we can add it before) @@ -90,4 +107,4 @@ $messages = $poche->messages->display('all', FALSE); $tpl_vars = array_merge($tpl_vars, array('messages' => $messages)); # display poche -echo $poche->tpl->render($tpl_file, $tpl_vars); \ No newline at end of file +echo $poche->tpl->render($tpl_file, $tpl_vars);