API Joomla 1.5.26
Documentation des API du CMS Joomla en version 1.5

Référence de la classe Auth_OpenID_Consumer

Liste de tous les membres

Fonctions membres publiques

Attributs publics


Documentation des fonctions membres

Auth_OpenID_Consumer::Auth_OpenID_Consumer ( &$  store,
session = null,
consumer_cls = null 
)

Initialize a Consumer instance.

You should create a new instance of the Consumer object with every HTTP request that handles OpenID transactions.

Paramètres:
Auth_OpenID_OpenIDStore$storeThis must be an object that implements the interface in Auth_OpenID_OpenIDStore. Several concrete implementations are provided, to cover most common use cases. For stores backed by MySQL, PostgreSQL, or SQLite, see the Auth_OpenID_SQLStore class and its sublcasses. For a filesystem-backed store, see the Auth_OpenID_FileStore module. As a last resort, if it isn't possible for the server to store state at all, an instance of Auth_OpenID_DumbStore can be used.
mixed$sessionAn object which implements the interface of the Auth_Yadis_PHPSession class. Particularly, this object is expected to have these methods: get($key), set($key), $value), and del($key). This defaults to a session object which wraps PHP's native session machinery. You should only need to pass something here if you have your own sessioning implementation.
str$consumer_clsThe name of the class to instantiate when creating the internal consumer object. This is used for testing.

Références $session.

Auth_OpenID_Consumer::begin ( user_url,
anonymous = false 
)

Start the OpenID authentication process. See steps 1-2 in the overview at the top of this file.

Paramètres:
string$user_urlIdentity URL given by the user. This method performs a textual transformation of the URL to try and make sure it is normalized. For example, a user_url of example.com will be normalized to http://example.com/ normalizing and resolving any redirects the server might issue.
bool$anonymousTrue if the OpenID request is to be sent to the server without any identifier information. Use this when you want to transport data but don't want to do OpenID authentication with identifiers.
Renvoie:
Auth_OpenID_AuthRequest $auth_request An object containing the discovered information will be returned, with a method for building a redirect URL to the server, as described in step 3 of the overview. This object may also be used to add extension arguments to the request, using its 'addExtensionArg' method.
& Auth_OpenID_Consumer::beginWithoutDiscovery ( endpoint,
anonymous = false 
)

Start OpenID verification without doing OpenID server discovery. This method is used internally by Consumer.begin after discovery is performed, and exists to provide an interface for library users needing to perform their own discovery.

Paramètres:
Auth_OpenID_ServiceEndpoint$endpointan OpenID service endpoint descriptor.
boolanonymous Set to true if you want to perform OpenID without identifiers.
Renvoie:
Auth_OpenID_AuthRequest $auth_request An OpenID authentication request object.
Auth_OpenID_Consumer::complete ( current_url,
query = null 
)

Called to interpret the server's response to an OpenID request. It is called in step 4 of the flow described in the consumer overview.

Paramètres:
string$current_urlThe URL used to invoke the application. Extract the URL from your application's web request framework and specify it here to have it checked against the openid.current_url value in the response. If the current_url URL check fails, the status of the completion will be FAILURE.
array$queryAn array of the query parameters (key => value pairs) for this HTTP request. Defaults to null. If null, the GET or POST data are automatically gotten from the PHP environment. It is only useful to override $query for testing.
Renvoie:
Auth_OpenID_ConsumerResponse $response A instance of an Auth_OpenID_ConsumerResponse subclass. The type of response is indicated by the status attribute, which will be one of SUCCESS, CANCEL, FAILURE, or SETUP_NEEDED.

Références $query, Auth_OpenID_Message::fromPostArgs(), et Auth_OpenID::getQuery().

Voici le graphe d'appel pour cette fonction :

Auth_OpenID_Consumer::getDiscoveryObject ( &$  session,
openid_url,
session_key_prefix 
)

Used in testing to define the discovery mechanism.

private

Références $session.


Documentation des données membres

Auth_OpenID_Consumer::$_token_suffix = "last_token"

private

Auth_OpenID_Consumer::$discoverMethod = 'Auth_OpenID_discover'

private

Auth_OpenID_Consumer::$session_key_prefix = "_openid_consumer_"

private


La documentation de cette classe a été générée à partir du fichier suivant :