Package openid :: Package store :: Module sqlstore :: Class MySQLStore
[frames] | no frames]

Class MySQLStore

source code

           object --+        
                    |        
interface.OpenIDStore --+    
                        |    
                 SQLStore --+
                            |
                           MySQLStore

This is a MySQL-based specialization of SQLStore.

Uses InnoDB tables for transaction support.

To create an instance, see SQLStore.__init__. To create the tables it will use, see SQLStore.createTables.

All other methods are implementation details.

Instance Methods [hide private]
  blobDecode(self, blob)
Convert a blob as returned by the SQL engine into a str object.

Inherited from SQLStore: __getattr__, __init__, blobEncode, cleanupAssociations, cleanupNonces, createTables, getAssociation, removeAssociation, storeAssociation, txn_cleanupAssociations, txn_cleanupNonces, txn_createTables, txn_getAssociation, txn_removeAssociation, txn_storeAssociation, txn_useNonce, useNonce

Inherited from interface.OpenIDStore: cleanup

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__


Class Variables [hide private]
  create_nonce_sql = '\n CREATE TABLE %(nonces)s (\n server_url BLOB,\n t...
  create_assoc_sql = '\n CREATE TABLE %(associations)s\n (\n server_url B...
  create_settings_sql = '\n CREATE TABLE %(settings)s\n (\n setting VARCHAR(...
  set_assoc_sql = 'REPLACE INTO %(associations)s VALUES (%%s, %%s, %%s...
  get_assocs_sql = 'SELECT handle, secret, issued, lifetime, assoc_type...
  get_expired_sql = 'SELECT server_url FROM %(associations)s WHERE issue...
  get_assoc_sql = 'SELECT handle, secret, issued, lifetime, assoc_type...
  remove_assoc_sql = 'DELETE FROM %(associations)s WHERE server_url = %%s...
  clean_assoc_sql = 'DELETE FROM %(associations)s WHERE issued + lifetim...
  add_nonce_sql = 'INSERT INTO %(nonces)s VALUES (%%s, %%s, %%s);'
  clean_nonce_sql = 'DELETE FROM %(nonces)s WHERE timestamp < %%s;'

Inherited from SQLStore: associations_table, nonces_table, settings_table


Properties [hide private]

Inherited from object: __class__


Method Details [hide private]

blobDecode(self, blob)

source code 

Convert a blob as returned by the SQL engine into a str object.

str -> str
Overrides: SQLStore.blobDecode
(inherited documentation)

Class Variable Details [hide private]

create_nonce_sql

Value:
'''
    CREATE TABLE %(nonces)s (
        server_url BLOB,
        timestamp INTEGER,
        salt CHAR(40),
        PRIMARY KEY (server_url(255), timestamp, salt)
    )
    TYPE=InnoDB;
...                                                                    
      

create_assoc_sql

Value:
'''
    CREATE TABLE %(associations)s
    (
        server_url BLOB,
        handle VARCHAR(255),
        secret BLOB,
        issued INTEGER,
        lifetime INTEGER,
...                                                                    
      

create_settings_sql

Value:
'''
    CREATE TABLE %(settings)s
    (
        setting VARCHAR(128) UNIQUE PRIMARY KEY,
        value BLOB
    )
    TYPE=InnoDB;
    '''                                                                
      

set_assoc_sql

Value:
'REPLACE INTO %(associations)s VALUES (%%s, %%s, %%s, %%s, %%s, %%s);'
                                                                       
      

get_assocs_sql

Value:
'SELECT handle, secret, issued, lifetime, assoc_type FROM %(associatio
ns)s WHERE server_url = %%s;'                                          
      

get_expired_sql

Value:
'SELECT server_url FROM %(associations)s WHERE issued + lifetime < %%s
;'                                                                     
      

get_assoc_sql

Value:
'SELECT handle, secret, issued, lifetime, assoc_type FROM %(associatio
ns)s WHERE server_url = %%s AND handle = %%s;'                         
      

remove_assoc_sql

Value:
'DELETE FROM %(associations)s WHERE server_url = %%s AND handle = %%s;
'                                                                      
      

clean_assoc_sql

Value:
'DELETE FROM %(associations)s WHERE issued + lifetime < %%s;'          
      

add_nonce_sql

Value:
'INSERT INTO %(nonces)s VALUES (%%s, %%s, %%s);'                       
      

clean_nonce_sql

Value:
'DELETE FROM %(nonces)s WHERE timestamp < %%s;'