forked from beaulebens/keyring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.php
57 lines (49 loc) · 1.63 KB
/
store.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
/**
* Template for creating a Keyring Token Store. All storage engines
* MUST extend this. These engines are used for storing and managing
* authentication tokens for remote Services. Use $meta to handle any
* custom requirements (access v request tokens, scope, etc)
*
* @package Keyring
*/
abstract class Keyring_Store {
/**
* Any set up required to initiate this storage engine.
*/
static function init() {}
/**
* Insert a new token into this storage engine.
*/
abstract function insert( $token );
/**
* Update an existing token with a new token value and/or metadata.
*/
abstract function update( $token );
/**
* Delete a token, or tokens.
*/
abstract function delete( $args = array() );
/**
* Get an array of tokens for $service. If an $id is provided, then only get that single
* specific token (for the specified service).
*/
abstract function get_tokens( $args = array() );
/**
* Singular version of ::get_tokens(). Functions exactly the same, but
* only ever returns one token.
*/
abstract function get_token( $args = array() );
/**
* Get the number of tokens for a service
*/
abstract function count( $args = array() );
}
// Load all packaged token store engines in the ./includes/stores/ directory by including all PHP files
// Remove a Token Store (prevent it from loading at all) by filtering on 'keyring_token_stores'
$keyring_stores = glob( dirname( __FILE__ ) . '/includes/stores/*.php' );
$keyring_stores = apply_filters( 'keyring_token_stores', $keyring_stores );
foreach ( $keyring_stores as $keyring_store ) {
require $keyring_store;
}
unset( $keyring_stores, $keyring_store );