2014-04-01 10:40:24 +00:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
2015-04-29 09:38:23 +00:00
|
|
|
Copyright (c) 2013-2015 SRS(simple-rtmp-server)
|
2014-04-01 10:40:24 +00:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
this software and associated documentation files (the "Software"), to deal in
|
|
|
|
the Software without restriction, including without limitation the rights to
|
|
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
|
|
copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <srs_app_http_hooks.hpp>
|
|
|
|
|
2014-04-15 06:01:57 +00:00
|
|
|
#ifdef SRS_AUTO_HTTP_CALLBACK
|
2014-04-01 10:40:24 +00:00
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
#include <srs_kernel_error.hpp>
|
2015-01-23 02:07:20 +00:00
|
|
|
#include <srs_rtmp_sdk.hpp>
|
2014-07-26 12:07:12 +00:00
|
|
|
#include <srs_app_st_socket.hpp>
|
2014-04-03 03:49:14 +00:00
|
|
|
#include <srs_app_json.hpp>
|
2014-04-23 09:53:14 +00:00
|
|
|
#include <srs_app_dvr.hpp>
|
2014-05-19 09:39:01 +00:00
|
|
|
#include <srs_app_http_client.hpp>
|
2015-03-06 03:51:20 +00:00
|
|
|
#include <srs_core_autofree.hpp>
|
2015-03-31 09:52:49 +00:00
|
|
|
#include <srs_app_config.hpp>
|
2015-04-10 04:01:45 +00:00
|
|
|
#include <srs_kernel_utility.hpp>
|
2015-05-22 14:34:03 +00:00
|
|
|
#include <srs_app_http_conn.hpp>
|
2014-04-01 10:40:24 +00:00
|
|
|
|
2015-03-21 02:25:03 +00:00
|
|
|
#define SRS_HTTP_RESPONSE_OK SRS_XSTR(ERROR_SUCCESS)
|
2014-04-01 10:40:24 +00:00
|
|
|
|
|
|
|
#define SRS_HTTP_HEADER_BUFFER 1024
|
2015-04-10 07:00:07 +00:00
|
|
|
#define SRS_HTTP_READ_BUFFER 4096
|
2014-04-01 10:40:24 +00:00
|
|
|
#define SRS_HTTP_BODY_BUFFER 32 * 1024
|
|
|
|
|
2015-04-10 05:45:21 +00:00
|
|
|
// the timeout for hls notify, in us.
|
|
|
|
#define SRS_HLS_NOTIFY_TIMEOUT_US (int64_t)(10*1000*1000LL)
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
SrsHttpHooks::SrsHttpHooks()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SrsHttpHooks::~SrsHttpHooks()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int SrsHttpHooks::on_connect(string url, SrsRequest* req)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_connect") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("tcUrl", req->tcUrl) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("pageUrl", req->pageUrl)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_error("http post on_connect uri failed. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_connect success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
void SrsHttpHooks::on_close(string url, SrsRequest* req, int64_t send_bytes, int64_t recv_bytes)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_close") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("send_bytes", send_bytes) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("recv_bytes", recv_bytes) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_warn("http post on_close uri failed, ignored. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_close success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int SrsHttpHooks::on_publish(string url, SrsRequest* req)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_publish") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_error("http post on_publish uri failed. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_publish success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
void SrsHttpHooks::on_unpublish(string url, SrsRequest* req)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_unpublish") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_warn("http post on_unpublish uri failed, ignored. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_unpublish success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int SrsHttpHooks::on_play(string url, SrsRequest* req)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_play") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_error("http post on_play uri failed. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_play success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
void SrsHttpHooks::on_stop(string url, SrsRequest* req)
|
2014-04-01 10:40:24 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_stop") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2014-04-01 10:40:24 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
2015-01-02 02:21:04 +00:00
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2014-04-01 10:40:24 +00:00
|
|
|
srs_warn("http post on_stop uri failed, ignored. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2014-04-01 10:40:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_stop success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int SrsHttpHooks::on_dvr(string url, SrsRequest* req, string file)
|
2015-01-03 07:33:23 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
std::string cwd = _srs_config->cwd();
|
|
|
|
|
2015-01-03 07:33:23 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
|
|
|
<< SRS_JFIELD_STR("action", "on_dvr") << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:52:49 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("cwd", cwd) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("file", file)
|
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2015-01-03 07:33:23 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2015-01-03 07:33:23 +00:00
|
|
|
srs_error("http post on_dvr uri failed, ignored. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2015-01-03 07:33:23 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
srs_trace("http hook on_dvr success. "
|
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2014-08-02 14:18:39 +00:00
|
|
|
|
2015-04-23 04:05:24 +00:00
|
|
|
int SrsHttpHooks::on_hls(string url, SrsRequest* req, string file, string ts_url, string m3u8, string m3u8_url, int sn, double duration)
|
2015-02-22 02:45:13 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
2015-03-31 09:52:49 +00:00
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
std::string cwd = _srs_config->cwd();
|
|
|
|
|
2015-02-22 02:45:13 +00:00
|
|
|
std::stringstream ss;
|
2015-03-21 02:25:03 +00:00
|
|
|
ss << SRS_JOBJECT_START
|
2015-03-31 09:42:12 +00:00
|
|
|
<< SRS_JFIELD_STR("action", "on_hls") << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_ORG("client_id", client_id) << SRS_JFIELD_CONT
|
2015-03-31 09:42:12 +00:00
|
|
|
<< SRS_JFIELD_STR("ip", req->ip) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("vhost", req->vhost) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("app", req->app) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("stream", req->stream) << SRS_JFIELD_CONT
|
2015-04-03 05:46:44 +00:00
|
|
|
<< SRS_JFIELD_ORG("duration", duration) << SRS_JFIELD_CONT
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JFIELD_STR("cwd", cwd) << SRS_JFIELD_CONT
|
2015-03-31 09:42:12 +00:00
|
|
|
<< SRS_JFIELD_STR("file", file) << SRS_JFIELD_CONT
|
2015-04-23 04:05:24 +00:00
|
|
|
<< SRS_JFIELD_STR("url", ts_url) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("m3u8", m3u8) << SRS_JFIELD_CONT
|
|
|
|
<< SRS_JFIELD_STR("m3u8_url", m3u8_url) << SRS_JFIELD_CONT
|
2015-03-31 09:42:12 +00:00
|
|
|
<< SRS_JFIELD_ORG("seq_no", sn)
|
2015-03-21 02:25:03 +00:00
|
|
|
<< SRS_JOBJECT_END;
|
2015-03-06 03:51:20 +00:00
|
|
|
|
2015-02-22 02:45:13 +00:00
|
|
|
std::string data = ss.str();
|
|
|
|
std::string res;
|
|
|
|
int status_code;
|
2015-03-06 03:51:20 +00:00
|
|
|
if ((ret = do_post(url, data, status_code, res)) != ERROR_SUCCESS) {
|
2015-03-31 09:42:12 +00:00
|
|
|
srs_error("http post on_hls uri failed, ignored. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, code=%d, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), status_code, ret);
|
2015-02-22 02:45:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-31 09:42:12 +00:00
|
|
|
srs_trace("http hook on_hls success. "
|
2015-03-06 03:51:20 +00:00
|
|
|
"client_id=%d, url=%s, request=%s, response=%s, ret=%d",
|
|
|
|
client_id, url.c_str(), data.c_str(), res.c_str(), ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-10 06:44:18 +00:00
|
|
|
int SrsHttpHooks::on_hls_notify(std::string url, SrsRequest* req, std::string ts_url, int nb_notify)
|
2015-04-10 04:01:45 +00:00
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
int client_id = _srs_context->get_id();
|
|
|
|
std::string cwd = _srs_config->cwd();
|
|
|
|
|
|
|
|
if (srs_string_starts_with(ts_url, "http://") || srs_string_starts_with(ts_url, "https://")) {
|
|
|
|
url = ts_url;
|
|
|
|
}
|
|
|
|
|
|
|
|
url = srs_string_replace(url, "[app]", req->app);
|
|
|
|
url = srs_string_replace(url, "[stream]", req->stream);
|
|
|
|
url = srs_string_replace(url, "[ts_url]", ts_url);
|
|
|
|
|
2015-04-10 04:30:22 +00:00
|
|
|
int64_t starttime = srs_update_system_time_ms();
|
|
|
|
|
2015-04-10 04:01:45 +00:00
|
|
|
SrsHttpUri uri;
|
|
|
|
if ((ret = uri.initialize(url)) != ERROR_SUCCESS) {
|
|
|
|
srs_error("http: post failed. url=%s, ret=%d", url.c_str(), ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
SrsHttpClient http;
|
2015-04-10 05:45:21 +00:00
|
|
|
if ((ret = http.initialize(uri.get_host(), uri.get_port(), SRS_HLS_NOTIFY_TIMEOUT_US)) != ERROR_SUCCESS) {
|
2015-04-10 04:01:45 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-04-14 09:53:53 +00:00
|
|
|
std::string path = uri.get_query();
|
|
|
|
if (path.empty()) {
|
|
|
|
path = uri.get_path();
|
|
|
|
} else {
|
|
|
|
path = uri.get_path();
|
|
|
|
path += "?";
|
|
|
|
path += uri.get_query();
|
|
|
|
}
|
|
|
|
srs_warn("GET %s", path.c_str());
|
|
|
|
|
2015-05-22 14:24:05 +00:00
|
|
|
ISrsHttpMessage* msg = NULL;
|
2015-04-14 09:53:53 +00:00
|
|
|
if ((ret = http.get(path.c_str(), "", &msg)) != ERROR_SUCCESS) {
|
2015-04-10 04:01:45 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2015-05-22 14:24:05 +00:00
|
|
|
SrsAutoFree(ISrsHttpMessage, msg);
|
2015-04-10 04:01:45 +00:00
|
|
|
|
2015-04-10 07:00:07 +00:00
|
|
|
int nb_buf = srs_min(nb_notify, SRS_HTTP_READ_BUFFER);
|
|
|
|
char* buf = new char[nb_buf];
|
|
|
|
SrsAutoFree(char, buf);
|
|
|
|
|
2015-04-10 06:17:49 +00:00
|
|
|
int nb_read = 0;
|
2015-04-10 04:01:45 +00:00
|
|
|
ISrsHttpResponseReader* br = msg->body_reader();
|
2015-04-10 06:44:18 +00:00
|
|
|
while (nb_read < nb_notify && !br->eof()) {
|
2015-04-10 07:00:07 +00:00
|
|
|
int nb_bytes = 0;
|
|
|
|
if ((ret = br->read(buf, nb_buf, &nb_bytes)) != ERROR_SUCCESS) {
|
2015-04-10 06:44:18 +00:00
|
|
|
break;
|
|
|
|
}
|
2015-04-10 07:00:07 +00:00
|
|
|
nb_read += nb_bytes;
|
2015-04-10 04:01:45 +00:00
|
|
|
}
|
|
|
|
|
2015-04-10 04:30:22 +00:00
|
|
|
int spenttime = (int)(srs_update_system_time_ms() - starttime);
|
2015-04-10 06:17:49 +00:00
|
|
|
srs_trace("http hook on_hls_notify success. client_id=%d, url=%s, code=%d, spent=%dms, read=%dB, ret=%d",
|
|
|
|
client_id, url.c_str(), msg->status_code(), spenttime, nb_read, ret);
|
2015-04-10 04:01:45 +00:00
|
|
|
|
|
|
|
// ignore any error for on_hls_notify.
|
|
|
|
ret = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:51:20 +00:00
|
|
|
int SrsHttpHooks::do_post(std::string url, std::string req, int& code, string& res)
|
|
|
|
{
|
|
|
|
int ret = ERROR_SUCCESS;
|
|
|
|
|
|
|
|
SrsHttpUri uri;
|
|
|
|
if ((ret = uri.initialize(url)) != ERROR_SUCCESS) {
|
|
|
|
srs_error("http: post failed. url=%s, ret=%d", url.c_str(), ret);
|
2015-02-22 02:45:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-03-06 03:51:20 +00:00
|
|
|
SrsHttpClient http;
|
2015-03-06 04:07:12 +00:00
|
|
|
if ((ret = http.initialize(uri.get_host(), uri.get_port())) != ERROR_SUCCESS) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-05-22 14:24:05 +00:00
|
|
|
ISrsHttpMessage* msg = NULL;
|
2015-03-06 04:07:12 +00:00
|
|
|
if ((ret = http.post(uri.get_path(), req, &msg)) != ERROR_SUCCESS) {
|
2015-02-22 02:45:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2015-05-22 14:24:05 +00:00
|
|
|
SrsAutoFree(ISrsHttpMessage, msg);
|
2015-02-22 02:45:13 +00:00
|
|
|
|
2015-03-06 03:51:20 +00:00
|
|
|
code = msg->status_code();
|
|
|
|
if ((ret = msg->body_read_all(res)) != ERROR_SUCCESS) {
|
|
|
|
return ret;
|
|
|
|
}
|
2015-02-22 02:45:13 +00:00
|
|
|
|
2015-03-06 03:51:20 +00:00
|
|
|
// ensure the http status is ok.
|
2015-04-29 09:06:32 +00:00
|
|
|
// https://github.com/simple-rtmp-server/srs/issues/158
|
2015-03-06 03:51:20 +00:00
|
|
|
if (code != SRS_CONSTS_HTTP_OK) {
|
|
|
|
return ERROR_HTTP_STATUS_INVLIAD;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: FIXME: parse json.
|
|
|
|
if (res.empty() || res != SRS_HTTP_RESPONSE_OK) {
|
|
|
|
return ERROR_HTTP_DATA_INVLIAD;
|
|
|
|
}
|
|
|
|
|
2015-02-22 02:45:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-01-03 07:33:23 +00:00
|
|
|
#endif
|