]> source.dussan.org Git - nextcloud-server.git/commitdiff
Extract Auth Header logic into new function handleAuthHeaders().
authorAndreas Fischer <bantu@owncloud.com>
Sat, 19 Jul 2014 00:16:28 +0000 (02:16 +0200)
committerAndreas Fischer <bantu@owncloud.com>
Sat, 19 Jul 2014 00:21:18 +0000 (02:21 +0200)
lib/base.php

index 95e3a30cdeef5b95eb0de9a7eb4f270ff0fd6c7f..24381611001e68a406b8f199d5709f2efc47ba73 100644 (file)
@@ -472,26 +472,7 @@ class OC {
                @ini_set('post_max_size', '10G');
                @ini_set('file_uploads', '50');
 
-               //copy http auth headers for apache+php-fcgid work around
-               if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) {
-                       $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION'];
-               }
-
-               // Extract PHP_AUTH_USER/PHP_AUTH_PW from other headers if necessary.
-               $httpAuthHeaderServerVars = array(
-                       'HTTP_AUTHORIZATION', // apache+php-cgi work around
-                       'REDIRECT_HTTP_AUTHORIZATION', // apache+php-cgi alternative
-               );
-               foreach ($httpAuthHeaderServerVars as $httpAuthHeaderServerVar) {
-                       if (isset($_SERVER[$httpAuthHeaderServerVar])
-                               && preg_match('/Basic\s+(.*)$/i', $_SERVER[$httpAuthHeaderServerVar], $matches)
-                       ) {
-                               list($name, $password) = explode(':', base64_decode($matches[1]), 2);
-                               $_SERVER['PHP_AUTH_USER'] = strip_tags($name);
-                               $_SERVER['PHP_AUTH_PW'] = strip_tags($password);
-                               break;
-                       }
-               }
+               self::handleAuthHeaders();
 
                self::initPaths();
                if (OC_Config::getValue('instanceid', false)) {
@@ -812,6 +793,27 @@ class OC {
                return false;
        }
 
+       protected static function handleAuthHeaders() {
+               //copy http auth headers for apache+php-fcgid work around
+               if (isset($_SERVER['HTTP_XAUTHORIZATION']) && !isset($_SERVER['HTTP_AUTHORIZATION'])) {
+                       $_SERVER['HTTP_AUTHORIZATION'] = $_SERVER['HTTP_XAUTHORIZATION'];
+               }
+
+               // Extract PHP_AUTH_USER/PHP_AUTH_PW from other headers if necessary.
+               $vars = array(
+                       'HTTP_AUTHORIZATION', // apache+php-cgi work around
+                       'REDIRECT_HTTP_AUTHORIZATION', // apache+php-cgi alternative
+               );
+               foreach ($vars as $var) {
+                       if (isset($_SERVER[$var]) && preg_match('/Basic\s+(.*)$/i', $_SERVER[$var], $matches)) {
+                               list($name, $password) = explode(':', base64_decode($matches[1]), 2);
+                               $_SERVER['PHP_AUTH_USER'] = strip_tags($name);
+                               $_SERVER['PHP_AUTH_PW'] = strip_tags($password);
+                               break;
+                       }
+               }
+       }
+
        protected static function handleLogin() {
                OC_App::loadApps(array('prelogin'));
                $error = array();