-
Notifications
You must be signed in to change notification settings - Fork 424
/
Copy pathAuth.php
285 lines (250 loc) · 8.05 KB
/
Auth.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<?php
namespace Qiniu;
use Qiniu\Http\Header;
use Qiniu\Zone;
final class Auth
{
private $accessKey;
private $secretKey;
public $options;
public function __construct($accessKey, $secretKey, $options = null)
{
$this->accessKey = $accessKey;
$this->secretKey = $secretKey;
$defaultOptions = array(
'disableQiniuTimestampSignature' => null
);
if ($options == null) {
$options = $defaultOptions;
}
$this->options = array_merge($defaultOptions, $options);
}
public function getAccessKey()
{
return $this->accessKey;
}
public function sign($data)
{
$hmac = hash_hmac('sha1', $data, $this->secretKey, true);
return $this->accessKey . ':' . \Qiniu\base64_urlSafeEncode($hmac);
}
public function signWithData($data)
{
$encodedData = \Qiniu\base64_urlSafeEncode($data);
return $this->sign($encodedData) . ':' . $encodedData;
}
public function signRequest($urlString, $body, $contentType = null)
{
$url = parse_url($urlString);
$data = '';
if (array_key_exists('path', $url)) {
$data = $url['path'];
}
if (array_key_exists('query', $url)) {
$data .= '?' . $url['query'];
}
$data .= "\n";
if ($body !== null && $contentType === 'application/x-www-form-urlencoded') {
$data .= $body;
}
return $this->sign($data);
}
/**
* @param string $urlString
* @param string $method
* @param string $body
* @param null|Header $headers
*/
public function signQiniuAuthorization($urlString, $method = "GET", $body = "", $headers = null)
{
$url = parse_url($urlString);
if (!$url) {
return array(null, new \Exception("parse_url error"));
}
// append method, path and query
if ($method === "") {
$data = "GET ";
} else {
$data = $method . " ";
}
if (isset($url["path"])) {
$data .= $url["path"];
}
if (isset($url["query"])) {
$data .= "?" . $url["query"];
}
// append Host
$data .= "\n";
$data .= "Host: ";
if (isset($url["host"])) {
$data .= $url["host"];
}
if (isset($url["port"]) && $url["port"] > 0) {
$data .= ":" . $url["port"];
}
// try to append content type
if ($headers != null && isset($headers["Content-Type"])) {
// append content type
$data .= "\n";
$data .= "Content-Type: " . $headers["Content-Type"];
}
// try append xQiniuHeaders
if ($headers != null) {
$headerLines = array();
$keyPrefix = "X-Qiniu-";
foreach ($headers as $k => $v) {
if (strlen($k) > strlen($keyPrefix) && strpos($k, $keyPrefix) === 0) {
array_push(
$headerLines,
$k . ": " . $v
);
}
}
if (count($headerLines) > 0) {
$data .= "\n";
sort($headerLines);
$data .= implode("\n", $headerLines);
}
}
// append body
$data .= "\n\n";
if (!is_null($body)
&& strlen($body) > 0
&& isset($headers["Content-Type"])
&& $headers["Content-Type"] != "application/octet-stream"
) {
$data .= $body;
}
return array($this->sign($data), null);
}
public function verifyCallback(
$contentType,
$originAuthorization,
$url,
$body,
$method = "GET",
$headers = array()
) {
if (strpos($originAuthorization, 'Qiniu') === 0) {
$qnHeaders = new Header($headers);
if (!isset($qnHeaders['Content-Type'])) {
$qnHeaders['Content-Type'] = $contentType;
}
list($sign, $err) = $this->signQiniuAuthorization(
$url,
$method,
$body,
$qnHeaders
);
if ($err !== null) {
return false;
}
$authorization = 'Qiniu ' . $sign;
} else {
$authorization = 'QBox ' . $this->signRequest($url, $body, $contentType);
}
return $originAuthorization === $authorization;
}
public function privateDownloadUrl($baseUrl, $expires = 3600)
{
$deadline = time() + $expires;
$pos = strpos($baseUrl, '?');
if ($pos !== false) {
$baseUrl .= '&e=';
} else {
$baseUrl .= '?e=';
}
$baseUrl .= $deadline;
$token = $this->sign($baseUrl);
return "$baseUrl&token=$token";
}
public function uploadToken($bucket, $key = null, $expires = 3600, $policy = null, $strictPolicy = true)
{
$deadline = time() + $expires;
$scope = $bucket;
if ($key !== null) {
$scope .= ':' . $key;
}
$args = self::copyPolicy($args, $policy, $strictPolicy);
$args['scope'] = $scope;
$args['deadline'] = $deadline;
$b = json_encode($args);
return $this->signWithData($b);
}
/**
*上传策略,参数规格详见
*http://developer.qiniu.com/docs/v6/api/reference/security/put-policy.html
*/
private static $policyFields = array(
'callbackUrl',
'callbackBody',
'callbackHost',
'callbackBodyType',
'callbackFetchKey',
'returnUrl',
'returnBody',
'endUser',
'saveKey',
'forceSaveKey',
'insertOnly',
'detectMime',
'mimeLimit',
'fsizeMin',
'fsizeLimit',
'persistentOps', // 与 persistentWorkflowTemplateID 二选一
'persistentNotifyUrl',
'persistentPipeline',
'persistentType', // 为 `1` 时开启闲时任务
'persistentWorkflowTemplateID', // 与 persistentOps 二选一
'deleteAfterDays',
'fileType',
'isPrefixalScope',
'transform', // deprecated
'transformFallbackKey', // deprecated
'transformFallbackMode', // deprecated
);
private static function copyPolicy(&$policy, $originPolicy, $strictPolicy)
{
if ($originPolicy === null) {
return array();
}
foreach ($originPolicy as $key => $value) {
if (!$strictPolicy || in_array((string)$key, self::$policyFields, true)) {
$policy[$key] = $value;
}
}
return $policy;
}
public function authorization($url, $body = null, $contentType = null)
{
$authorization = 'QBox ' . $this->signRequest($url, $body, $contentType);
return array('Authorization' => $authorization);
}
public function authorizationV2($url, $method, $body = null, $contentType = null)
{
$headers = new Header();
$result = array();
if ($contentType != null) {
$headers['Content-Type'] = $contentType;
$result['Content-Type'] = $contentType;
}
$signDate = gmdate('Ymd\THis\Z', time());
if ($this->options['disableQiniuTimestampSignature'] !== null) {
if (!$this->options['disableQiniuTimestampSignature']) {
$headers['X-Qiniu-Date'] = $signDate;
$result['X-Qiniu-Date'] = $signDate;
}
} elseif (getenv("DISABLE_QINIU_TIMESTAMP_SIGNATURE")) {
if (strtolower(getenv("DISABLE_QINIU_TIMESTAMP_SIGNATURE")) !== "true") {
$headers['X-Qiniu-Date'] = $signDate;
$result['X-Qiniu-Date'] = $signDate;
}
} else {
$headers['X-Qiniu-Date'] = $signDate;
$result['X-Qiniu-Date'] = $signDate;
}
list($sign) = $this->signQiniuAuthorization($url, $method, $body, $headers);
$result['Authorization'] = 'Qiniu ' . $sign;
return $result;
}
}