4 * This is the PHP OpenID library by JanRain, Inc.
6 * This module contains core utility functionality used by the
7 * library. See Consumer.php and Server.php for the consumer and
8 * server implementations.
10 * PHP versions 4 and 5
12 * LICENSE: See the COPYING file included in this distribution.
15 * @author JanRain, Inc. <openid@janrain.com>
16 * @copyright 2005-2008 Janrain, Inc.
17 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache
21 * The library version string
23 define('Auth_OpenID_VERSION', '2.1.3');
26 * Require the fetcher code.
28 require_once "Auth/Yadis/PlainHTTPFetcher.php";
29 require_once "Auth/Yadis/ParanoidHTTPFetcher.php";
30 require_once "Auth/OpenID/BigMath.php";
31 require_once "Auth/OpenID/URINorm.php";
34 * Status code returned by the server when the only option is to show
35 * an error page, since we do not have enough information to redirect
36 * back to the consumer. The associated value is an error message that
37 * should be displayed on an HTML error page.
39 * @see Auth_OpenID_Server
41 define('Auth_OpenID_LOCAL_ERROR', 'local_error');
44 * Status code returned when there is an error to return in key-value
45 * form to the consumer. The caller should return a 400 Bad Request
46 * response with content-type text/plain and the value as the body.
48 * @see Auth_OpenID_Server
50 define('Auth_OpenID_REMOTE_ERROR', 'remote_error');
53 * Status code returned when there is a key-value form OK response to
54 * the consumer. The value associated with this code is the
55 * response. The caller should return a 200 OK response with
56 * content-type text/plain and the value as the body.
58 * @see Auth_OpenID_Server
60 define('Auth_OpenID_REMOTE_OK', 'remote_ok');
63 * Status code returned when there is a redirect back to the
64 * consumer. The value is the URL to redirect back to. The caller
65 * should return a 302 Found redirect with a Location: header
68 * @see Auth_OpenID_Server
70 define('Auth_OpenID_REDIRECT', 'redirect');
73 * Status code returned when the caller needs to authenticate the
74 * user. The associated value is a {@link Auth_OpenID_ServerRequest}
75 * object that can be used to complete the authentication. If the user
76 * has taken some authentication action, use the retry() method of the
77 * {@link Auth_OpenID_ServerRequest} object to complete the request.
79 * @see Auth_OpenID_Server
81 define('Auth_OpenID_DO_AUTH', 'do_auth');
84 * Status code returned when there were no OpenID arguments
85 * passed. This code indicates that the caller should return a 200 OK
86 * response and display an HTML page that says that this is an OpenID
89 * @see Auth_OpenID_Server
91 define('Auth_OpenID_DO_ABOUT', 'do_about');
94 * Defines for regexes and format checking.
96 define('Auth_OpenID_letters',
97 "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
99 define('Auth_OpenID_digits',
102 define('Auth_OpenID_punct',
103 "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~");
105 if (Auth_OpenID_getMathLib() === null) {
106 Auth_OpenID_setNoMathSupport();
110 * The OpenID utility function class.
118 * Return true if $thing is an Auth_OpenID_FailureResponse object;
123 function isFailure($thing)
125 return is_a($thing, 'Auth_OpenID_FailureResponse');
129 * Gets the query data from the server environment based on the
130 * request method used. If GET was used, this looks at
131 * $_SERVER['QUERY_STRING'] directly. If POST was used, this
132 * fetches data from the special php://input file stream.
134 * Returns an associative array of the query arguments.
136 * Skips invalid key/value pairs (i.e. keys with no '=value'
139 * Returns an empty array if neither GET nor POST was used, or if
140 * POST was used but php://input cannot be opened.
144 function getQuery($query_str=null)
148 if ($query_str !== null) {
149 $data = Auth_OpenID::params_from_string($query_str);
150 } else if (!array_key_exists('REQUEST_METHOD', $_SERVER)) {
153 // XXX HACK FIXME HORRIBLE.
155 // POSTing to a URL with query parameters is acceptable, but
156 // we don't have a clean way to distinguish those parameters
157 // when we need to do things like return_to verification
158 // which only want to look at one kind of parameter. We're
159 // going to emulate the behavior of some other environments
160 // by defaulting to GET and overwriting with POST if POST
161 // data is available.
162 $data = Auth_OpenID::params_from_string($_SERVER['QUERY_STRING']);
164 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
165 $str = file_get_contents('php://input');
167 if ($str === false) {
170 $post = Auth_OpenID::params_from_string($str);
173 $data = array_merge($data, $post);
180 function params_from_string($str)
182 $chunks = explode("&", $str);
185 foreach ($chunks as $chunk) {
186 $parts = explode("=", $chunk, 2);
188 if (count($parts) != 2) {
192 list($k, $v) = $parts;
193 $data[$k] = urldecode($v);
200 * Create dir_name as a directory if it does not exist. If it
201 * exists, make sure that it is, in fact, a directory. Returns
202 * true if the operation succeeded; false if not.
206 function ensureDir($dir_name)
208 if (is_dir($dir_name) || @mkdir($dir_name)) {
211 $parent_dir = dirname($dir_name);
213 // Terminal case; there is no parent directory to create.
214 if ($parent_dir == $dir_name) {
218 return (Auth_OpenID::ensureDir($parent_dir) && @mkdir($dir_name));
223 * Adds a string prefix to all values of an array. Returns a new
224 * array containing the prefixed values.
228 function addPrefix($values, $prefix)
230 $new_values = array();
231 foreach ($values as $s) {
232 $new_values[] = $prefix . $s;
238 * Convenience function for getting array values. Given an array
239 * $arr and a key $key, get the corresponding value from the array
240 * or return $default if the key is absent.
244 function arrayGet($arr, $key, $fallback = null)
246 if (is_array($arr)) {
247 if (array_key_exists($key, $arr)) {
253 trigger_error("Auth_OpenID::arrayGet (key = ".$key.") expected " .
254 "array as first parameter, got " .
255 gettype($arr), E_USER_WARNING);
262 * Replacement for PHP's broken parse_str.
264 function parse_str($query)
266 if ($query === null) {
270 $parts = explode('&', $query);
272 $new_parts = array();
273 for ($i = 0; $i < count($parts); $i++) {
274 $pair = explode('=', $parts[$i]);
276 if (count($pair) != 2) {
280 list($key, $value) = $pair;
281 $new_parts[$key] = urldecode($value);
288 * Implements the PHP 5 'http_build_query' functionality.
291 * @param array $data Either an array key/value pairs or an array
292 * of arrays, each of which holding two values: a key and a value,
294 * @return string $result The result of url-encoding the key/value
295 * pairs from $data into a URL query string
296 * (e.g. "username=bob&id=56").
298 function httpBuildQuery($data)
301 foreach ($data as $key => $value) {
302 if (is_array($value)) {
303 $pairs[] = urlencode($value[0])."=".urlencode($value[1]);
305 $pairs[] = urlencode($key)."=".urlencode($value);
308 return implode("&", $pairs);
312 * "Appends" query arguments onto a URL. The URL may or may not
313 * already have arguments (following a question mark).
316 * @param string $url A URL, which may or may not already have
318 * @param array $args Either an array key/value pairs or an array of
319 * arrays, each of which holding two values: a key and a value,
320 * sequentially. If $args is an ordinary key/value array, the
321 * parameters will be added to the URL in sorted alphabetical order;
322 * if $args is an array of arrays, their order will be preserved.
323 * @return string $url The original URL with the new parameters added.
326 function appendArgs($url, $args)
328 if (count($args) == 0) {
332 // Non-empty array; if it is an array of arrays, use
333 // multisort; otherwise use sort.
334 if (array_key_exists(0, $args) &&
335 is_array($args[0])) {
338 $keys = array_keys($args);
341 foreach ($keys as $key) {
342 $new_args[] = array($key, $args[$key]);
348 if (strpos($url, '?') !== false) {
352 return $url . $sep . Auth_OpenID::httpBuildQuery($args);
356 * Implements python's urlunparse, which is not available in PHP.
357 * Given the specified components of a URL, this function rebuilds
358 * and returns the URL.
361 * @param string $scheme The scheme (e.g. 'http'). Defaults to 'http'.
362 * @param string $host The host. Required.
363 * @param string $port The port.
364 * @param string $path The path.
365 * @param string $query The query.
366 * @param string $fragment The fragment.
367 * @return string $url The URL resulting from assembling the
368 * specified components.
370 function urlunparse($scheme, $host, $port = null, $path = '/',
371 $query = '', $fragment = '')
386 $result = $scheme . "://" . $host;
389 $result .= ":" . $port;
395 $result .= "?" . $query;
399 $result .= "#" . $fragment;
406 * Given a URL, this "normalizes" it by adding a trailing slash
407 * and / or a leading http:// scheme where necessary. Returns
408 * null if the original URL is malformed and cannot be normalized.
411 * @param string $url The URL to be normalized.
412 * @return mixed $new_url The URL after normalization, or null if
413 * $url was malformed.
415 function normalizeUrl($url)
417 @$parsed = parse_url($url);
423 if (isset($parsed['scheme']) &&
424 isset($parsed['host'])) {
425 $scheme = strtolower($parsed['scheme']);
426 if (!in_array($scheme, array('http', 'https'))) {
430 $url = 'http://' . $url;
433 $normalized = Auth_OpenID_urinorm($url);
434 if ($normalized === null) {
437 list($defragged, $frag) = Auth_OpenID::urldefrag($normalized);
442 * Replacement (wrapper) for PHP's intval() because it's broken.
446 function intval($value)
450 if (!preg_match($re, $value)) {
454 return intval($value);
458 * Count the number of bytes in a string independently of
459 * multibyte support conditions.
461 * @param string $str The string of bytes to count.
462 * @return int The number of bytes in $str.
466 return strlen(bin2hex($str)) / 2;
470 * Get the bytes in a string independently of multibyte support
473 function toBytes($str)
475 $hex = bin2hex($str);
482 for ($i = 0; $i < strlen($hex); $i += 2) {
483 $b[] = chr(base_convert(substr($hex, $i, 2), 16, 10));
489 function urldefrag($url)
491 $parts = explode("#", $url, 2);
493 if (count($parts) == 1) {
494 return array($parts[0], "");
500 function filter($callback, &$sequence)
504 foreach ($sequence as $item) {
505 if (call_user_func_array($callback, array($item))) {
513 function update(&$dest, &$src)
515 foreach ($src as $k => $v) {
521 * Wrap PHP's standard error_log functionality. Use this to
522 * perform all logging. It will interpolate any additional
523 * arguments into the format string before logging.
525 * @param string $format_string The sprintf format for the message
527 function log($format_string)
529 $args = func_get_args();
530 $message = call_user_func_array('sprintf', $args);
534 function autoSubmitHTML($form, $title="OpenId transaction in progress")
540 "<body onload='document.forms[0].submit();'>".
543 "var elements = document.forms[0].elements;".
544 "for (var i = 0; i < elements.length; i++) {".
545 " elements[i].style.display = \"none\";".