ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
TrivialOAuthDataStore.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
24 class TrivialOAuthDataStore extends \ILIAS\LTIOAuth\OAuthDataStore
25 {
26  private array $consumers = array();
27 
28  public function add_consumer($consumer_key, $consumer_secret): void
29  {
30  $this->consumers[$consumer_key] = $consumer_secret;
31  }
32 
33  public function lookup_consumer($consumer_key): ?ILIAS\LTIOAuth\OAuthConsumer
34  {
35  if (strpos($consumer_key, "http://") === 0) {
36  return new \ILIAS\LTIOAuth\OAuthConsumer($consumer_key, "secret", null);
37  }
38  if ($this->consumers[$consumer_key]) {
39  return new \ILIAS\LTIOAuth\OAuthConsumer($consumer_key, $this->consumers[$consumer_key], null);
40  }
41  return null;
42  }
43 
44  public function lookup_token($consumer, $token_type, $token): \OAuthToken
45  {
46  return new OAuthToken($consumer, "");
47  }
48 
49  // Return NULL if the nonce has not been used
50  // Return $nonce if the nonce was previously used
51  public function lookup_nonce($consumer, $token, $nonce, $timestamp)
52  {
53  // Should add some clever logic to keep nonces from
54  // being reused - for no we are really trusting
55  // that the timestamp will save us
56  return null;
57  }
58 
59  public function new_request_token($consumer, $callback = null)
60  {
61  return null;
62  }
63 
64  public function new_access_token($token, $consumer, $verifier = null)
65  {
66  return null;
67  }
68 }
add_consumer($consumer_key, $consumer_secret)
Interface Observer Contains several chained tasks and infos about them.
lookup_nonce($consumer, $token, $nonce, $timestamp)
new_access_token($token, $consumer, $verifier=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$token
Definition: xapitoken.php:70
A Trivial memory-based store - no support for tokens.
foreach($mandatory_scripts as $file) $timestamp
Definition: buildRTE.php:70
new_request_token($consumer, $callback=null)
lookup_token($consumer, $token_type, $token)