You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
4 years ago
|
#ifndef SDK_CXX_OPENCLIENT_H
|
||
|
#define SDK_CXX_OPENCLIENT_H
|
||
|
|
||
|
#include <string>
|
||
|
#include "httplib.h"
|
||
|
#include "../request/BaseRequest.h"
|
||
|
#include "../thirdparty/CJsonObject/CJsonObject.hpp"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
struct HostInfo {
|
||
|
string host;
|
||
|
int port;
|
||
|
char *path;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* 请求客户端
|
||
|
*/
|
||
|
class OpenClient {
|
||
|
private:
|
||
|
/** 应用id */
|
||
|
string appId;
|
||
|
/** 私钥文件路径 */
|
||
|
string privateKeyFilePath;
|
||
|
|
||
|
public:
|
||
|
/**
|
||
|
* 创建客户端对象
|
||
|
* @param appId 应用ID
|
||
|
* @param privateKeyFilePath 应用私钥路径
|
||
|
* @param url 请求URL
|
||
|
*/
|
||
|
OpenClient(const string &appId, const string &privateKeyFilePath, const string &url);
|
||
|
|
||
|
/**
|
||
|
* 发送请求
|
||
|
* @param request 请求对象,BaseRequest的子类
|
||
|
* @param token token
|
||
|
* @return 返回响应结果
|
||
|
*/
|
||
|
neb::CJsonObject execute(BaseRequest *request, const string& token);
|
||
|
|
||
|
/**
|
||
|
* 发送请求
|
||
|
* @param request 请求对象,BaseRequest的子类
|
||
|
* @return 返回响应结果
|
||
|
*/
|
||
|
neb::CJsonObject execute(BaseRequest *request);
|
||
|
|
||
|
private:
|
||
|
|
||
|
HostInfo hostInfo;
|
||
|
|
||
|
map<string, string> buildParams(BaseRequest *request, const string& token);
|
||
|
|
||
|
static httplib::MultipartFormDataItems
|
||
|
getMultipartFormDataItems(map<string, string> allParams, vector<FileInfo> fileInfoList);
|
||
|
|
||
|
static httplib::Params getParams(map<string, string> params);
|
||
|
|
||
|
static neb::CJsonObject parseResponse(const string& responseBody,BaseRequest *request);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //SDK_CXX_OPENCLIENT_H
|