]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - index.php
Merge pull request #363 from inthepoche/dev
[github/wallabag/wallabag.git] / index.php
index 145da772f5ca28238e993dc79340518e2822d583..4e86fe11d5a9709a684910e7a0b38403b99f766d 100644 (file)
--- a/index.php
+++ b/index.php
@@ -8,7 +8,7 @@
  * @license    http://www.wtfpl.net/ see COPYING file
  */
 
-define ('POCHE', '1.2.0');
+define ('POCHE', '1.3.0');
 require_once 'inc/poche/global.inc.php';
 session_start(); 
 
@@ -100,6 +100,15 @@ if (Session::isLogged()) {
         $tpl_file = Tools::getTplFile('login');
         $tpl_vars['http_auth'] = 1;
     }
+} elseif(isset($_SERVER['REMOTE_USER'])) {
+    if($poche->store->userExists($_SERVER['REMOTE_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;