forked from julien-c/oauth2-example-auth-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
model_session.php
145 lines (129 loc) · 4.28 KB
/
model_session.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
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
<?php
class SessionModel implements \OAuth2\Storage\SessionInterface {
private $db;
public function __construct()
{
require_once 'db.php';
$this->db = new DB();
}
public function createSession($clientId, $redirectUri, $type = 'user', $typeId = null, $authCode = null, $accessToken = null, $refreshToken = null, $accessTokenExpire = null, $stage = 'requested')
{
$this->db->query('
INSERT INTO oauth_sessions (
client_id,
redirect_uri,
owner_type,
owner_id,
auth_code,
access_token,
refresh_token,
access_token_expires,
stage,
first_requested,
last_updated
)
VALUES (
:clientId,
:redirectUri,
:type,
:typeId,
:authCode,
:accessToken,
:refreshToken,
:accessTokenExpire,
:stage,
UNIX_TIMESTAMP(NOW()),
UNIX_TIMESTAMP(NOW())
)', array(
':clientId' => $clientId,
':redirectUri' => $redirectUri,
':type' => $type,
':typeId' => $typeId,
':authCode' => $authCode,
':accessToken' => $accessToken,
':refreshToken' => $refreshToken,
':accessTokenExpire' => $accessTokenExpire,
':stage' => $stage
));
return $this->db->getInsertId();
}
public function updateSession($sessionId, $authCode = null, $accessToken = null, $refreshToken = null, $accessTokenExpire = null, $stage = 'requested')
{
$this->db->query('
UPDATE oauth_sessions SET
auth_code = :authCode,
access_token = :accessToken,
refresh_token = :refreshToken,
access_token_expires = :accessTokenExpire,
stage = :stage,
last_updated = UNIX_TIMESTAMP(NOW())
WHERE id = :sessionId',
array(
':authCode' => $authCode,
':accessToken' => $accessToken,
':refreshToken' => $refreshToken,
':accessTokenExpire' => $accessTokenExpire,
':stage' => $stage,
':sessionId' => $sessionId
));
}
public function deleteSession($clientId, $type, $typeId)
{
$this->db->query('
DELETE FROM oauth_sessions WHERE
client_id = :clientId AND
owner_type = :type AND
owner_id = :typeId',
array(
':clientId' => $clientId,
':type' => $type,
':typeId' => $typeId
));
}
public function validateAuthCode($clientId, $redirectUri, $authCode)
{
$result = $this->db->query('
SELECT * FROM oauth_sessions WHERE
client_id = :clientId AND
redirect_uri = :redirectUri AND
auth_code = :authCode',
array(
':clientId' => $clientId,
':redirectUri' => $redirectUri,
':authCode' => $authCode
));
while ($row = $result->fetch())
{
return (array) $row;
}
return false;
}
public function validateAccessToken($accessToken)
{
// Not needed for this demo
die(var_dump('validateAccessToken'));
}
public function getAccessToken($sessionId)
{
// Not needed for this demo
}
public function validateRefreshToken($refreshToken, $clientId)
{
// Not needed for this demo
}
public function updateRefreshToken($sessionId, $newAccessToken, $newRefreshToken, $accessTokenExpires)
{
// Not needed for this demo
}
public function associateScope($sessionId, $scopeId)
{
$this->db->query('INSERT INTO oauth_session_scopes (session_id, scope_id) VALUE (:sessionId, :scopeId)', array(
':sessionId' => $sessionId,
':scopeId' => $scopeId
));
}
public function getScopes($accessToken)
{
// Not needed for this demo
}
}