OpenId/Consumer.php

Show: PublicProtectedPrivateinherited
Table of Contents
Zend Framework
LICENSE This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  
Package
Zend_OpenId  
Subpackage
Zend_OpenId_Consumer  
Version
$Id: Consumer.php 24593 2012-01-05 20:35:02Z matthew $  

\Zend_OpenId_Consumer

Package: Zend_OpenId\Zend_OpenId_Consumer
OpenID consumer implementation
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Properties

>VPropertyprotectedarray $_cache = array()
Internal cache to prevent unnecessary access to storage
Default valuearray()Details
Type
array
>VPropertyprotected\Zend_OpenId_Consumer_Storage $_dumbMode = false
Enables or disables consumer to use association with server based on Diffie-Hellman key agreement
Default valuefalseDetails
Type
\Zend_OpenId_Consumer_Storage
>VPropertyprivatestring $_error = ''
Last error message for logi, check or verify failure
Default value''Details
Type
string
>VPropertyprivate\Zend_Http_Client $_httpClient = null
HTTP client to make HTTP requests
Default valuenullDetails
Type
\Zend_Http_Client
>VPropertyprivate\Zend_Session_Namespace $_session = null
HTTP session to store climed_id between requests
Default valuenullDetails
Type
\Zend_Session_Namespace
>VPropertyprotected$_signParams = array('op_endpoint', 'return_to', 'response_nonce', 'assoc_handle')
Parameters required for signature
Default valuearray('op_endpoint', 'return_to', 'response_nonce', 'assoc_handle')Details
Type
n/a
>VPropertyprotected\Zend_OpenId_Consumer_Storage $_storage = null
Reference to an implementation of storage object
Default valuenullDetails
Type
\Zend_OpenId_Consumer_Storage

Methods

methodpublic__construct(\Zend_OpenId_Consumer_Storage $storage = null, bool $dumbMode = false) : void

Constructs a Zend_OpenId_Consumer object with given $storage.

Enables or disables future association with server based on Diffie-Hellman key agreement.
Parameters
NameTypeDescription
$storage\Zend_OpenId_Consumer_Storage

implementation of custom storage object

$dumbModebool

Enables or disables consumer to use association with server based on Diffie-Hellman key agreement

methodprotected_addAssociation(string $url, string $handle, string $macFunc, string $secret, integer $expires) : void

Store assiciation in internal chace and external storage

Parameters
NameTypeDescription
$urlstring

OpenID server url

$handlestring

association handle

$macFuncstring

HMAC function (sha1 or sha256)

$secretstring

shared secret

$expiresinteger

expiration UNIX time

methodprotected_associate(string $url, float $version, string $priv_key = null) : bool

Create (or reuse existing) association between OpenID consumer and OpenID server based on Diffie-Hellman key agreement. Returns true on success and false on failure.

Parameters
NameTypeDescription
$urlstring

OpenID server url

$versionfloat

OpenID protocol version

$priv_keystring

for testing only

Returns
TypeDescription
bool
methodprotected_checkId(bool $immediate, string $id, string $returnTo = null, string $root = null, mixed $extensions = null, \Zend_Controller_Response_Abstract $response = null) : bool

Performs check of OpenID identity.

This is the first step of OpenID authentication process. On success the function does not return (it does HTTP redirection to server and exits). On failure it returns false.
Parameters
NameTypeDescription
$immediatebool

enables or disables interaction with user

$idstring

OpenID identity

$returnTostring

HTTP URL to redirect response from server to

$rootstring

HTTP URL to identify consumer on server

$extensionsmixed

extension object or array of extensions objects

$response\Zend_Controller_Response_Abstract

an optional response object to perform HTTP or HTML form redirection

Returns
TypeDescription
bool
methodprotected_discovery( $id,  $server,  $version) : bool

Performs discovery of identity and finds OpenID URL, OpenID server URL and OpenID protocol version. Returns true on succees and false on failure.

Parameters
NameTypeDescription
$id
$server
$version
Returns
TypeDescription
bool
Details
Todo
OpenID 2.0 (7.3) XRI and Yadis discovery  
methodprotected_getAssociation(string $url,  $handle,  $macFunc,  $secret,  $expires) : void

Retrive assiciation information for given $url from internal cahce or external storage

Parameters
NameTypeDescription
$urlstring

OpenID server url

$handle
$macFunc
$secret
$expires
methodprotected_httpRequest(string $url, string $method = 'GET', array $params = array(),  $status = null) : mixed

Performs HTTP request to given $url using given HTTP $method.

Send additinal query specified by variable/value array, On success returns HTTP response without headers, false on failure.
Parameters
NameTypeDescription
$urlstring

OpenID server url

$methodstring

HTTP request method 'GET' or 'POST'

$paramsarray

additional qwery parameters to be passed with

$status
Returns
TypeDescription
mixed
methodprotected_setError(string $message) : void

Saves error message

Parameters
NameTypeDescription
$messagestring

error message

methodpubliccheck(string $id, string $returnTo = null, string $root = null, mixed $extensions = null, \Zend_Controller_Response_Abstract $response = null) : bool

Performs immediate check (without user interaction) of OpenID identity.

This is the first step of OpenID authentication process. On success the function does not return (it does HTTP redirection to server and exits). On failure it returns false.
Parameters
NameTypeDescription
$idstring

OpenID identity

$returnTostring

HTTP URL to redirect response from server to

$rootstring

HTTP URL to identify consumer on server

$extensionsmixed

extension object or array of extensions objects

$response\Zend_Controller_Response_Abstract

an optional response object to perform HTTP or HTML form redirection

Returns
TypeDescription
bool
methodpublicgetError() : string

Returns error message that explains failure of login, check or verify

Returns
TypeDescription
string
methodpublicgetHttpClient() : \Zend_Http_Client

Returns HTTP client object that will be used to make HTTP requests

Returns
TypeDescription
\Zend_Http_Client
methodpublicgetSession() : \Zend_Session_Namespace

Returns session object that is used to store climed_id

Returns
TypeDescription
\Zend_Session_Namespace
methodpubliclogin(string $id, string $returnTo = null, string $root = null, mixed $extensions = null, \Zend_Controller_Response_Abstract $response = null) : bool

Performs check (with possible user interaction) of OpenID identity.

This is the first step of OpenID authentication process. On success the function does not return (it does HTTP redirection to server and exits). On failure it returns false.
Parameters
NameTypeDescription
$idstring

OpenID identity

$returnTostring

URL to redirect response from server to

$rootstring

HTTP URL to identify consumer on server

$extensionsmixed

extension object or array of extensions objects

$response\Zend_Controller_Response_Abstract

an optional response object to perform HTTP or HTML form redirection

Returns
TypeDescription
bool
methodpublicsetHttpClient(\Zend_Http_Client $client) : void

Sets HTTP client object to make HTTP requests

Parameters
NameTypeDescription
$client\Zend_Http_Client

HTTP client object to be used

methodpublicsetSession(\Zend_Session_Namespace $session) : void

Sets session object to store climed_id

Parameters
NameTypeDescription
$session\Zend_Session_Namespace

HTTP client object to be used

methodpublicverify(array $params,  $identity = "", mixed $extensions = null) : bool

Verifies authentication response from OpenID server.

This is the second step of OpenID authentication process. The function returns true on successful authentication and false on failure.
Parameters
NameTypeDescription
$paramsarray

HTTP query data from OpenID server

$identity
$extensionsmixed

extension object or array of extensions objects

Returns
TypeDescription
bool
Documentation was generated by phpDocumentor 2.2.0 .