ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
Auth_OpenID_Server Class Reference
+ Collaboration diagram for Auth_OpenID_Server:

Public Member Functions

 Auth_OpenID_Server ($store, $op_endpoint=null)
 handleRequest ($request)
 Handle a request.
 openid_check_authentication ($request)
 The callback for 'check_authentication' messages.
 openid_associate ($request)
 The callback for 'associate' messages.
 encodeResponse ($response)
 Encodes as response in the appropriate format suitable for sending to the user agent.
 decodeRequest ($query=null)
 Decodes a query args array into the appropriate Auth_OpenID_Request object.

Detailed Description

Definition at line 1681 of file Server.php.

Member Function Documentation

Auth_OpenID_Server::Auth_OpenID_Server (   $store,
  $op_endpoint = null 
)

Definition at line 1682 of file Server.php.

References Auth_OpenID_getDefaultNegotiator().

{
$this->store = $store;
$this->signatory = new Auth_OpenID_Signatory($this->store);
$this->encoder = new Auth_OpenID_SigningEncoder($this->signatory);
$this->decoder = new Auth_OpenID_Decoder($this);
$this->op_endpoint = $op_endpoint;
$this->negotiator = Auth_OpenID_getDefaultNegotiator();
}

+ Here is the call graph for this function:

Auth_OpenID_Server::decodeRequest (   $query = null)

Decodes a query args array into the appropriate Auth_OpenID_Request object.

Definition at line 1755 of file Server.php.

References $query, and Auth_OpenID\getQuery().

{
if ($query === null) {
}
return $this->decoder->decode($query);
}

+ Here is the call graph for this function:

Auth_OpenID_Server::encodeResponse (   $response)

Encodes as response in the appropriate format suitable for sending to the user agent.

Definition at line 1746 of file Server.php.

{
return $this->encoder->encode($response);
}
Auth_OpenID_Server::handleRequest (   $request)

Handle a request.

Given an Auth_OpenID_Request object, call the appropriate Auth_OpenID_Server method to process the request and generate a response.

Parameters
Auth_OpenID_Request$requestAn Auth_OpenID_Request returned by Auth_OpenID_Server::decodeRequest().
Returns
Auth_OpenID_ServerResponse $response A response object capable of generating a user-agent reply.

Definition at line 1703 of file Server.php.

{
if (method_exists($this, "openid_" . $request->mode)) {
$handler = array($this, "openid_" . $request->mode);
return call_user_func($handler, &$request);
}
return null;
}
Auth_OpenID_Server::openid_associate (   $request)

The callback for 'associate' messages.

Definition at line 1723 of file Server.php.

{
$assoc_type = $request->assoc_type;
$session_type = $request->session->session_type;
if ($this->negotiator->isAllowed($assoc_type, $session_type)) {
$assoc = $this->signatory->createAssociation(false,
$assoc_type);
return $request->answer($assoc);
} else {
$message = sprintf('Association type %s is not supported with '.
'session type %s', $assoc_type, $session_type);
list($preferred_assoc_type, $preferred_session_type) =
$this->negotiator->getAllowedType();
return $request->answerUnsupported($message,
$preferred_assoc_type,
$preferred_session_type);
}
}
Auth_OpenID_Server::openid_check_authentication (   $request)

The callback for 'check_authentication' messages.

Definition at line 1715 of file Server.php.

{
return $request->answer($this->signatory);
}

The documentation for this class was generated from the following file: