OpenId/Provider/Storage.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_Provider  
Version
$Id$  

\Zend_OpenId_Provider_Storage

Package: Zend_OpenId\Zend_OpenId_Provider
Abstract class to implement external storage for OpenID consumer
Children
\Zend_OpenId_Provider_Storage_File
Category
Zend  
Copyright
Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)  
License
New BSD License  

Methods

methodpublicaddAssociation(string $handle, string $macFunc, string $secret, string $expires) : void
abstract

Stores information about session identified by $handle

Parameters
NameTypeDescription
$handlestring

assiciation handle

$macFuncstring

HMAC function (sha1 or sha256)

$secretstring

shared secret

$expiresstring

expiration UNIX time

methodpublicaddSite(string $id, string $site, mixed $trusted) : bool
abstract

Stores information about trusted/untrusted site for given user

Parameters
NameTypeDescription
$idstring

user identity URL

$sitestring

site URL

$trustedmixed

trust data from extensions or just a boolean value

Returns
TypeDescription
bool
methodpublicaddUser(string $id, string $password) : bool
abstract

Register new user with given $id and $password Returns true in case of success and false if user with given $id already exists

Parameters
NameTypeDescription
$idstring

user identity URL

$passwordstring

encoded user password

Returns
TypeDescription
bool
methodpubliccheckUser(string $id, string $password) : bool
abstract

Verify if user with given $id exists and has specified $password

Parameters
NameTypeDescription
$idstring

user identity URL

$passwordstring

user password

Returns
TypeDescription
bool
methodpublicgetAssociation(string $handle,  $macFunc,  $secret,  $expires) : bool
abstract

Gets information about association identified by $handle Returns true if given association found and not expired and false otherwise

Parameters
NameTypeDescription
$handlestring

assiciation handle

$macFunc
$secret
$expires
Returns
TypeDescription
bool
methodpublicgetTrustedSites(string $id) : array
abstract

Returns array of all trusted/untrusted sites for given user identified by $id

Parameters
NameTypeDescription
$idstring

user identity URL

Returns
TypeDescription
array
methodpublichasUser(string $id) : bool
abstract

Returns true if user with given $id exists and false otherwise

Parameters
NameTypeDescription
$idstring

user identity URL

Returns
TypeDescription
bool
Documentation was generated by phpDocumentor 2.2.0 .