X-Git-Url: https://git.cweiske.de/grauphel.git/blobdiff_plain/92938f0e591286b67a752af441e55626155af524..f7ecfa21088175bc236b1136c1a4b2aa2488f37c:/lib/oauth.php diff --git a/lib/oauth.php b/lib/oauth.php index e2eb651..6900c20 100644 --- a/lib/oauth.php +++ b/lib/oauth.php @@ -98,6 +98,11 @@ class OAuth public function accessTokenHandler(\OAuthProvider $provider) { + if ($provider->token == '') { + //conboy sends empty token when not authed yet + return OAUTH_PARAMETER_ABSENT; + } + $token = $this->tokens->load('access', $provider->token); $provider->token_secret = $token->secret; return OAUTH_OK; @@ -140,7 +145,27 @@ class OAuth */ public static function getProvider() { - return new \OAuthProvider(); + //$_SERVER['REDIRECT_HTTP_AUTHORIZATION'] = $_SERVER['HTTP_AUTHORIZATION']; + //unset($_SERVER['HTTP_AUTHORIZATION']); + + $params = array(); + if (!isset($_SERVER['HTTP_AUTHORIZATION']) + && isset($_SERVER['REDIRECT_HTTP_AUTHORIZATION']) + ) { + //FastCgi puts the headers in REDIRECT_HTTP_AUTHORIZATION, + // but the oauth extension does not read that. + // we have to parse the parameters manually + $regex = "/(oauth_[a-z_-]*)=(?:\"([^\"]*)\"|([^,]*))/"; + preg_match_all( + $regex, $_SERVER['REDIRECT_HTTP_AUTHORIZATION'], $matches + ); + + foreach ($matches[1] as $key => $paramName) { + $params[$paramName] = urldecode($matches[2][$key]); + } + } + + return new \OAuthProvider($params); } } ?>