diff options
| author | Cash Costello <cash.costello@gmail.com> | 2011-12-11 06:38:23 -0500 | 
|---|---|---|
| committer | Cash Costello <cash.costello@gmail.com> | 2011-12-11 06:38:23 -0500 | 
| commit | d9bf22a0e29c2a70049443a0ae8521a2c0492c8b (patch) | |
| tree | c7599a9169d5def7df56c480ad6d67f312443d6f /models/openid-php-openid-782224d/examples/consumer/common.php | |
| download | elgg-d9bf22a0e29c2a70049443a0ae8521a2c0492c8b.tar.gz elgg-d9bf22a0e29c2a70049443a0ae8521a2c0492c8b.tar.bz2  | |
initial commit for git repository
Diffstat (limited to 'models/openid-php-openid-782224d/examples/consumer/common.php')
| -rw-r--r-- | models/openid-php-openid-782224d/examples/consumer/common.php | 97 | 
1 files changed, 97 insertions, 0 deletions
diff --git a/models/openid-php-openid-782224d/examples/consumer/common.php b/models/openid-php-openid-782224d/examples/consumer/common.php new file mode 100644 index 000000000..2f01ba0a6 --- /dev/null +++ b/models/openid-php-openid-782224d/examples/consumer/common.php @@ -0,0 +1,97 @@ +<?php + +$path_extra = dirname(dirname(dirname(__FILE__))); +$path = ini_get('include_path'); +$path = $path_extra . PATH_SEPARATOR . $path; +ini_set('include_path', $path); + +function displayError($message) { +    $error = $message; +    include 'index.php'; +    exit(0); +} + +function doIncludes() { +    /** +     * Require the OpenID consumer code. +     */ +    require_once "Auth/OpenID/Consumer.php"; + +    /** +     * Require the "file store" module, which we'll need to store +     * OpenID information. +     */ +    require_once "Auth/OpenID/FileStore.php"; + +    /** +     * Require the Simple Registration extension API. +     */ +    require_once "Auth/OpenID/SReg.php"; + +    /** +     * Require the PAPE extension module. +     */ +    require_once "Auth/OpenID/PAPE.php"; +} + +doIncludes(); + +global $pape_policy_uris; +$pape_policy_uris = array( +			  PAPE_AUTH_MULTI_FACTOR_PHYSICAL, +			  PAPE_AUTH_MULTI_FACTOR, +			  PAPE_AUTH_PHISHING_RESISTANT +			  ); + +function &getStore() { +    /** +     * This is where the example will store its OpenID information. +     * You should change this path if you want the example store to be +     * created elsewhere.  After you're done playing with the example +     * script, you'll have to remove this directory manually. +     */ +    $store_path = "/tmp/_php_consumer_test"; + +    if (!file_exists($store_path) && +        !mkdir($store_path)) { +        print "Could not create the FileStore directory '$store_path'. ". +            " Please check the effective permissions."; +        exit(0); +    } + +    return new Auth_OpenID_FileStore($store_path); +} + +function &getConsumer() { +    /** +     * Create a consumer object using the store object created +     * earlier. +     */ +    $store = getStore(); +    $consumer =& new Auth_OpenID_Consumer($store); +    return $consumer; +} + +function getScheme() { +    $scheme = 'http'; +    if (isset($_SERVER['HTTPS']) and $_SERVER['HTTPS'] == 'on') { +        $scheme .= 's'; +    } +    return $scheme; +} + +function getReturnTo() { +    return sprintf("%s://%s:%s%s/finish_auth.php", +                   getScheme(), $_SERVER['SERVER_NAME'], +                   $_SERVER['SERVER_PORT'], +                   dirname($_SERVER['PHP_SELF'])); +} + +function getTrustRoot() { +    return sprintf("%s://%s:%s%s/", +                   getScheme(), $_SERVER['SERVER_NAME'], +                   $_SERVER['SERVER_PORT'], +                   dirname($_SERVER['PHP_SELF'])); +} + +?>
\ No newline at end of file  | 
