Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat 云处理、Rest API 使用新的签名方式 #22

Merged
merged 1 commit into from
Feb 10, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions src/Upyun/Api/Pretreat.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,12 @@ public function process($source, $tasks) {
'accept' => 'json'
);

$url = $this->url . '/pretreatment';
$signature = Signature::getSignature($this->config, $params, Signature::SIGN_VIDEO);
$response = $client->request('POST', $url, [
'headers' => array('Authorization' => "UPYUN {$this->config->operatorName}:$signature"),
$path = '/pretreatment/';
$method = 'POST';
$signedHeaders = Signature::getHeaderSign($this->config, $method, $path);

$response = $client->request($method, $this->url . $path, [
'headers' => $signedHeaders,
'form_params' => $params
]);

Expand All @@ -49,15 +51,16 @@ public function query($taskIds, $path) {
]);

$params = array(
'bucket_name' => $this->config->bucketName,
'service' => $this->config->bucketName,
'task_ids' => implode(',', $taskIds)
);
$path = $path . '?' . http_build_query($params);

$method = 'GET';
$url = $this->url . $path;
$signature = Signature::getSignature($this->config, $params, Signature::SIGN_VIDEO);
$response = $client->request('GET', $url, [
'headers' => array('Authorization' => "UPYUN {$this->config->operatorName}:$signature"),
'query' => $params
$signedHeaders = Signature::getHeaderSign($this->config, $method, $path);
$response = $client->request($method, $url, [
'headers' => $signedHeaders
]);

if ($response->getStatusCode() === 200) {
Expand All @@ -69,4 +72,4 @@ public function query($taskIds, $path) {
}
return false;
}
}
}
10 changes: 5 additions & 5 deletions src/Upyun/Api/Rest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(Config $config) {
$this->config = $config;
$this->endpoint = Config::$restApiEndPoint . '/' . $config->bucketName;
}

public function request($method, $storagePath) {
$this->method = strtoupper($method);
$this->storagePath = '/' . ltrim($storagePath, '/');
Expand Down Expand Up @@ -57,14 +57,14 @@ public function send() {
]);

$url = ($this->config->useSsl ? 'https://' : 'http://') . $this->endpoint . $this->storagePath;
$bodySize = 0;
$body = null;
if($this->file && $this->method === 'PUT') {
$bodySize = $this->file->getSize();
$body = $this->file;
}

$authHeader = Signature::getRestApiSignHeader($this->config, $this->method, $this->storagePath, $bodySize);
// TODO urlencode path
$path = '/' . $this->config->bucketName . '/' . ltrim($this->storagePath, '/');

$authHeader = Signature::getHeaderSign($this->config, $this->method, $path);
$response = $client->request($this->method, $url, [
'headers' => array_merge($authHeader, $this->headers),
'body' => $body
Expand Down
40 changes: 30 additions & 10 deletions src/Upyun/Signature.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,34 @@ class Signature {
const SIGN_VIDEO_NO_OPERATOR = 3;

/**
* 获取 RESET API 请求需要的签名头
* 获取 Header 签名
*
* @param Config $bucketConfig
* @param $method
* @param $path
* @param $contentLength
* @param $path 请求路径
* @param $contentMd5 文件内容 md5
*
* @return array
*/
public static function getRestApiSignHeader($bucketConfig, $method, $remotePath, $contentLength) {
public static function getHeaderSign($bucketConfig, $method, $path, $contentMd5 = null) {
$gmtDate = gmdate('D, d M Y H:i:s \G\M\T');
$path = '/' . $bucketConfig->bucketName . '/' . ltrim($remotePath, '/');

$sign = md5("$method&$path&$gmtDate&$contentLength&{$bucketConfig->operatorPassword}");
$signParams = array(
$method,
$path,
$gmtDate
);

if ($contentMd5) {
$signParams[] = $contentMd5;
}

$sign = self::calcSignature($bucketConfig, $signParams);

$headers = array(
'Authorization' => "UpYun {$bucketConfig->operatorName}:$sign",
'Authorization' => "UPYUN {$bucketConfig->operatorName}:$sign",
'Date' => $gmtDate,
'User-agent' => 'Php-Sdk/' . $bucketConfig->getVersion() . ' (rest api)'
'User-agent' => 'Php-Sdk/' . $bucketConfig->getVersion()
);
return $headers;
}
Expand All @@ -62,6 +71,13 @@ public static function getPurgeSignHeader(Config $bucketConfig, $urlString) {
);
}

/**
* 获取表单 API 需要的签名,依据 body 签名规则计算
* @param Config $bucketConfig
* @param $data
*
* @return array
*/
public static function getFormSignature(Config $bucketConfig, $data) {
$data['bucket'] = $bucketConfig->bucketName;
$policy = Util::base64Json($data);
Expand All @@ -78,14 +94,18 @@ public static function getFormSignature(Config $bucketConfig, $data) {
$signParams['md5'] = $data['content-md5'];
};

$signature = base64_encode(hash_hmac('sha1', implode('&', $signParams), $bucketConfig->operatorPassword, true));
$signature = self::calcSignature($bucketConfig, $signParams);
return array(
'policy' => $policy,
'signature' => $signature
);
}

public static function getSignature( Config $bucketConfig, $data, $type, $tokenSecret = '') {
private static function calcSignature(Config $bucketConfig, $signParams) {
return base64_encode(hash_hmac('sha1', implode('&', $signParams), $bucketConfig->operatorPassword, true));
}

public static function getSignature(Config $bucketConfig, $data, $type, $tokenSecret = '') {
if (is_array($data)) {
ksort($data);
$string = '';
Expand Down
4 changes: 2 additions & 2 deletions src/Upyun/Upyun.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ public function process($source, $tasks) {
*/
public function queryProcessStatus($taskIds) {
$video = new Api\Pretreat($this->config);
return $video->query($taskIds, '/status');
return $video->query($taskIds, '/status/');
}

/**
Expand All @@ -346,6 +346,6 @@ public function queryProcessStatus($taskIds) {
*/
public function queryProcessResult($taskIds) {
$video = new Api\Pretreat($this->config);
return $video->query($taskIds, '/result');
return $video->query($taskIds, '/result/');
}
}