oss_bucket.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406
  1. #include "aos_log.h"
  2. #include "aos_define.h"
  3. #include "aos_util.h"
  4. #include "aos_string.h"
  5. #include "aos_status.h"
  6. #include "oss_auth.h"
  7. #include "oss_util.h"
  8. #include "oss_xml.h"
  9. #include "oss_api.h"
  10. aos_status_t *oss_create_bucket(const oss_request_options_t *options,
  11. const aos_string_t *bucket,
  12. oss_acl_e oss_acl,
  13. aos_table_t **resp_headers)
  14. {
  15. const char *oss_acl_str = NULL;
  16. aos_status_t *s = NULL;
  17. aos_http_request_t *req = NULL;
  18. aos_http_response_t *resp = NULL;
  19. aos_table_t *headers = NULL;
  20. aos_table_t *query_params = NULL;
  21. query_params = aos_table_create_if_null(options, query_params, 0);
  22. //init headers
  23. headers = aos_table_create_if_null(options, headers, 1);
  24. oss_acl_str = get_oss_acl_str(oss_acl);
  25. if (oss_acl_str) {
  26. apr_table_set(headers, OSS_CANNONICALIZED_HEADER_ACL, oss_acl_str);
  27. }
  28. oss_init_bucket_request(options, bucket, HTTP_PUT, &req,
  29. query_params, headers, &resp);
  30. s = oss_process_request(options, req, resp);
  31. oss_fill_read_response_header(resp, resp_headers);
  32. return s;
  33. }
  34. aos_status_t *oss_delete_bucket(const oss_request_options_t *options,
  35. const aos_string_t *bucket,
  36. aos_table_t **resp_headers)
  37. {
  38. aos_status_t *s = NULL;
  39. aos_http_request_t *req = NULL;
  40. aos_http_response_t *resp = NULL;
  41. aos_table_t *query_params = NULL;
  42. aos_table_t *headers = NULL;
  43. headers = aos_table_create_if_null(options, headers, 0);
  44. query_params = aos_table_create_if_null(options, query_params, 0);
  45. oss_init_bucket_request(options, bucket, HTTP_DELETE, &req,
  46. query_params, headers, &resp);
  47. s = oss_process_request(options, req, resp);
  48. oss_fill_read_response_header(resp, resp_headers);
  49. return s;
  50. }
  51. aos_status_t *oss_put_bucket_acl(const oss_request_options_t *options,
  52. const aos_string_t *bucket,
  53. oss_acl_e oss_acl,
  54. aos_table_t **resp_headers)
  55. {
  56. aos_status_t *s = NULL;
  57. aos_http_request_t *req = NULL;
  58. aos_http_response_t *resp = NULL;
  59. aos_table_t *query_params = NULL;
  60. aos_table_t *headers = NULL;
  61. const char *oss_acl_str = NULL;
  62. query_params = aos_table_create_if_null(options, query_params, 1);
  63. apr_table_add(query_params, OSS_ACL, "");
  64. headers = aos_table_create_if_null(options, headers, 1);
  65. oss_acl_str = get_oss_acl_str(oss_acl);
  66. if (oss_acl_str) {
  67. apr_table_set(headers, OSS_CANNONICALIZED_HEADER_ACL, oss_acl_str);
  68. }
  69. oss_init_bucket_request(options, bucket, HTTP_PUT, &req,
  70. query_params, headers, &resp);
  71. s = oss_process_request(options, req, resp);
  72. oss_fill_read_response_header(resp, resp_headers);
  73. return s;
  74. }
  75. aos_status_t *oss_get_bucket_acl(const oss_request_options_t *options,
  76. const aos_string_t *bucket,
  77. aos_string_t *oss_acl,
  78. aos_table_t **resp_headers)
  79. {
  80. aos_status_t *s = NULL;
  81. int res;
  82. aos_http_request_t *req = NULL;
  83. aos_http_response_t *resp = NULL;
  84. aos_table_t *query_params = NULL;
  85. aos_table_t *headers = NULL;
  86. query_params = aos_table_create_if_null(options, query_params, 1);
  87. apr_table_add(query_params, OSS_ACL, "");
  88. headers = aos_table_create_if_null(options, headers, 0);
  89. oss_init_bucket_request(options, bucket, HTTP_GET, &req,
  90. query_params, headers, &resp);
  91. s = oss_process_request(options, req, resp);
  92. oss_fill_read_response_header(resp, resp_headers);
  93. if (!aos_status_is_ok(s)) {
  94. return s;
  95. }
  96. res = oss_acl_parse_from_body(options->pool, &resp->body, oss_acl);
  97. if (res != AOSE_OK) {
  98. aos_xml_error_status_set(s, res);
  99. }
  100. return s;
  101. }
  102. aos_status_t *oss_list_object(const oss_request_options_t *options,
  103. const aos_string_t *bucket,
  104. oss_list_object_params_t *params,
  105. aos_table_t **resp_headers)
  106. {
  107. int res;
  108. aos_status_t *s = NULL;
  109. aos_http_request_t *req = NULL;
  110. aos_http_response_t *resp = NULL;
  111. aos_table_t *query_params = NULL;
  112. aos_table_t *headers = NULL;
  113. //init query_params
  114. query_params = aos_table_create_if_null(options, query_params, 4);
  115. apr_table_add(query_params, OSS_PREFIX, params->prefix.data);
  116. apr_table_add(query_params, OSS_DELIMITER, params->delimiter.data);
  117. apr_table_add(query_params, OSS_MARKER, params->marker.data);
  118. aos_table_add_int(query_params, OSS_MAX_KEYS, params->max_ret);
  119. //init headers
  120. headers = aos_table_create_if_null(options, headers, 0);
  121. oss_init_bucket_request(options, bucket, HTTP_GET, &req,
  122. query_params, headers, &resp);
  123. s = oss_process_request(options, req, resp);
  124. oss_fill_read_response_header(resp, resp_headers);
  125. if (!aos_status_is_ok(s)) {
  126. return s;
  127. }
  128. res = oss_list_objects_parse_from_body(options->pool, &resp->body,
  129. &params->object_list, &params->common_prefix_list,
  130. &params->next_marker, &params->truncated);
  131. if (res != AOSE_OK) {
  132. aos_xml_error_status_set(s, res);
  133. }
  134. return s;
  135. }
  136. aos_status_t *oss_put_bucket_lifecycle(const oss_request_options_t *options,
  137. const aos_string_t *bucket,
  138. aos_list_t *lifecycle_rule_list,
  139. aos_table_t **resp_headers)
  140. {
  141. aos_status_t *s = NULL;
  142. aos_http_request_t *req = NULL;
  143. aos_http_response_t *resp = NULL;
  144. apr_table_t *query_params = NULL;
  145. aos_table_t *headers = NULL;
  146. aos_list_t body;
  147. //init query_params
  148. query_params = aos_table_create_if_null(options, query_params, 1);
  149. apr_table_add(query_params, OSS_LIFECYCLE, "");
  150. //init headers
  151. headers = aos_table_create_if_null(options, headers, 0);
  152. oss_init_bucket_request(options, bucket, HTTP_PUT, &req,
  153. query_params, headers, &resp);
  154. build_lifecycle_body(options->pool, lifecycle_rule_list, &body);
  155. oss_write_request_body_from_buffer(&body, req);
  156. s = oss_process_request(options, req, resp);
  157. oss_fill_read_response_header(resp, resp_headers);
  158. return s;
  159. }
  160. aos_status_t *oss_get_bucket_lifecycle(const oss_request_options_t *options,
  161. const aos_string_t *bucket,
  162. aos_list_t *lifecycle_rule_list,
  163. aos_table_t **resp_headers)
  164. {
  165. int res;
  166. aos_status_t *s = NULL;
  167. aos_http_request_t *req = NULL;
  168. aos_http_response_t *resp = NULL;
  169. aos_table_t *query_params = NULL;
  170. aos_table_t *headers = NULL;
  171. //init query_params
  172. query_params = aos_table_create_if_null(options, query_params, 1);
  173. apr_table_add(query_params, OSS_LIFECYCLE, "");
  174. //init headers
  175. headers = aos_table_create_if_null(options, headers, 0);
  176. oss_init_bucket_request(options, bucket, HTTP_GET, &req,
  177. query_params, headers, &resp);
  178. s = oss_process_request(options, req, resp);
  179. oss_fill_read_response_header(resp, resp_headers);
  180. if (!aos_status_is_ok(s)) {
  181. return s;
  182. }
  183. res = oss_lifecycle_rules_parse_from_body(options->pool,
  184. &resp->body, lifecycle_rule_list);
  185. if (res != AOSE_OK) {
  186. aos_xml_error_status_set(s, res);
  187. }
  188. return s;
  189. }
  190. aos_status_t *oss_delete_bucket_lifecycle(const oss_request_options_t *options,
  191. const aos_string_t *bucket,
  192. aos_table_t **resp_headers)
  193. {
  194. aos_status_t *s = NULL;
  195. aos_http_request_t *req = NULL;
  196. aos_http_response_t *resp = NULL;
  197. aos_table_t *query_params = NULL;
  198. aos_table_t *headers = NULL;
  199. //init query_params
  200. query_params = aos_table_create_if_null(options, query_params, 1);
  201. apr_table_add(query_params, OSS_LIFECYCLE, "");
  202. //init headers
  203. headers = aos_table_create_if_null(options, headers, 0);
  204. oss_init_bucket_request(options, bucket, HTTP_DELETE, &req,
  205. query_params, headers, &resp);
  206. s = oss_process_request(options, req, resp);
  207. oss_fill_read_response_header(resp, resp_headers);
  208. return s;
  209. }
  210. aos_status_t *oss_delete_objects(const oss_request_options_t *options,
  211. const aos_string_t *bucket,
  212. aos_list_t *object_list,
  213. int is_quiet,
  214. aos_table_t **resp_headers,
  215. aos_list_t *deleted_object_list)
  216. {
  217. int res;
  218. aos_status_t *s = NULL;
  219. aos_http_request_t *req = NULL;
  220. aos_http_response_t *resp = NULL;
  221. aos_table_t *headers = NULL;
  222. aos_table_t *query_params = NULL;
  223. aos_list_t body;
  224. unsigned char *md5 = NULL;
  225. char *buf = NULL;
  226. int64_t body_len;
  227. char *b64_value = NULL;
  228. int b64_buf_len = (20 + 1) * 4 / 3;
  229. int b64_len;
  230. //init query_params
  231. query_params = aos_table_create_if_null(options, query_params, 1);
  232. apr_table_add(query_params, OSS_DELETE, "");
  233. //init headers
  234. headers = aos_table_create_if_null(options, headers, 1);
  235. apr_table_set(headers, OSS_CONTENT_TYPE, OSS_MULTIPART_CONTENT_TYPE);
  236. oss_init_bucket_request(options, bucket, HTTP_POST, &req,
  237. query_params, headers, &resp);
  238. build_delete_objects_body(options->pool, object_list, is_quiet, &body);
  239. //add Content-MD5
  240. body_len = aos_buf_list_len(&body);
  241. buf = aos_buf_list_content(options->pool, &body);
  242. md5 = aos_md5(options->pool, buf, (apr_size_t)body_len);
  243. b64_value = aos_pcalloc(options->pool, b64_buf_len);
  244. b64_len = aos_base64_encode(md5, 20, b64_value);
  245. b64_value[b64_len] = '\0';
  246. apr_table_addn(headers, OSS_CONTENT_MD5, b64_value);
  247. oss_write_request_body_from_buffer(&body, req);
  248. s = oss_process_request(options, req, resp);
  249. oss_fill_read_response_header(resp, resp_headers);
  250. if (is_quiet) {
  251. return s;
  252. }
  253. if (!aos_status_is_ok(s)) {
  254. return s;
  255. }
  256. res = oss_delete_objects_parse_from_body(options->pool, &resp->body,
  257. deleted_object_list);
  258. if (res != AOSE_OK) {
  259. aos_xml_error_status_set(s, res);
  260. }
  261. return s;
  262. }
  263. aos_status_t *oss_delete_objects_by_prefix(oss_request_options_t *options,
  264. const aos_string_t *bucket,
  265. const aos_string_t *prefix)
  266. {
  267. aos_pool_t *subpool = NULL;
  268. aos_pool_t *parent_pool = NULL;
  269. int is_quiet = 1;
  270. aos_status_t *s = NULL;
  271. aos_status_t *ret = NULL;
  272. oss_list_object_params_t *params = NULL;
  273. int list_object_count = 0;
  274. parent_pool = options->pool;
  275. params = oss_create_list_object_params(parent_pool);
  276. if (prefix->data == NULL) {
  277. aos_str_set(&params->prefix, "");
  278. } else {
  279. aos_str_set(&params->prefix, prefix->data);
  280. }
  281. while (params->truncated) {
  282. aos_table_t *list_object_resp_headers = NULL;
  283. aos_list_t object_list;
  284. aos_list_t deleted_object_list;
  285. oss_list_object_content_t *list_content = NULL;
  286. aos_table_t *delete_objects_resp_headers = NULL;
  287. char *key = NULL;
  288. aos_pool_create(&subpool, parent_pool);
  289. options->pool = subpool;
  290. list_object_count = 0;
  291. aos_list_init(&object_list);
  292. s = oss_list_object(options, bucket, params, &list_object_resp_headers);
  293. if (!aos_status_is_ok(s)) {
  294. ret = aos_status_dup(parent_pool, s);
  295. aos_pool_destroy(subpool);
  296. options->pool = parent_pool;
  297. return ret;
  298. }
  299. aos_list_for_each_entry(oss_list_object_content_t, list_content, &params->object_list, node) {
  300. oss_object_key_t *object_key = oss_create_oss_object_key(parent_pool);
  301. key = apr_psprintf(parent_pool, "%.*s", list_content->key.len,
  302. list_content->key.data);
  303. aos_str_set(&object_key->key, key);
  304. aos_list_add_tail(&object_key->node, &object_list);
  305. list_object_count += 1;
  306. }
  307. if (list_object_count == 0)
  308. {
  309. ret = aos_status_dup(parent_pool, s);
  310. aos_pool_destroy(subpool);
  311. options->pool = parent_pool;
  312. return ret;
  313. }
  314. aos_pool_destroy(subpool);
  315. aos_list_init(&deleted_object_list);
  316. aos_pool_create(&subpool, parent_pool);
  317. options->pool = subpool;
  318. s = oss_delete_objects(options, bucket, &object_list, is_quiet,
  319. &delete_objects_resp_headers, &deleted_object_list);
  320. if (!aos_status_is_ok(s)) {
  321. ret = aos_status_dup(parent_pool, s);
  322. aos_pool_destroy(subpool);
  323. options->pool = parent_pool;
  324. return ret;
  325. }
  326. if (!params->truncated) {
  327. ret = aos_status_dup(parent_pool, s);
  328. }
  329. aos_pool_destroy(subpool);
  330. aos_list_init(&params->object_list);
  331. if (params->next_marker.data) {
  332. aos_str_set(&params->marker, params->next_marker.data);
  333. }
  334. }
  335. options->pool = parent_pool;
  336. return ret;
  337. }