summaryrefslogtreecommitdiffstats
path: root/Auth
diff options
context:
space:
mode:
authorJosh Hoyt <josh@janrain.com>2006-02-02 23:00:26 +0000
committerJosh Hoyt <josh@janrain.com>2006-02-02 23:00:26 +0000
commitff5688f2ebc763cfd0ea907f9d78dc028ce03269 (patch)
treec85b973fc46d3aa7b51b3a4744695075fb78355c /Auth
parent7d92568fe6d9dd14301648658a0d4beaa45aba83 (diff)
downloadphp-openid-ff5688f2ebc763cfd0ea907f9d78dc028ce03269.zip
php-openid-ff5688f2ebc763cfd0ea907f9d78dc028ce03269.tar.gz
php-openid-ff5688f2ebc763cfd0ea907f9d78dc028ce03269.tar.bz2
[project @ Minor changes to HTTP fetching lib]
Diffstat (limited to 'Auth')
-rw-r--r--Auth/OpenID/Consumer/Fetchers.php24
1 files changed, 11 insertions, 13 deletions
diff --git a/Auth/OpenID/Consumer/Fetchers.php b/Auth/OpenID/Consumer/Fetchers.php
index 733a232..63cdf01 100644
--- a/Auth/OpenID/Consumer/Fetchers.php
+++ b/Auth/OpenID/Consumer/Fetchers.php
@@ -20,9 +20,14 @@
$_Auth_OpenID_socket_timeout = 20;
/**
- * Specify allowed URL schemes for fetching.
+ * Is this an http or https URL?
+ *
+ * @access private
*/
-$_Auth_OpenID_allowed_schemes = array('http', 'https');
+function Auth_OpenID_URLHasAllowedScheme($url)
+{
+ return (bool)preg_match('/^https?:\/\//i', $url);
+}
/**
* This class is the interface for HTTP fetchers the OpenID consumer
@@ -42,14 +47,7 @@ class Auth_OpenID_HTTPFetcher {
*/
function allowedURL($url)
{
- global $_Auth_OpenID_allowed_schemes;
- foreach ($_Auth_OpenID_allowed_schemes as $scheme) {
- if (strpos($url, sprintf("%s://", $scheme)) == 0) {
- return true;
- }
- }
-
- return false;
+ return Auth_OpenID_URLHasAllowedScheme($url);
}
/**
@@ -89,10 +87,10 @@ define('Auth_OpenID_CURL_PRESENT', function_exists('curl_init'));
function Auth_OpenID_getHTTPFetcher()
{
- if (!Auth_OpenID_CURL_PRESENT) {
- $fetcher = new Auth_OpenID_PlainHTTPFetcher();
- } else {
+ if (Auth_OpenID_CURL_PRESENT) {
$fetcher = new Auth_OpenID_ParanoidHTTPFetcher();
+ } else {
+ $fetcher = new Auth_OpenID_PlainHTTPFetcher();
}
return $fetcher;