cmake/Source/CTest/cmCTestCurl.h

49 lines
1.3 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
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h> // IWYU pragma: keep
2015-04-27 22:25:09 +02:00
2016-10-30 18:24:19 +01:00
#include <cm_curl.h>
#include <string>
#include <vector>
2015-04-27 22:25:09 +02:00
class cmCTest;
class cmCTestCurl
{
public:
cmCTestCurl(cmCTest*);
~cmCTestCurl();
2016-07-09 11:21:54 +02:00
bool UploadFile(std::string const& url, std::string const& file,
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);
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;
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