|
ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
|
Inheritance diagram for Auth_OpenID_SQLiteStore:
Collaboration diagram for Auth_OpenID_SQLiteStore:Public Member Functions | |
| setSQL () | |
| This method should be overridden by subclasses. More... | |
| _add_nonce ($server_url, $timestamp, $salt) | |
| @access private More... | |
Public Member Functions inherited from Auth_OpenID_SQLStore | |
| Auth_OpenID_SQLStore ($connection, $associations_table=null, $nonces_table=null) | |
| This creates a new SQLStore instance. More... | |
| tableExists ($table_name) | |
| isError ($value) | |
| Returns true if $value constitutes a database error; returns false otherwise. More... | |
| resultToBool ($obj) | |
| Converts a query result to a boolean. More... | |
| setSQL () | |
| This method should be overridden by subclasses. More... | |
| reset () | |
| Resets the store by removing all records from the store's tables. More... | |
| _verifySQL () | |
| @access private More... | |
| _fixSQL () | |
| @access private More... | |
| blobDecode ($blob) | |
| blobEncode ($str) | |
| createTables () | |
| create_nonce_table () | |
| create_assoc_table () | |
| _set_assoc ($server_url, $handle, $secret, $issued, $lifetime, $assoc_type) | |
| @access private More... | |
| storeAssociation ($server_url, $association) | |
| This method puts an Association object into storage, retrievable by server URL and handle. More... | |
| _get_assoc ($server_url, $handle) | |
| @access private More... | |
| _get_assocs ($server_url) | |
| @access private More... | |
| removeAssociation ($server_url, $handle) | |
| This method removes the matching association if it's found, and returns whether the association was removed or not. More... | |
| getAssociation ($server_url, $handle=null) | |
| This method returns an Association object from storage that matches the server URL and, if specified, handle. More... | |
| _add_nonce ($server_url, $timestamp, $salt) | |
| @access private More... | |
| useNonce ($server_url, $timestamp, $salt) | |
| Called when using a nonce. More... | |
| _octify ($str) | |
| "Octifies" a binary string by returning a string with escaped octal bytes. More... | |
| _unoctify ($str) | |
| "Unoctifies" octal-escaped data from PostgreSQL and returns the resulting ASCII (possibly binary) string. More... | |
| cleanupNonces () | |
| cleanupAssociations () | |
Public Member Functions inherited from Auth_OpenID_OpenIDStore | |
| storeAssociation ($server_url, $association) | |
| This method puts an Association object into storage, retrievable by server URL and handle. More... | |
| cleanupNonces () | |
| cleanupAssociations () | |
| cleanup () | |
| supportsCleanup () | |
| Report whether this storage supports cleanup. More... | |
| getAssociation ($server_url, $handle=null) | |
| This method returns an Association object from storage that matches the server URL and, if specified, handle. More... | |
| removeAssociation ($server_url, $handle) | |
| This method removes the matching association if it's found, and returns whether the association was removed or not. More... | |
| useNonce ($server_url, $timestamp, $salt) | |
| Called when using a nonce. More... | |
| reset () | |
| Removes all entries from the store; implementation is optional. More... | |
Definition at line 19 of file SQLiteStore.php.
| Auth_OpenID_SQLiteStore::_add_nonce | ( | $server_url, | |
| $timestamp, | |||
| $salt | |||
| ) |
@access private
Reimplemented from Auth_OpenID_SQLStore.
Definition at line 58 of file SQLiteStore.php.
References $timestamp.
| Auth_OpenID_SQLiteStore::setSQL | ( | ) |
This method should be overridden by subclasses.
This method is called by the constructor to set values in $this->sql, which is an array keyed on sql name.
Reimplemented from Auth_OpenID_SQLStore.
Definition at line 20 of file SQLiteStore.php.