-
Notifications
You must be signed in to change notification settings - Fork 189
Expand file tree
/
Copy pathSession.php
More file actions
155 lines (135 loc) · 3.44 KB
/
Session.php
File metadata and controls
155 lines (135 loc) · 3.44 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<?php
declare(strict_types=1);
namespace Shopify\Auth;
use Exception;
use DateTime;
use Shopify\Context;
use Shopify\Utils;
/**
* Stores App information from logged in merchants so they can make authenticated requests to the Admin API.
*/
class Session
{
/** @var string|null */
private $scope = null;
/** @var DateTime|null */
private $expires = null;
/** @var string|null */
private $accessToken = null;
/** @var AccessTokenOnlineUserInfo|null */
private $onlineAccessInfo = null;
public function __construct(
private string $id,
private string $shop,
private bool $isOnline,
private string $state
) {
$this->id = $id;
$this->shop = Utils::sanitizeShopDomain($shop);
$this->isOnline = $isOnline;
$this->state = $state;
}
public function getId(): string
{
return $this->id;
}
public function getShop(): string
{
return $this->shop;
}
public function getState(): string
{
return $this->state;
}
/**
* @return string|null
*/
public function getScope()
{
return $this->scope;
}
/**
* @return DateTime|null
*/
public function getExpires()
{
return $this->expires;
}
public function isOnline(): bool
{
return $this->isOnline;
}
/**
* @return string|null
*/
public function getAccessToken()
{
return $this->accessToken;
}
/**
* @return AccessTokenOnlineUserInfo|null
*/
public function getOnlineAccessInfo()
{
return $this->onlineAccessInfo;
}
public function setScope(string $scope): void
{
$this->scope = $scope;
}
/**
* @param string|int|DateTime $expires
*
* @throws Exception
*/
public function setExpires($expires): void
{
$date = null;
if ($expires) {
if (is_string($expires)) {
$date = new DateTime($expires);
} elseif (is_numeric($expires)) {
$date = new DateTime("@$expires");
} else {
$date = $expires;
}
}
$this->expires = $date;
}
public function setAccessToken(string $accessToken): void
{
$this->accessToken = $accessToken;
}
public function setOnlineAccessInfo(AccessTokenOnlineUserInfo $onlineAccessInfo): void
{
$this->onlineAccessInfo = $onlineAccessInfo;
}
/**
* Creates a clone of the current session with a new id.
*
* @param string $newSessionId The id of the new session
*
* @return Session
*/
public function clone(string $newSessionId): Session
{
$newSession = new Session($newSessionId, $this->shop, $this->isOnline, $this->state);
$newSession->scope = $this->scope;
$newSession->expires = $this->expires;
$newSession->accessToken = $this->accessToken;
$newSession->onlineAccessInfo = $this->onlineAccessInfo;
return $newSession;
}
/**
* Checks whether this session has all of the necessary settings to make requests to Shopify.
*
* @return bool
*/
public function isValid(bool $includeExpired = false): bool
{
return (Context::$SCOPES->equals($this->scope) &&
$this->accessToken &&
($includeExpired || !$this->expires || ($this->expires > new DateTime()))
);
}
}