cmake/Source/CTest/cmCTestCurl.h

54 lines
1.4 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#ifndef cmCTestCurl_h
#define cmCTestCurl_h
2017-07-20 19:35:53 +02:00
#include "cmConfigure.h" // IWYU pragma: keep
2015-04-27 22:25:09 +02:00
2017-07-20 19:35:53 +02:00
#include "cm_curl.h"
2016-10-30 18:24:19 +01:00
#include <string>
#include <vector>
2015-04-27 22:25:09 +02:00
class cmCTest;
class cmCTestCurl
{
public:
cmCTestCurl(cmCTest*);
~cmCTestCurl();
2018-08-09 18:06:22 +02:00
bool UploadFile(std::string const& local_file, std::string const& url,
2016-07-09 11:21:54 +02:00
std::string const& fields, std::string& response);
bool HttpRequest(std::string const& url, std::string const& fields,
2015-04-27 22:25:09 +02:00
std::string& response);
// currently only supports CURLOPT_SSL_VERIFYPEER_OFF
// and CURLOPT_SSL_VERIFYHOST_OFF
void SetCurlOptions(std::vector<std::string> const& args);
2017-07-20 19:35:53 +02:00
void SetHttpHeaders(std::vector<std::string> const& v)
{
this->HttpHeaders = v;
}
2016-07-09 11:21:54 +02:00
void SetUseHttp10On() { this->UseHttp10 = true; }
void SetTimeOutSeconds(int s) { this->TimeOutSeconds = s; }
2017-04-14 19:02:05 +02:00
void SetQuiet(bool b) { this->Quiet = b; }
2015-04-27 22:25:09 +02:00
std::string Escape(std::string const& source);
2016-07-09 11:21:54 +02:00
2015-04-27 22:25:09 +02:00
protected:
void SetProxyType();
bool InitCurl();
2016-07-09 11:21:54 +02:00
2015-04-27 22:25:09 +02:00
private:
cmCTest* CTest;
CURL* Curl;
2017-07-20 19:35:53 +02:00
std::vector<std::string> HttpHeaders;
2015-04-27 22:25:09 +02:00
std::string HTTPProxyAuth;
std::string HTTPProxy;
curl_proxytype HTTPProxyType;
bool VerifyHostOff;
bool VerifyPeerOff;
bool UseHttp10;
2017-04-14 19:02:05 +02:00
bool Quiet;
2015-04-27 22:25:09 +02:00
int TimeOutSeconds;
};
#endif