blob: 0138c7926312c9096e3b889ecc92ba3b709de4a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
/**
* @file restclient.cpp
* @brief implementation of the restclient class
*
* This just provides static wrappers around the Connection class REST
* methods. However since I didn't want to have to pull in a whole URI parsing
* library just now, the Connection constructor is passed an empty string and
* the full URL is passed to the REST methods. All those methods to is
* concatenate them anyways. So this should do for now.
*
* @author Daniel Schauenberg <d@unwiredcouch.com>
*/
#include "restclient/restclient.h"
#include "../../src/client/cl_curl.h"
#ifdef USE_LOCAL_HEADERS
#include "../libcurl-7.35.0/curl/curl.h"
#else
#include <curl/curl.h>
#endif
#include "restclient/version.h"
#include "restclient/connection.h"
/**
* @brief global init function. Call this before you start any threads.
*/
int RestClient::init() {
#ifdef USE_CURL_DLOPEN
CL_cURL_Init();
#endif
CURLcode res = qcurl_global_init(CURL_GLOBAL_ALL);
if (res == CURLE_OK) {
return 0;
} else {
return 1;
}
}
/**
* @brief global disable function. Call this before you terminate your
* program.
*/
void RestClient::disable() {
qcurl_global_cleanup();
}
/**
* @brief HTTP GET method
*
* @param url to query
*
* @return response struct
*/
RestClient::Response RestClient::get(const std::string& url) {
RestClient::Response ret;
RestClient::Connection *conn = new RestClient::Connection("");
ret = conn->get(url);
delete conn;
return ret;
}
/**
* @brief HTTP POST method
*
* @param url to query
* @param ctype content type as string
* @param data HTTP POST body
*
* @return response struct
*/
RestClient::Response RestClient::post(const std::string& url,
const std::string& ctype,
const std::string& data) {
RestClient::Response ret;
RestClient::Connection *conn = new RestClient::Connection("");
conn->AppendHeader("Content-Type", ctype);
ret = conn->post(url, data);
delete conn;
return ret;
}
/**
* @brief HTTP PUT method
*
* @param url to query
* @param ctype content type as string
* @param data HTTP PUT body
*
* @return response struct
*/
RestClient::Response RestClient::put(const std::string& url,
const std::string& ctype,
const std::string& data) {
RestClient::Response ret;
RestClient::Connection *conn = new RestClient::Connection("");
conn->AppendHeader("Content-Type", ctype);
ret = conn->put(url, data);
delete conn;
return ret;
}
/**
* @brief HTTP DELETE method
*
* @param url to query
*
* @return response struct
*/
RestClient::Response RestClient::del(const std::string& url) {
RestClient::Response ret;
RestClient::Connection *conn = new RestClient::Connection("");
ret = conn->del(url);
delete conn;
return ret;
}
|