oss_live.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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_live_channel(const oss_request_options_t *options,
  11. const aos_string_t *bucket,
  12. oss_live_channel_configuration_t *config,
  13. aos_list_t *publish_url_list,
  14. aos_list_t *play_url_list,
  15. aos_table_t **resp_headers)
  16. {
  17. int res = AOSE_OK;
  18. aos_status_t *s = NULL;
  19. aos_http_request_t *req = NULL;
  20. aos_http_response_t *resp = NULL;
  21. aos_table_t *query_params = NULL;
  22. aos_table_t *headers = NULL;
  23. aos_list_t body;
  24. //init params
  25. query_params = aos_table_create_if_null(options, query_params, 1);
  26. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  27. //init headers
  28. headers = aos_table_create_if_null(options, headers, 0);
  29. oss_init_live_channel_request(options, bucket, &config->name, HTTP_PUT,
  30. &req, query_params, headers, &resp);
  31. // build body
  32. build_create_live_channel_body(options->pool, config, &body);
  33. oss_write_request_body_from_buffer(&body, req);
  34. s = oss_process_request(options, req, resp);
  35. oss_fill_read_response_header(resp, resp_headers);
  36. if (!aos_status_is_ok(s)) {
  37. return s;
  38. }
  39. // parse result
  40. res = oss_create_live_channel_parse_from_body(options->pool, &resp->body,
  41. publish_url_list, play_url_list);
  42. if (res != AOSE_OK) {
  43. aos_xml_error_status_set(s, res);
  44. }
  45. return s;
  46. }
  47. aos_status_t *oss_put_live_channel_status(const oss_request_options_t *options,
  48. const aos_string_t *bucket,
  49. const aos_string_t *live_channel,
  50. const aos_string_t *live_channel_status,
  51. aos_table_t **resp_headers)
  52. {
  53. aos_status_t *s = NULL;
  54. aos_http_request_t *req = NULL;
  55. aos_http_response_t *resp = NULL;
  56. aos_table_t *query_params = NULL;
  57. aos_table_t *headers = NULL;
  58. //init params
  59. query_params = aos_table_create_if_null(options, query_params, 2);
  60. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  61. apr_table_add(query_params, OSS_LIVE_CHANNEL_STATUS, live_channel_status->data);
  62. //init headers, forbid 'Expect' and 'Transfer-Encoding' of HTTP
  63. headers = aos_table_create_if_null(options, headers, 2);
  64. apr_table_set(headers, "Expect", "");
  65. apr_table_set(headers, "Transfer-Encoding", "");
  66. oss_init_live_channel_request(options, bucket, live_channel, HTTP_PUT,
  67. &req, query_params, headers, &resp);
  68. s = oss_process_request(options, req, resp);
  69. oss_fill_read_response_header(resp, resp_headers);
  70. return s;
  71. }
  72. aos_status_t *oss_get_live_channel_info(const oss_request_options_t *options,
  73. const aos_string_t *bucket,
  74. const aos_string_t *live_channel,
  75. oss_live_channel_configuration_t *info,
  76. aos_table_t **resp_headers)
  77. {
  78. int res = AOSE_OK;
  79. aos_status_t *s = NULL;
  80. aos_http_request_t *req = NULL;
  81. aos_http_response_t *resp = NULL;
  82. aos_table_t *query_params = NULL;
  83. aos_table_t *headers = NULL;
  84. //init query_params
  85. query_params = aos_table_create_if_null(options, query_params, 1);
  86. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  87. //init headers
  88. headers = aos_table_create_if_null(options, headers, 0);
  89. oss_init_live_channel_request(options, bucket, live_channel, HTTP_GET,
  90. &req, 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. // parse result
  97. res = oss_live_channel_info_parse_from_body(options->pool, &resp->body, info);
  98. if (res != AOSE_OK) {
  99. aos_xml_error_status_set(s, res);
  100. }
  101. aos_str_set(&info->name, aos_pstrdup(options->pool, live_channel));
  102. return s;
  103. }
  104. aos_status_t *oss_get_live_channel_stat(const oss_request_options_t *options,
  105. const aos_string_t *bucket,
  106. const aos_string_t *live_channel,
  107. oss_live_channel_stat_t *stat,
  108. aos_table_t **resp_headers)
  109. {
  110. int res = AOSE_OK;
  111. aos_status_t *s = NULL;
  112. aos_http_request_t *req = NULL;
  113. aos_http_response_t *resp = NULL;
  114. aos_table_t *query_params = NULL;
  115. aos_table_t *headers = NULL;
  116. //init params
  117. query_params = aos_table_create_if_null(options, query_params, 2);
  118. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  119. apr_table_add(query_params, OSS_COMP, OSS_LIVE_CHANNEL_STAT);
  120. //init headers
  121. headers = aos_table_create_if_null(options, headers, 0);
  122. oss_init_live_channel_request(options, bucket, live_channel, HTTP_GET,
  123. &req, query_params, headers, &resp);
  124. s = oss_process_request(options, req, resp);
  125. oss_fill_read_response_header(resp, resp_headers);
  126. if (!aos_status_is_ok(s)) {
  127. return s;
  128. }
  129. // parse result
  130. res = oss_live_channel_stat_parse_from_body(options->pool, &resp->body, stat);
  131. if (res != AOSE_OK) {
  132. aos_xml_error_status_set(s, res);
  133. }
  134. return s;
  135. }
  136. aos_status_t *oss_delete_live_channel(const oss_request_options_t *options,
  137. const aos_string_t *bucket,
  138. const aos_string_t *live_channel,
  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. aos_table_t *query_params = NULL;
  145. aos_table_t *headers = NULL;
  146. //init params
  147. query_params = aos_table_create_if_null(options, query_params, 1);
  148. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  149. //init headers
  150. headers = aos_table_create_if_null(options, headers, 0);
  151. oss_init_live_channel_request(options, bucket, live_channel, HTTP_DELETE,
  152. &req, query_params, headers, &resp);
  153. s = oss_process_request(options, req, resp);
  154. oss_fill_read_response_header(resp, resp_headers);
  155. return s;
  156. }
  157. aos_status_t *oss_list_live_channel(const oss_request_options_t *options,
  158. const aos_string_t *bucket,
  159. oss_list_live_channel_params_t *params,
  160. aos_table_t **resp_headers)
  161. {
  162. int res = AOSE_OK;
  163. aos_status_t *s = NULL;
  164. aos_http_request_t *req = NULL;
  165. aos_http_response_t *resp = NULL;
  166. aos_table_t *query_params = NULL;
  167. aos_table_t *headers = NULL;
  168. //init params
  169. query_params = aos_table_create_if_null(options, query_params, 4);
  170. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  171. apr_table_add(query_params, OSS_PREFIX, params->prefix.data);
  172. apr_table_add(query_params, OSS_MARKER, params->marker.data);
  173. aos_table_add_int(query_params, OSS_MAX_KEYS, params->max_keys);
  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. // parse result
  184. res = oss_list_live_channel_parse_from_body(options->pool, &resp->body,
  185. &params->live_channel_list, &params->next_marker, &params->truncated);
  186. if (res != AOSE_OK) {
  187. aos_xml_error_status_set(s, res);
  188. }
  189. return s;
  190. }
  191. aos_status_t *oss_get_live_channel_history(const oss_request_options_t *options,
  192. const aos_string_t *bucket,
  193. const aos_string_t *live_channel,
  194. aos_list_t *live_record_list,
  195. aos_table_t **resp_headers)
  196. {
  197. int res = AOSE_OK;
  198. aos_status_t *s = NULL;
  199. aos_http_request_t *req = NULL;
  200. aos_http_response_t *resp = NULL;
  201. aos_table_t *query_params = NULL;
  202. aos_table_t *headers = NULL;
  203. //init params
  204. query_params = aos_table_create_if_null(options, query_params, 2);
  205. apr_table_add(query_params, OSS_LIVE_CHANNEL, "");
  206. apr_table_add(query_params, OSS_COMP, OSS_LIVE_CHANNEL_HISTORY);
  207. //init headers
  208. headers = aos_table_create_if_null(options, headers, 0);
  209. oss_init_live_channel_request(options, bucket, live_channel, HTTP_GET,
  210. &req, query_params, headers, &resp);
  211. s = oss_process_request(options, req, resp);
  212. oss_fill_read_response_header(resp, resp_headers);
  213. if (!aos_status_is_ok(s)) {
  214. return s;
  215. }
  216. // parse result
  217. res = oss_live_channel_history_parse_from_body(options->pool, &resp->body, live_record_list);
  218. if (res != AOSE_OK) {
  219. aos_xml_error_status_set(s, res);
  220. }
  221. return s;
  222. }
  223. aos_status_t *oss_gen_vod_play_list(const oss_request_options_t *options,
  224. const aos_string_t *bucket,
  225. const aos_string_t *live_channel,
  226. const aos_string_t *play_list_name,
  227. const int64_t start_time,
  228. const int64_t end_time,
  229. aos_table_t **resp_headers)
  230. {
  231. aos_status_t *s = NULL;
  232. aos_http_request_t *req = NULL;
  233. aos_http_response_t *resp = NULL;
  234. aos_table_t *query_params = NULL;
  235. aos_table_t *headers = NULL;
  236. char *resource = NULL;
  237. aos_string_t resource_str;
  238. //init params
  239. query_params = aos_table_create_if_null(options, query_params, 3);
  240. apr_table_add(query_params, OSS_LIVE_CHANNEL_VOD, "");
  241. apr_table_add(query_params, OSS_LIVE_CHANNEL_START_TIME,
  242. apr_psprintf(options->pool, "%" APR_INT64_T_FMT, start_time));
  243. apr_table_add(query_params, OSS_LIVE_CHANNEL_END_TIME,
  244. apr_psprintf(options->pool, "%" APR_INT64_T_FMT, end_time));
  245. //init headers
  246. headers = aos_table_create_if_null(options, headers, 1);
  247. apr_table_set(headers, OSS_CONTENT_TYPE, OSS_MULTIPART_CONTENT_TYPE);
  248. resource = apr_psprintf(options->pool, "%s/%s", live_channel->data, play_list_name->data);
  249. aos_str_set(&resource_str, resource);
  250. oss_init_live_channel_request(options, bucket, &resource_str, HTTP_POST,
  251. &req, query_params, headers, &resp);
  252. s = oss_process_request(options, req, resp);
  253. oss_fill_read_response_header(resp, resp_headers);
  254. return s;
  255. }
  256. char *oss_gen_rtmp_signed_url(const oss_request_options_t *options,
  257. const aos_string_t *bucket,
  258. const aos_string_t *live_channel,
  259. const aos_string_t *play_list_name,
  260. const int64_t expires)
  261. {
  262. aos_string_t signed_url;
  263. char *expires_str = NULL;
  264. aos_string_t expires_time;
  265. int res = AOSE_OK;
  266. aos_http_request_t *req = NULL;
  267. aos_table_t *params = NULL;
  268. expires_str = apr_psprintf(options->pool, "%" APR_INT64_T_FMT, expires);
  269. aos_str_set(&expires_time, expires_str);
  270. req = aos_http_request_create(options->pool);
  271. oss_get_rtmp_uri(options, bucket, live_channel, req);
  272. res = oss_get_rtmp_signed_url(options, req, &expires_time, play_list_name,
  273. params, &signed_url);
  274. if (res != AOSE_OK) {
  275. return NULL;
  276. }
  277. return signed_url.data;
  278. }