This repository was archived by the owner on Mar 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOAuthExampleSessionStorage.php
85 lines (67 loc) · 2.2 KB
/
OAuthExampleSessionStorage.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* Class OAuthExampleSessionStorage
*
* @created 26.07.2019
* @author smiley <smiley@chillerlan.net>
* @copyright 2019 smiley
* @license MIT
*/
use chillerlan\OAuth\Core\AccessToken;
use chillerlan\OAuth\OAuthOptions;
use chillerlan\OAuth\Storage\{OAuthStorageException, SessionStorage};
use chillerlan\Settings\SettingsContainerInterface;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
class OAuthExampleSessionStorage extends SessionStorage{
protected string|null $storagepath;
/**
* OAuthExampleSessionStorage constructor.
*
* @throws \chillerlan\OAuth\Storage\OAuthStorageException
*/
public function __construct(
OAuthOptions|SettingsContainerInterface $options = new OAuthOptions,
LoggerInterface $logger = new NullLogger,
string|null $storagepath = null,
){
parent::__construct($options, $logger);
if($storagepath !== null){
$storagepath = trim($storagepath);
if(!is_dir($storagepath) || !is_writable($storagepath)){
throw new OAuthStorageException('invalid storage path');
}
$storagepath = realpath($storagepath);
}
$this->storagepath = $storagepath;
}
/**
* @inheritDoc
*/
public function storeAccessToken(AccessToken $token, string $service = null):static{
parent::storeAccessToken($token, $service);
if($this->storagepath !== null){
$tokenfile = sprintf('%s/%s.token.json', $this->storagepath, $this->getServiceName($service));
if(file_put_contents($tokenfile, $token->toJSON()) === false){
throw new OAuthStorageException('unable to access file storage');
}
}
return $this;
}
/**
* @inheritDoc
*/
public function getAccessToken(string $service = null):AccessToken{
$service = $this->getServiceName($service);
if($this->hasAccessToken($service)){
return (new AccessToken)->fromJSON($_SESSION[$this->tokenVar][$service]);
}
if($this->storagepath !== null){
$tokenfile = sprintf('%s/%s.token.json', $this->storagepath, $service);
if(file_exists($tokenfile)){
return (new AccessToken)->fromJSON(file_get_contents($tokenfile));
}
}
throw new OAuthStorageException(sprintf('token for service "%s" not found', $service));
}
}