123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- defined('GNUSOCIAL') || die();
- class Nonce extends Managed_DataObject
- {
-
-
- public $__table = 'nonce';
- public $consumer_key;
- public $tok;
- public $nonce;
- public $ts;
- public $created;
- public $modified;
-
-
-
- public function links()
- {
- return array('consumer_key,token' => 'token:consumer_key,token');
- }
- public static function schemaDef()
- {
- return array(
- 'description' => 'OAuth nonce record',
- 'fields' => array(
- 'consumer_key' => array('type' => 'varchar', 'length' => 191, 'not null' => true, 'description' => 'unique identifier, root URL'),
- 'tok' => array('type' => 'char', 'length' => 32, 'description' => 'buggy old value, ignored'),
- 'nonce' => array('type' => 'char', 'length' => 32, 'not null' => true, 'description' => 'nonce'),
- 'ts' => array('type' => 'datetime', 'not null' => true, 'description' => 'timestamp sent'),
- 'created' => array('type' => 'datetime', 'description' => 'date this record was created'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
- ),
- 'primary key' => array('consumer_key', 'ts', 'nonce'),
- );
- }
- }
|