|
| 1 | +<?php |
| 2 | +// 临时密钥计算样例 |
| 3 | + |
| 4 | +// 配置参数 |
| 5 | +$config = array( |
| 6 | + 'Url' => 'http://sts.api2.example.com/v2/index.php', |
| 7 | + 'Domain' => 'sts.api2.example.com', |
| 8 | + 'Proxy' => '', |
| 9 | + 'SecretId' => 'AKIDxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // 固定密钥 |
| 10 | + 'SecretKey' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', // 固定密钥 |
| 11 | + 'Bucket' => 'test-1250000000', |
| 12 | + 'Region' => 'default', |
| 13 | + 'AllowPrefix' => '_ALLOW_DIR_/*', // 必填,这里改成允许的路径前缀,这里可以根据自己网站的用户登录态判断允许上传的目录,例子:* 或者 a/* 或者 a.jpg |
| 14 | +); |
| 15 | + |
| 16 | +// obj 转 query string |
| 17 | +function json2str($obj) { |
| 18 | + ksort($obj); |
| 19 | + $arr = array(); |
| 20 | + foreach ($obj as $key => $val) { |
| 21 | + array_push($arr, $key . '=' . $val); |
| 22 | + } |
| 23 | + return join('&', $arr); |
| 24 | +} |
| 25 | + |
| 26 | +// 计算临时密钥用的签名 |
| 27 | +function getSignature($opt, $key, $method) { |
| 28 | + global $config; |
| 29 | + $formatString = $method . $config['Domain'] . '/v2/index.php?' . json2str($opt); |
| 30 | + $formatString = urldecode($formatString); |
| 31 | + $sign = hash_hmac('sha1', $formatString, $key); |
| 32 | + $sign = base64_encode(hex2bin($sign)); |
| 33 | + return $sign; |
| 34 | +} |
| 35 | + |
| 36 | +// 计算临时密钥用的签名 |
| 37 | +function resourceUrlEncode($str) { |
| 38 | + $str = rawurlencode($str); |
| 39 | + //特殊处理字符 !()~ |
| 40 | + $str = str_replace('%2F', '/', $str); |
| 41 | + $str = str_replace('%2A', '*', $str); |
| 42 | + $str = str_replace('%21', '!', $str); |
| 43 | + $str = str_replace('%28', '(', $str); |
| 44 | + $str = str_replace('%29', ')', $str); |
| 45 | + $str = str_replace('%7E', '~', $str); |
| 46 | + return $str; |
| 47 | +} |
| 48 | + |
| 49 | +// 获取临时密钥 |
| 50 | +function getTempKeys() { |
| 51 | + |
| 52 | + global $config; |
| 53 | + |
| 54 | + // 判断是否修改了 AllowPrefix |
| 55 | + if ($config['AllowPrefix'] === '_ALLOW_DIR_/*') { |
| 56 | + return array('error'=> '请修改 AllowPrefix 配置项,指定允许上传的路径前缀'); |
| 57 | + } |
| 58 | + |
| 59 | + $ShortBucketName = substr($config['Bucket'],0, strripos($config['Bucket'], '-')); |
| 60 | + $AppId = substr($config['Bucket'], 1 + strripos($config['Bucket'], '-')); |
| 61 | + $policy = array( |
| 62 | + 'version'=> '2.0', |
| 63 | + 'statement'=> array( |
| 64 | + array( |
| 65 | + 'action'=> array( |
| 66 | + // // 这里可以从临时密钥的权限上控制前端允许的操作 |
| 67 | + // 'name/cos:*', // 这样写可以包含下面所有权限 |
| 68 | + |
| 69 | + // // 列出所有允许的操作 |
| 70 | + // // ACL 读写 |
| 71 | + // 'name/cos:GetBucketACL', |
| 72 | + // 'name/cos:PutBucketACL', |
| 73 | + // 'name/cos:GetObjectACL', |
| 74 | + // 'name/cos:PutObjectACL', |
| 75 | + // // 简单 Bucket 操作 |
| 76 | + // 'name/cos:PutBucket', |
| 77 | + // 'name/cos:HeadBucket', |
| 78 | + // 'name/cos:GetBucket', |
| 79 | + // 'name/cos:DeleteBucket', |
| 80 | + // 'name/cos:GetBucketLocation', |
| 81 | + // // Versioning |
| 82 | + // 'name/cos:PutBucketVersioning', |
| 83 | + // 'name/cos:GetBucketVersioning', |
| 84 | + // // CORS |
| 85 | + // 'name/cos:PutBucketCORS', |
| 86 | + // 'name/cos:GetBucketCORS', |
| 87 | + // 'name/cos:DeleteBucketCORS', |
| 88 | + // // Lifecycle |
| 89 | + // 'name/cos:PutBucketLifecycle', |
| 90 | + // 'name/cos:GetBucketLifecycle', |
| 91 | + // 'name/cos:DeleteBucketLifecycle', |
| 92 | + // // Replication |
| 93 | + // 'name/cos:PutBucketReplication', |
| 94 | + // 'name/cos:GetBucketReplication', |
| 95 | + // 'name/cos:DeleteBucketReplication', |
| 96 | + // // 删除文件 |
| 97 | + // 'name/cos:DeleteMultipleObject', |
| 98 | + // 'name/cos:DeleteObject', |
| 99 | + // 简单文件操作 |
| 100 | + 'name/cos:PutObject', |
| 101 | + 'name/cos:PostObject', |
| 102 | + 'name/cos:AppendObject', |
| 103 | + 'name/cos:GetObject', |
| 104 | + 'name/cos:HeadObject', |
| 105 | + 'name/cos:OptionsObject', |
| 106 | + 'name/cos:PutObjectCopy', |
| 107 | + 'name/cos:PostObjectRestore', |
| 108 | + // 分片上传操作 |
| 109 | + 'name/cos:InitiateMultipartUpload', |
| 110 | + 'name/cos:ListMultipartUploads', |
| 111 | + 'name/cos:ListParts', |
| 112 | + 'name/cos:UploadPart', |
| 113 | + 'name/cos:CompleteMultipartUpload', |
| 114 | + 'name/cos:AbortMultipartUpload', |
| 115 | + ), |
| 116 | + 'effect'=> 'allow', |
| 117 | + 'principal'=> array('qcs'=> array('*')), |
| 118 | + 'resource'=> array( |
| 119 | + 'qcs::cos:' . $config['Region'] . ':uid/' . $AppId . ':prefix//' . $AppId . '/' . $ShortBucketName . '/', |
| 120 | + 'qcs::cos:' . $config['Region'] . ':uid/' . $AppId . ':prefix//' . $AppId . '/' . $ShortBucketName . '/' . resourceUrlEncode($config['AllowPrefix']) |
| 121 | + ) |
| 122 | + ) |
| 123 | + ) |
| 124 | + ); |
| 125 | + |
| 126 | + $policyStr = str_replace('\\/', '/', json_encode($policy)); |
| 127 | + $Action = 'GetFederationToken'; |
| 128 | + $Nonce = rand(10000, 20000); |
| 129 | + $Timestamp = time() - 1; |
| 130 | + $Method = 'GET'; |
| 131 | + |
| 132 | + $params = array( |
| 133 | + 'Action'=> $Action, |
| 134 | + 'Nonce'=> $Nonce, |
| 135 | + 'Region'=> '', |
| 136 | + 'SecretId'=> $config['SecretId'], |
| 137 | + 'Timestamp'=> $Timestamp, |
| 138 | + 'durationSeconds'=> 7200, |
| 139 | + 'name'=> 'cos', |
| 140 | + 'policy'=> urlencode($policyStr) |
| 141 | + ); |
| 142 | + $params['Signature'] = urlencode(getSignature($params, $config['SecretKey'], $Method)); |
| 143 | + |
| 144 | + $url = $config['Url'] . '?' . json2str($params); |
| 145 | + $ch = curl_init($url); |
| 146 | + $config['Proxy'] && curl_setopt($ch, CURLOPT_PROXY, $config['Proxy']); |
| 147 | + curl_setopt($ch, CURLOPT_HEADER, 0); |
| 148 | + curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,0); |
| 149 | + curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,0); |
| 150 | + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); |
| 151 | + $result = curl_exec($ch); |
| 152 | + if(curl_errno($ch)) $result = curl_error($ch); |
| 153 | + curl_close($ch); |
| 154 | + |
| 155 | + $result = json_decode($result, 1); |
| 156 | + if (isset($result['data'])) $result = $result['data']; |
| 157 | + |
| 158 | + return $result; |
| 159 | +}; |
| 160 | + |
| 161 | +// 获取临时密钥,计算签名 |
| 162 | +$tempKeys = getTempKeys(); |
| 163 | + |
| 164 | +// 返回数据给前端 |
| 165 | +header('Content-Type: application/json'); |
| 166 | +header('Access-Control-Allow-Origin: http://127.0.0.1'); // 这里修改允许跨域访问的网站 |
| 167 | +header('Access-Control-Allow-Headers: origin,accept,content-type'); |
| 168 | +echo json_encode($tempKeys); |
0 commit comments