2018-06-12 15:34:27 +08:00
|
|
|
|
#include "client.h"
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
#include <string>
|
|
|
|
|
#include <cstring>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
using namespace std;
|
|
|
|
|
CHttpClient::CHttpClient(void) :
|
|
|
|
|
m_bDebug(false)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
CHttpClient::~CHttpClient(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static const std::string UrlEncode(const std::string& s)
|
|
|
|
|
{
|
|
|
|
|
std::string ret;
|
|
|
|
|
unsigned char *ptr = (unsigned char *)s.c_str();
|
|
|
|
|
ret.reserve(s.length());
|
|
|
|
|
|
|
|
|
|
for(int i=0;i<s.length();++i)
|
|
|
|
|
{
|
|
|
|
|
if((int(ptr[i])==42) || (int(ptr[i])==45) || (int(ptr[i])==46) || (int(ptr[i])==47) || (int(ptr[i])==58) ||(int(ptr[i])==95))
|
|
|
|
|
ret += ptr[i];
|
|
|
|
|
else if((int(ptr[i])>=48) && (int(ptr[i])<=57))
|
|
|
|
|
ret += ptr[i];
|
|
|
|
|
else if((int(ptr[i])>=65) && (int(ptr[i])<=90))
|
|
|
|
|
ret += ptr[i];
|
|
|
|
|
else if((int(ptr[i])>=97) && (int(ptr[i])<=122))
|
|
|
|
|
ret += ptr[i];
|
|
|
|
|
else if(int(ptr[i])==32)
|
|
|
|
|
ret += '+';
|
2018-09-28 10:52:30 +08:00
|
|
|
|
else if((int(ptr[i])!=10) && (int(ptr[i])!=11) && (int(ptr[i])!=13))
|
2018-06-12 15:34:27 +08:00
|
|
|
|
{
|
|
|
|
|
char buf[5];
|
|
|
|
|
memset(buf,0,5);
|
|
|
|
|
snprintf(buf,5,"%%%X",ptr[i]);
|
|
|
|
|
ret.append(buf);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int OnDebug(CURL *, curl_infotype itype, char * pData, size_t size, void *)
|
|
|
|
|
{
|
|
|
|
|
if(itype == CURLINFO_TEXT)
|
|
|
|
|
{
|
|
|
|
|
//printf("[TEXT]%s\n", pData);
|
|
|
|
|
}
|
|
|
|
|
else if(itype == CURLINFO_HEADER_IN)
|
|
|
|
|
{
|
|
|
|
|
printf("[HEADER_IN]%s\n", pData);
|
|
|
|
|
}
|
|
|
|
|
else if(itype == CURLINFO_HEADER_OUT)
|
|
|
|
|
{
|
|
|
|
|
printf("[HEADER_OUT]%s\n", pData);
|
|
|
|
|
}
|
|
|
|
|
else if(itype == CURLINFO_DATA_IN)
|
|
|
|
|
{
|
|
|
|
|
printf("[DATA_IN]%s\n", pData);
|
|
|
|
|
}
|
|
|
|
|
else if(itype == CURLINFO_DATA_OUT)
|
|
|
|
|
{
|
|
|
|
|
printf("[DATA_OUT]%s\n", pData);
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static size_t OnWriteData(void* buffer, size_t size, size_t nmemb, void* lpVoid)
|
|
|
|
|
{
|
|
|
|
|
std::string* str = dynamic_cast<std::string*>((std::string *)lpVoid);
|
|
|
|
|
if( NULL == str || NULL == buffer )
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char* pData = (char*)buffer;
|
|
|
|
|
str->append(pData, size * nmemb);
|
|
|
|
|
return nmemb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CHttpClient::Post(const std::string & strUrl, const std::string & strPost, std::string & strResponse)
|
|
|
|
|
{
|
|
|
|
|
strResponse.clear();
|
|
|
|
|
CURLcode res;
|
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
|
if(NULL == curl)
|
|
|
|
|
{
|
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
}
|
|
|
|
|
if(m_bDebug)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, UrlEncode(strUrl).c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POST, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, strPost.c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);
|
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CHttpClient::Get(const std::string &strUrl, const std::string &filename, bool SavedOnFile) {
|
|
|
|
|
if (!SavedOnFile)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
CURLcode res;
|
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
|
if (NULL == curl)
|
|
|
|
|
{
|
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
}
|
|
|
|
|
if (m_bDebug)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);
|
|
|
|
|
}
|
2018-07-28 20:12:56 +08:00
|
|
|
|
curl_easy_setopt(curl, CURLOPT_BUFFERSIZE, 4096);
|
2018-06-12 15:34:27 +08:00
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, UrlEncode(strUrl).c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, NULL);
|
|
|
|
|
|
|
|
|
|
FILE* fw = fopen(filename.c_str(), "wb");
|
|
|
|
|
if (!fw)
|
|
|
|
|
{
|
|
|
|
|
cout << "open file failed" << endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fw);
|
|
|
|
|
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
|
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
fclose(fw);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int CHttpClient::Get(const std::string & strUrl, std::string & strResponse)
|
|
|
|
|
{
|
|
|
|
|
strResponse.clear();
|
|
|
|
|
CURLcode res;
|
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
|
if(NULL == curl)
|
|
|
|
|
{
|
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
}
|
|
|
|
|
if(m_bDebug)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, UrlEncode(strUrl).c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);
|
|
|
|
|
/**
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̶߳<EFBFBD>ʹ<EFBFBD>ó<EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʱ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ͬʱ<EFBFBD><EFBFBD><EFBFBD>߳<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>sleep<EFBFBD><EFBFBD><EFBFBD><EFBFBD>wait<EFBFBD>Ȳ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD>libcurl<EFBFBD><EFBFBD><EFBFBD>ᷢ<EFBFBD>źŴ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>wait<EFBFBD>Ӷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>³<EFBFBD><EFBFBD><EFBFBD><EFBFBD>˳<EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
*/
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
|
|
|
|
|
//curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);
|
|
|
|
|
//curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);
|
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CHttpClient::Posts(const std::string & strUrl, const std::string & strPost, std::string & strResponse, const char * pCaPath)
|
|
|
|
|
{
|
|
|
|
|
strResponse.clear();
|
|
|
|
|
CURLcode res;
|
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
|
if(NULL == curl)
|
|
|
|
|
{
|
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
}
|
|
|
|
|
if(m_bDebug)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, UrlEncode(strUrl).c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POST, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, strPost.c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
|
|
|
|
|
if(NULL == pCaPath)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
//ȱʡ<C8B1><CAA1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>PEM<45><4D><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ã<EFBFBD><C3A3><EFBFBD><EFBFBD><EFBFBD>֧<EFBFBD><D6A7>DER
|
|
|
|
|
//curl_easy_setopt(curl,CURLOPT_SSLCERTTYPE,"PEM");
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, true);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CAINFO, pCaPath);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);
|
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int CHttpClient::Gets(const std::string & strUrl, std::string & strResponse, const char * pCaPath)
|
|
|
|
|
{
|
|
|
|
|
strResponse.clear();
|
|
|
|
|
CURLcode res;
|
|
|
|
|
CURL* curl = curl_easy_init();
|
|
|
|
|
if(NULL == curl)
|
|
|
|
|
{
|
|
|
|
|
return CURLE_FAILED_INIT;
|
|
|
|
|
}
|
|
|
|
|
if(m_bDebug)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_DEBUGFUNCTION, OnDebug);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_URL, UrlEncode(strUrl).c_str());
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_READFUNCTION, NULL);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, OnWriteData);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_WRITEDATA, (void *)&strResponse);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1);
|
|
|
|
|
if(NULL == pCaPath)
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, true);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CAINFO, pCaPath);
|
|
|
|
|
}
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 3);
|
|
|
|
|
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 3);
|
|
|
|
|
res = curl_easy_perform(curl);
|
|
|
|
|
curl_easy_cleanup(curl);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
void CHttpClient::SetDebug(bool bDebug)
|
|
|
|
|
{
|
|
|
|
|
m_bDebug = bDebug;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|