rs.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <?php
  2. require_once("http.php");
  3. // ----------------------------------------------------------
  4. // class Qiniu_RS_GetPolicy
  5. class Qiniu_RS_GetPolicy
  6. {
  7. public $Expires;
  8. public function MakeRequest($baseUrl, $mac) // => $privateUrl
  9. {
  10. $deadline = $this->Expires;
  11. if ($deadline == 0) {
  12. $deadline = 3600;
  13. }
  14. $deadline += time();
  15. $pos = strpos($baseUrl, '?');
  16. if ($pos !== false) {
  17. $baseUrl .= '&e=';
  18. } else {
  19. $baseUrl .= '?e=';
  20. }
  21. $baseUrl .= $deadline;
  22. $token = Qiniu_Sign($mac, $baseUrl);
  23. return "$baseUrl&token=$token";
  24. }
  25. }
  26. function Qiniu_RS_MakeBaseUrl($domain, $key) // => $baseUrl
  27. {
  28. $keyEsc = str_replace("%2F", "/", rawurlencode($key));
  29. return "http://$domain/$keyEsc";
  30. }
  31. // --------------------------------------------------------------------------------
  32. // class Qiniu_RS_PutPolicy
  33. class Qiniu_RS_PutPolicy
  34. {
  35. public $Scope; //必填
  36. public $Expires; //默认为3600s
  37. public $CallbackUrl;
  38. public $CallbackBody;
  39. public $ReturnUrl;
  40. public $ReturnBody;
  41. public $AsyncOps;
  42. public $EndUser;
  43. public $InsertOnly; //若非0,则任何情况下无法覆盖上传
  44. public $DetectMime; //若非0,则服务端根据内容自动确定MimeType
  45. public $FsizeLimit;
  46. public $SaveKey;
  47. public $PersistentOps;
  48. public $PersistentPipeline;
  49. public $PersistentNotifyUrl;
  50. public $FopTimeout;
  51. public $MimeLimit;
  52. public function __construct($scope)
  53. {
  54. $this->Scope = $scope;
  55. }
  56. public function Token($mac) // => $token
  57. {
  58. $deadline = $this->Expires;
  59. if ($deadline == 0) {
  60. $deadline = 3600;
  61. }
  62. $deadline += time();
  63. $policy = array('scope' => $this->Scope, 'deadline' => $deadline);
  64. if (!empty($this->CallbackUrl)) {
  65. $policy['callbackUrl'] = $this->CallbackUrl;
  66. }
  67. if (!empty($this->CallbackBody)) {
  68. $policy['callbackBody'] = $this->CallbackBody;
  69. }
  70. if (!empty($this->ReturnUrl)) {
  71. $policy['returnUrl'] = $this->ReturnUrl;
  72. }
  73. if (!empty($this->ReturnBody)) {
  74. $policy['returnBody'] = $this->ReturnBody;
  75. }
  76. if (!empty($this->AsyncOps)) {
  77. $policy['asyncOps'] = $this->AsyncOps;
  78. }
  79. if (!empty($this->EndUser)) {
  80. $policy['endUser'] = $this->EndUser;
  81. }
  82. if (!empty($this->InsertOnly)) {
  83. $policy['exclusive'] = $this->InsertOnly;
  84. }
  85. if (!empty($this->DetectMime)) {
  86. $policy['detectMime'] = $this->DetectMime;
  87. }
  88. if (!empty($this->FsizeLimit)) {
  89. $policy['fsizeLimit'] = $this->FsizeLimit;
  90. }
  91. if (!empty($this->SaveKey)) {
  92. $policy['saveKey'] = $this->SaveKey;
  93. }
  94. if (!empty($this->PersistentOps)) {
  95. $policy['persistentOps'] = $this->PersistentOps;
  96. }
  97. if (!empty($this->PersistentPipeline)) {
  98. $policy['persistentPipeline'] = $this->PersistentPipeline;
  99. }
  100. if (!empty($this->PersistentNotifyUrl)) {
  101. $policy['persistentNotifyUrl'] = $this->PersistentNotifyUrl;
  102. }
  103. if (!empty($this->FopTimeout)) {
  104. $policy['fopTimeout'] = $this->FopTimeout;
  105. }
  106. if (!empty($this->MimeLimit)) {
  107. $policy['mimeLimit'] = $this->MimeLimit;
  108. }
  109. $b = json_encode($policy);
  110. return Qiniu_SignWithData($mac, $b);
  111. }
  112. }
  113. // ----------------------------------------------------------
  114. // class Qiniu_RS_EntryPath
  115. class Qiniu_RS_EntryPath
  116. {
  117. public $bucket;
  118. public $key;
  119. public function __construct($bucket, $key)
  120. {
  121. $this->bucket = $bucket;
  122. $this->key = $key;
  123. }
  124. }
  125. // ----------------------------------------------------------
  126. // class Qiniu_RS_EntryPathPair
  127. class Qiniu_RS_EntryPathPair
  128. {
  129. public $src;
  130. public $dest;
  131. public function __construct($src, $dest)
  132. {
  133. $this->src = $src;
  134. $this->dest = $dest;
  135. }
  136. }
  137. // ----------------------------------------------------------
  138. function Qiniu_RS_URIStat($bucket, $key)
  139. {
  140. return '/stat/' . Qiniu_Encode("$bucket:$key");
  141. }
  142. function Qiniu_RS_URIDelete($bucket, $key)
  143. {
  144. return '/delete/' . Qiniu_Encode("$bucket:$key");
  145. }
  146. function Qiniu_RS_URICopy($bucketSrc, $keySrc, $bucketDest, $keyDest)
  147. {
  148. return '/copy/' . Qiniu_Encode("$bucketSrc:$keySrc") . '/' . Qiniu_Encode("$bucketDest:$keyDest");
  149. }
  150. function Qiniu_RS_URIMove($bucketSrc, $keySrc, $bucketDest, $keyDest)
  151. {
  152. return '/move/' . Qiniu_Encode("$bucketSrc:$keySrc") . '/' . Qiniu_Encode("$bucketDest:$keyDest");
  153. }
  154. // ----------------------------------------------------------
  155. function Qiniu_RS_Stat($self, $bucket, $key) // => ($statRet, $error)
  156. {
  157. global $QINIU_RS_HOST;
  158. $uri = Qiniu_RS_URIStat($bucket, $key);
  159. return Qiniu_Client_Call($self, $QINIU_RS_HOST . $uri);
  160. }
  161. function Qiniu_RS_Delete($self, $bucket, $key) // => $error
  162. {
  163. global $QINIU_RS_HOST;
  164. $uri = Qiniu_RS_URIDelete($bucket, $key);
  165. return Qiniu_Client_CallNoRet($self, $QINIU_RS_HOST . $uri);
  166. }
  167. function Qiniu_RS_Move($self, $bucketSrc, $keySrc, $bucketDest, $keyDest) // => $error
  168. {
  169. global $QINIU_RS_HOST;
  170. $uri = Qiniu_RS_URIMove($bucketSrc, $keySrc, $bucketDest, $keyDest);
  171. return Qiniu_Client_CallNoRet($self, $QINIU_RS_HOST . $uri);
  172. }
  173. function Qiniu_RS_Copy($self, $bucketSrc, $keySrc, $bucketDest, $keyDest) // => $error
  174. {
  175. global $QINIU_RS_HOST;
  176. $uri = Qiniu_RS_URICopy($bucketSrc, $keySrc, $bucketDest, $keyDest);
  177. return Qiniu_Client_CallNoRet($self, $QINIU_RS_HOST . $uri);
  178. }
  179. // ----------------------------------------------------------
  180. // batch
  181. function Qiniu_RS_Batch($self, $ops) // => ($data, $error)
  182. {
  183. global $QINIU_RS_HOST;
  184. $url = $QINIU_RS_HOST . '/batch';
  185. $params = 'op=' . implode('&op=', $ops);
  186. return Qiniu_Client_CallWithForm($self, $url, $params);
  187. }
  188. function Qiniu_RS_BatchStat($self, $entryPaths)
  189. {
  190. $params = array();
  191. foreach ($entryPaths as $entryPath) {
  192. $params[] = Qiniu_RS_URIStat($entryPath->bucket, $entryPath->key);
  193. }
  194. return Qiniu_RS_Batch($self,$params);
  195. }
  196. function Qiniu_RS_BatchDelete($self, $entryPaths)
  197. {
  198. $params = array();
  199. foreach ($entryPaths as $entryPath) {
  200. $params[] = Qiniu_RS_URIDelete($entryPath->bucket, $entryPath->key);
  201. }
  202. return Qiniu_RS_Batch($self, $params);
  203. }
  204. function Qiniu_RS_BatchMove($self, $entryPairs)
  205. {
  206. $params = array();
  207. foreach ($entryPairs as $entryPair) {
  208. $src = $entryPair->src;
  209. $dest = $entryPair->dest;
  210. $params[] = Qiniu_RS_URIMove($src->bucket, $src->key, $dest->bucket, $dest->key);
  211. }
  212. return Qiniu_RS_Batch($self, $params);
  213. }
  214. function Qiniu_RS_BatchCopy($self, $entryPairs)
  215. {
  216. $params = array();
  217. foreach ($entryPairs as $entryPair) {
  218. $src = $entryPair->src;
  219. $dest = $entryPair->dest;
  220. $params[] = Qiniu_RS_URICopy($src->bucket, $src->key, $dest->bucket, $dest->key);
  221. }
  222. return Qiniu_RS_Batch($self, $params);
  223. }
  224. // ----------------------------------------------------------