OpenApiUtilClient.php
15.0 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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
<?php
namespace AlibabaCloud\OpenApiUtil;
use AlibabaCloud\Tea\Model;
use AlibabaCloud\Tea\Request;
use AlibabaCloud\Tea\Utils\Utils;
use OneSm\Sm3;
use Psr\Http\Message\StreamInterface;
/**
* This is for OpenApi Util.
*/
class OpenApiUtilClient
{
/**
* Convert all params of body other than type of readable into content.
*
* @param Model $body source Model
* @param Model $content target Model
*/
public static function convert($body, $content)
{
$class = new \ReflectionClass($body);
foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
$name = $property->getName();
if (!$property->isStatic()) {
$value = $property->getValue($body);
if ($value instanceof StreamInterface) {
continue;
}
$content->{$name} = $value;
}
}
}
/**
* Get the string to be signed according to request.
*
* @param Request $request which contains signed messages
*
* @return string the signed string
*/
public static function getStringToSign($request)
{
$pathname = $request->pathname ?: '';
$query = $request->query ?: [];
$accept = isset($request->headers['accept']) ? $request->headers['accept'] : '';
$contentMD5 = isset($request->headers['content-md5']) ? $request->headers['content-md5'] : '';
$contentType = isset($request->headers['content-type']) ? $request->headers['content-type'] : '';
$date = isset($request->headers['date']) ? $request->headers['date'] : '';
$result = $request->method . "\n" .
$accept . "\n" .
$contentMD5 . "\n" .
$contentType . "\n" .
$date . "\n";
$canonicalizedHeaders = self::getCanonicalizedHeaders($request->headers);
$canonicalizedResource = self::getCanonicalizedResource($pathname, $query);
return $result . $canonicalizedHeaders . $canonicalizedResource;
}
/**
* Get signature according to stringToSign, secret.
*
* @param string $stringToSign the signed string
* @param string $secret accesskey secret
*
* @return string the signature
*/
public static function getROASignature($stringToSign, $secret)
{
return base64_encode(hash_hmac('sha1', $stringToSign, $secret, true));
}
/**
* Parse filter into a form string.
*
* @param array $filter object
*
* @return string the string
*/
public static function toForm($filter)
{
$query = $filter;
if (null === $query) {
return '';
}
if ($query instanceof Model) {
$query = $query->toMap();
}
$tmp = [];
foreach ($query as $k => $v) {
if (0 !== strpos($k, '_')) {
$tmp[$k] = $v;
}
}
$res = self::flatten($tmp);
ksort($res);
return http_build_query($res);
}
/**
* Get timestamp.
*
* @return string the timestamp string
*/
public static function getTimestamp()
{
return gmdate('Y-m-d\\TH:i:s\\Z');
}
/**
* Parse filter into a object which's type is map[string]string.
*
* @param array $filter query param
*
* @return array the object
*/
public static function query($filter)
{
if (null === $filter) {
return [];
}
$dict = $filter;
if ($dict instanceof Model) {
$dict = $dict->toMap();
}
$tmp = [];
foreach ($dict as $k => $v) {
if (0 !== strpos($k, '_')) {
$tmp[$k] = $v;
}
}
return self::flatten($tmp);
}
/**
* Get signature according to signedParams, method and secret.
*
* @param array $signedParams params which need to be signed
* @param string $method http method e.g. GET
* @param string $secret AccessKeySecret
*
* @return string the signature
*/
public static function getRPCSignature($signedParams, $method, $secret)
{
$secret .= '&';
$strToSign = self::getRpcStrToSign($method, $signedParams);
$signMethod = 'HMAC-SHA1';
return self::encode($signMethod, $strToSign, $secret);
}
/**
* Parse array into a string with specified style.
*
* @style specified style e.g. repeatList
*
* @param mixed $array the array
* @param string $prefix the prefix string
* @param string $style
*
* @return string the string
*/
public static function arrayToStringWithSpecifiedStyle($array, $prefix, $style)
{
if (null === $array) {
return '';
}
if ('repeatList' === $style) {
return self::toForm([$prefix => $array]);
}
if ('simple' == $style || 'spaceDelimited' == $style || 'pipeDelimited' == $style) {
$strs = self::flatten($array);
switch ($style) {
case 'spaceDelimited':
return implode(' ', $strs);
case 'pipeDelimited':
return implode('|', $strs);
default:
return implode(',', $strs);
}
} elseif ('json' === $style) {
return json_encode($array);
}
return '';
}
/**
* Transform input as array.
*
* @param mixed $input
*
* @return array
*/
public static function parseToArray($input)
{
self::parse($input, $result);
return $result;
}
/**
* Transform input as map.
*
* @param mixed $input
*
* @return array
*/
public static function parseToMap($input)
{
self::parse($input, $result);
return $result;
}
public static function getEndpoint($endpoint, $useAccelerate, $endpointType = 'public')
{
if ('internal' == $endpointType) {
$tmp = explode('.', $endpoint);
$tmp[0] .= '-internal';
$endpoint = implode('.', $tmp);
}
if ($useAccelerate && 'accelerate' == $endpointType) {
return 'oss-accelerate.aliyuncs.com';
}
return $endpoint;
}
/**
* Encode raw with base16.
*
* @param int[] $raw encoding data
*
* @return string encoded string
*/
public static function hexEncode($raw)
{
if (is_array($raw)) {
$raw = Utils::toString($raw);
}
return bin2hex($raw);
}
/**
* Hash the raw data with signatureAlgorithm.
*
* @param int[] $raw hashing data
* @param string $signatureAlgorithm the autograph method
*
* @return array hashed bytes
*/
public static function hash($raw, $signatureAlgorithm)
{
$str = Utils::toString($raw);
switch ($signatureAlgorithm) {
case 'ACS3-HMAC-SHA256':
case 'ACS3-RSA-SHA256':
$res = hash('sha256', $str, true);
return Utils::toBytes($res);
case 'ACS3-HMAC-SM3':
$res = self::sm3($str);
return Utils::toBytes(hex2bin($res));
}
return [];
}
/**
* Get the authorization.
*
* @param Request $request request params
* @param string $signatureAlgorithm the autograph method
* @param string $payload the hashed request
* @param string $accesskey the accessKey string
* @param string $accessKeySecret the accessKeySecret string
*
* @return string authorization string
* @throws \ErrorException
*
*/
public static function getAuthorization($request, $signatureAlgorithm, $payload, $accesskey, $accessKeySecret)
{
$canonicalURI = $request->pathname ? $request->pathname : '/';
$method = strtoupper($request->method);
$canonicalQueryString = self::getCanonicalQueryString($request->query);
$signHeaders = [];
foreach ($request->headers as $k => $v) {
$k = strtolower($k);
if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) {
$signHeaders[$k] = $v;
}
}
ksort($signHeaders);
$headers = [];
foreach ($request->headers as $k => $v) {
$k = strtolower($k);
if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) {
$headers[$k] = trim($v);
}
}
$canonicalHeaderString = '';
ksort($headers);
foreach ($headers as $k => $v) {
$canonicalHeaderString .= $k . ':' . trim(self::filter($v)) . "\n";
}
if (empty($canonicalHeaderString)) {
$canonicalHeaderString = "\n";
}
$canonicalRequest = $method . "\n" . $canonicalURI . "\n" . $canonicalQueryString . "\n" .
$canonicalHeaderString . "\n" . implode(';', array_keys($signHeaders)) . "\n" . $payload;
$strtosign = $signatureAlgorithm . "\n" . self::hexEncode(self::hash(Utils::toBytes($canonicalRequest), $signatureAlgorithm));
$signature = self::sign($accessKeySecret, $strtosign, $signatureAlgorithm);
$signature = self::hexEncode($signature);
return $signatureAlgorithm .
' Credential=' . $accesskey .
',SignedHeaders=' . implode(';', array_keys($signHeaders)) .
',Signature=' . $signature;
}
public static function sign($secret, $str, $algorithm)
{
$result = '';
switch ($algorithm) {
case 'ACS3-HMAC-SHA256':
$result = hash_hmac('sha256', $str, $secret, true);
break;
case 'ACS3-HMAC-SM3':
$result = self::hmac_sm3($str, $secret, true);
break;
case 'ACS3-RSA-SHA256':
$privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" . $secret . "\n-----END RSA PRIVATE KEY-----";
@openssl_sign($str, $result, $privateKey, OPENSSL_ALGO_SHA256);
}
return Utils::toBytes($result);
}
/**
* Get encoded path.
*
* @param string $path the raw path
*
* @return string encoded path
*/
public static function getEncodePath($path)
{
$tmp = explode('/', $path);
foreach ($tmp as &$t) {
$t = rawurlencode($t);
}
return implode('/', $tmp);
}
/**
* Get encoded param.
*
* @param string $param the raw param
*
* @return string encoded param
*/
public static function getEncodeParam($param)
{
return rawurlencode($param);
}
private static function getRpcStrToSign($method, $query)
{
ksort($query);
$params = [];
foreach ($query as $k => $v) {
if (null !== $v) {
$k = rawurlencode($k);
$v = rawurlencode($v);
$params[] = $k . '=' . (string)$v;
}
}
$str = implode('&', $params);
return $method . '&' . rawurlencode('/') . '&' . rawurlencode($str);
}
private static function encode($signMethod, $strToSign, $secret)
{
switch ($signMethod) {
case 'HMAC-SHA256':
return base64_encode(hash_hmac('sha256', $strToSign, $secret, true));
default:
return base64_encode(hash_hmac('sha1', $strToSign, $secret, true));
}
}
/**
* @param array $items
* @param string $delimiter
* @param string $prepend
*
* @return array
*/
private static function flatten($items = [], $delimiter = '.', $prepend = '')
{
$flatten = [];
foreach ($items as $key => $value) {
$pos = \is_int($key) ? $key + 1 : $key;
if (\is_array($value) && !empty($value)) {
$flatten = array_merge(
$flatten,
self::flatten($value, $delimiter, $prepend . $pos . $delimiter)
);
} else {
$flatten[$prepend . $pos] = $value;
}
}
return $flatten;
}
private static function getCanonicalizedHeaders($headers, $prefix = 'x-acs-')
{
ksort($headers);
$str = '';
foreach ($headers as $k => $v) {
if (0 === strpos(strtolower($k), $prefix)) {
$str .= $k . ':' . trim(self::filter($v)) . "\n";
}
}
return $str;
}
private static function getCanonicalizedResource($pathname, $query)
{
if (0 === \count($query)) {
return $pathname;
}
ksort($query);
$tmp = [];
foreach ($query as $k => $v) {
if (!empty($v)) {
$tmp[] = $k . '=' . $v;
} else {
$tmp[] = $k;
}
}
return $pathname . '?' . implode('&', $tmp);
}
private static function parse($input, &$output)
{
if (null === $input || '' === $input) {
$output = [];
}
$recursive = function ($input) use (&$recursive) {
if ($input instanceof Model) {
$input = $input->toMap();
} elseif (\is_object($input)) {
$input = get_object_vars($input);
}
if (!\is_array($input)) {
return $input;
}
$data = [];
foreach ($input as $k => $v) {
$data[$k] = $recursive($v);
}
return $data;
};
$output = $recursive($input);
if (!\is_array($output)) {
$output = [$output];
}
}
private static function filter($str)
{
return str_replace(["\t", "\n", "\r", "\f"], '', $str);
}
private static function hmac_sm3($data, $key, $raw_output = false)
{
$pack = 'H' . \strlen(self::sm3('test'));
$blocksize = 64;
if (\strlen($key) > $blocksize) {
$key = pack($pack, self::sm3($key));
}
$key = str_pad($key, $blocksize, \chr(0x00));
$ipad = $key ^ str_repeat(\chr(0x36), $blocksize);
$opad = $key ^ str_repeat(\chr(0x5C), $blocksize);
$hmac = self::sm3($opad . pack($pack, self::sm3($ipad . $data)));
return $raw_output ? pack($pack, $hmac) : $hmac;
}
private static function sm3($message)
{
return (new Sm3())->sign($message);
}
private static function getCanonicalQueryString($query)
{
ksort($query);
$params = [];
foreach ($query as $k => $v) {
if (null === $v) {
continue;
}
$str = rawurlencode($k);
if ('' !== $v && null !== $v) {
$str .= '=' . rawurlencode($v);
} else {
$str .= '=';
}
$params[] = $str;
}
return implode('&', $params);
}
}