2021-05-31 05:42:20 +00:00
|
|
|
//
|
2022-06-20 11:22:25 +00:00
|
|
|
// Copyright (c) 2013-2022 The SRS Authors
|
2021-05-31 05:42:20 +00:00
|
|
|
//
|
2022-01-13 10:40:17 +00:00
|
|
|
// SPDX-License-Identifier: MIT or MulanPSL-2.0
|
2021-05-31 05:42:20 +00:00
|
|
|
//
|
2017-03-26 05:40:39 +00:00
|
|
|
|
2022-06-09 11:59:51 +00:00
|
|
|
#ifndef SRS_PROTOCOL_HTTP_CLIENT_HPP
|
|
|
|
#define SRS_PROTOCOL_HTTP_CLIENT_HPP
|
2017-03-26 05:40:39 +00:00
|
|
|
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <map>
|
|
|
|
|
2020-11-03 07:45:52 +00:00
|
|
|
#include <openssl/ssl.h>
|
|
|
|
|
2022-06-09 11:59:51 +00:00
|
|
|
#include <srs_protocol_st.hpp>
|
2022-06-09 12:11:52 +00:00
|
|
|
#include <srs_protocol_http_stack.hpp>
|
2017-03-26 05:40:39 +00:00
|
|
|
|
|
|
|
class SrsHttpUri;
|
|
|
|
class SrsHttpParser;
|
|
|
|
class ISrsHttpMessage;
|
|
|
|
class SrsStSocket;
|
2022-08-30 05:41:27 +00:00
|
|
|
class SrsNetworkKbps;
|
2018-12-23 12:47:17 +00:00
|
|
|
class SrsWallClock;
|
2017-03-26 05:40:39 +00:00
|
|
|
class SrsTcpClient;
|
|
|
|
|
2019-04-28 00:21:48 +00:00
|
|
|
// The default timeout for http client.
|
2019-04-28 00:23:16 +00:00
|
|
|
#define SRS_HTTP_CLIENT_TIMEOUT (30 * SRS_UTIME_SECONDS)
|
2017-03-26 05:40:39 +00:00
|
|
|
|
2020-11-03 07:45:52 +00:00
|
|
|
// The SSL client over TCP transport.
|
2021-05-14 10:17:42 +00:00
|
|
|
class SrsSslClient : public ISrsReader, public ISrsStreamWriter
|
2020-11-03 07:45:52 +00:00
|
|
|
{
|
|
|
|
private:
|
|
|
|
SrsTcpClient* transport;
|
|
|
|
private:
|
|
|
|
SSL_CTX* ssl_ctx;
|
|
|
|
SSL* ssl;
|
|
|
|
BIO* bio_in;
|
|
|
|
BIO* bio_out;
|
|
|
|
public:
|
|
|
|
SrsSslClient(SrsTcpClient* tcp);
|
|
|
|
virtual ~SrsSslClient();
|
|
|
|
public:
|
|
|
|
virtual srs_error_t handshake();
|
|
|
|
public:
|
|
|
|
virtual srs_error_t read(void* buf, size_t size, ssize_t* nread);
|
|
|
|
virtual srs_error_t write(void* buf, size_t size, ssize_t* nwrite);
|
|
|
|
};
|
|
|
|
|
2019-04-28 00:21:48 +00:00
|
|
|
// The client to GET/POST/PUT/DELETE over HTTP.
|
|
|
|
// @remark We will reuse the TCP transport until initialize or channel error,
|
|
|
|
// such as send/recv failed.
|
|
|
|
// Usage:
|
|
|
|
// SrsHttpClient hc;
|
|
|
|
// hc.initialize("127.0.0.1", 80, 9000);
|
|
|
|
// hc.post("/api/v1/version", "Hello world!", NULL);
|
2017-03-26 05:40:39 +00:00
|
|
|
class SrsHttpClient
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
// The underlayer TCP transport, set to NULL when disconnect, or never not NULL when connected.
|
|
|
|
// We will disconnect transport when initialize or channel error, such as send/recv error.
|
|
|
|
SrsTcpClient* transport;
|
|
|
|
SrsHttpParser* parser;
|
|
|
|
std::map<std::string, std::string> headers;
|
2022-08-30 05:41:27 +00:00
|
|
|
SrsNetworkKbps* kbps;
|
2017-03-26 05:40:39 +00:00
|
|
|
private:
|
2019-04-17 23:43:51 +00:00
|
|
|
// The timeout in srs_utime_t.
|
|
|
|
srs_utime_t timeout;
|
2020-01-08 06:00:27 +00:00
|
|
|
srs_utime_t recv_timeout;
|
2020-11-03 07:45:52 +00:00
|
|
|
// The schema, host name or ip.
|
|
|
|
std::string schema_;
|
2017-03-26 05:40:39 +00:00
|
|
|
std::string host;
|
|
|
|
int port;
|
2020-11-03 07:45:52 +00:00
|
|
|
private:
|
|
|
|
SrsSslClient* ssl_transport;
|
2017-03-26 05:40:39 +00:00
|
|
|
public:
|
|
|
|
SrsHttpClient();
|
|
|
|
virtual ~SrsHttpClient();
|
|
|
|
public:
|
2019-04-28 00:21:48 +00:00
|
|
|
// Initliaze the client, disconnect the transport, renew the HTTP parser.
|
2020-11-03 07:45:52 +00:00
|
|
|
// @param schema Should be http or https.
|
2019-04-28 00:21:48 +00:00
|
|
|
// @param tm The underlayer TCP transport timeout in srs_utime_t.
|
|
|
|
// @remark we will set default values in headers, which can be override by set_header.
|
2020-11-03 07:45:52 +00:00
|
|
|
virtual srs_error_t initialize(std::string schema, std::string h, int p, srs_utime_t tm = SRS_HTTP_CLIENT_TIMEOUT);
|
2019-04-28 00:21:48 +00:00
|
|
|
// Set HTTP request header in header[k]=v.
|
|
|
|
// @return the HTTP client itself.
|
2017-03-26 05:40:39 +00:00
|
|
|
virtual SrsHttpClient* set_header(std::string k, std::string v);
|
|
|
|
public:
|
2019-04-28 00:21:48 +00:00
|
|
|
// Post data to the uri.
|
|
|
|
// @param the path to request on.
|
|
|
|
// @param req the data post to uri. empty string to ignore.
|
|
|
|
// @param ppmsg output the http message to read the response.
|
|
|
|
// @remark user must free the ppmsg if not NULL.
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t post(std::string path, std::string req, ISrsHttpMessage** ppmsg);
|
2019-04-28 00:21:48 +00:00
|
|
|
// Get data from the uri.
|
|
|
|
// @param the path to request on.
|
|
|
|
// @param req the data post to uri. empty string to ignore.
|
|
|
|
// @param ppmsg output the http message to read the response.
|
|
|
|
// @remark user must free the ppmsg if not NULL.
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t get(std::string path, std::string req, ISrsHttpMessage** ppmsg);
|
2021-02-19 10:16:05 +00:00
|
|
|
public:
|
2019-04-17 00:31:53 +00:00
|
|
|
virtual void set_recv_timeout(srs_utime_t tm);
|
2017-03-26 05:40:39 +00:00
|
|
|
public:
|
2022-08-30 05:41:27 +00:00
|
|
|
virtual void kbps_sample(const char* label, srs_utime_t age);
|
2017-03-26 05:40:39 +00:00
|
|
|
private:
|
|
|
|
virtual void disconnect();
|
2017-09-22 11:54:50 +00:00
|
|
|
virtual srs_error_t connect();
|
2020-11-03 07:45:52 +00:00
|
|
|
ISrsStreamWriter* writer();
|
|
|
|
ISrsReader* reader();
|
2017-03-26 05:40:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|