-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhttp_data.cpp
335 lines (266 loc) · 6.54 KB
/
http_data.cpp
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#include "http_data.h"
#include <QSharedPointer>
#include <QJsonArray>
#include <QJsonObject>
//post_data
Q_INVOKABLE http_data::http_data(QObject *parent /*= 0*/)
:QObject(parent)
{
}
http_data::~http_data()
{
}
QString http_data::key() const
{
return _key;
}
void http_data::set_key(const QString& key)
{
_key = key;
}
bool http_data::used() const
{
return _used;
}
void http_data::set_used(bool used)
{
_used = used;
}
http_data::post_type_t http_data::post_type() const
{
return _post_type;
}
QString http_data::post_type_string() const
{
return get_post_type_string(post_type());
}
void http_data::set_post_type(http_data::post_type_t post_type)
{
_post_type = post_type;
}
bool http_data::auth() const
{
return _auth;
}
void http_data::set_auth(bool auth)
{
_auth = auth;
}
QString http_data::value_type() const
{
return _value_type;
}
void http_data::set_value_type(const QString& value_type)
{
_value_type = value_type;
}
QString http_data::value() const
{
return _value;
}
void http_data::set_value(const QString value)
{
_value = value;
}
QVariant http_data::data() const
{
return _data;
}
void http_data::set_data(const QVariant& value)
{
_data = value;
}
const QMap<QString, http_data::post_type_t> & get_post_type_map(){
static QMap<QString, http_data::post_type_t> post_types;
if(post_types.empty()){
post_types.insert(POST_TYPE_NONE_STR, http_data::POST_TYPE_NONE);
post_types.insert(POST_TYPE_URL_QUERY_STR, http_data::POST_TYPE_URL_QUERY);
post_types.insert(POST_TYPE_BODY_STR, http_data::POST_TYPE_BODY);
post_types.insert(POST_TYPE_HEADER_STR, http_data::POST_TYPE_HEADER);
};
return post_types;
}
http_data::post_type_t http_data::get_post_type(const QString& post_type)
{
return get_post_type_map()[post_type];
}
QString http_data::get_post_type_string(post_type_t post_type)
{
const QMap<QString, http_data::post_type_t>& map = get_post_type_map();
for (auto it = map.begin(); it != map.end(); ++it){
if (*it == post_type){
return it.key();
}
}
return QString("Unknown");
}
//post_date_list
QByteArray http_data_list::url_encode(const QString &data)
{
QByteArray ba = data.toUtf8();
return ba.toPercentEncoding();
}
QString http_data_list::to_url_encode_string() const
{
QString str;
for (auto it = begin(); it != end(); it++){
http_data_ptr pdi = *it;
if(!pdi->used()){
continue;
}
str.append(url_encode(pdi->key()));
str.append("=");
str.append(url_encode(pdi->value()));
str.append("&");
}
if (!str.isEmpty()){
str.chop(1);
}
return str;
}
QString http_data_list::to_url_encode_string(int post_type,
int auth_type ) const
{
http_data_list temp_items = get_post_datas(post_type, auth_type);
return temp_items.to_url_encode_string();
}
http_data_list http_data_list::get_post_datas(int post_type, int auth_type, bool only_used) const
{
http_data_list temp_items;
for (auto it = begin(); it != end(); it++){
http_data_ptr pdi = *it;
if (pdi->post_type() & post_type
&& (only_used ? pdi->used() : true)
&& (auth_type == http_data::HTTP_DATA_AUTH_ALL
|| auth_type == http_data::HTTP_DATA_AUTH && pdi->auth()
|| auth_type == http_data::HTTP_DATA_NOT_AUTH && !pdi->auth())){
temp_items.append(pdi);
}
}
return temp_items;
}
QJsonValue http_data_list::to_json()
{
QJsonArray arr;
for (int i = 0; i < size(); i++){
const http_data_ptr& data_ptr = at(i);
QJsonObject obj;
obj[HTTP_DATA_FIELD_KEY] = data_ptr->key();
obj[HTTP_DATA_FIELD_USED] = data_ptr->used();
obj[HTTP_DATA_FIELD_POST_TYPE] = data_ptr->post_type();
obj[HTTP_DATA_FIELD_AUTH] = data_ptr->auth();
obj[HTTP_DATA_FIELD_VALUE_TYPE] = data_ptr->value_type();
obj[HTTP_DATA_FIELD_VALUE] = data_ptr->value();
arr.append(obj);
}
return arr;
}
void http_data_list::append_from_json(const QJsonValue& v)
{
append(from_json(v));
}
http_data_list http_data_list::from_json(const QJsonValue& v)
{
if (!v.isArray()){
return http_data_list();
}
http_data_list list;
QJsonArray arr = v.toArray();
for (int i = 0; i < arr.size(); i++){
http_data_ptr data_ptr(http_data_ptr::create());
QJsonObject obj = arr[i].toObject();
data_ptr->set_key(obj[HTTP_DATA_FIELD_KEY].toString());
data_ptr->set_used(obj[HTTP_DATA_FIELD_USED].toBool());
data_ptr->set_post_type((http_data::post_type_t)obj[HTTP_DATA_FIELD_POST_TYPE].toInt());
data_ptr->set_auth(obj[HTTP_DATA_FIELD_AUTH].toBool());
data_ptr->set_value_type(obj[HTTP_DATA_FIELD_VALUE_TYPE].toString());
data_ptr->set_value(obj[HTTP_DATA_FIELD_VALUE].toString());
list.append(data_ptr);
}
return list;
}
//http_form_data
Q_INVOKABLE http_form_data::http_form_data(QObject *parent /*= 0*/)
:QObject(parent)
{
}
http_form_data::~http_form_data()
{
}
QString http_form_data::name() const
{
return _name;
}
void http_form_data::set_name(const QString& name)
{
_name = name;
}
bool http_form_data::used() const
{
return _used;
}
void http_form_data::set_used(bool used)
{
_used = used;
}
QString http_form_data::content_type() const
{
return _content_type;
}
void http_form_data::set_content_type(const QString& content_type)
{
_content_type = content_type;
}
QString http_form_data::value() const
{
return _value;
}
void http_form_data::set_value(const QString value)
{
_value = value;
}
QVariant http_form_data::data() const
{
return _data;
}
void http_form_data::set_data(const QVariant& data)
{
_data = data;
}
//http_form_data_list
QJsonValue http_form_data_list::to_json()
{
QJsonArray arr;
for (int i = 0; i < size(); i++){
const http_form_data_ptr& data_ptr = at(i);
QJsonObject obj;
obj[HTTP_FORM_DATA_FIELD_NAME] = data_ptr->name();
obj[HTTP_FORM_DATA_FIELD_USED] = data_ptr->used();
obj[HTTP_FORM_DATA_FIELD_CONTENT_TYPE] = data_ptr->content_type();
obj[HTTP_DATA_FIELD_VALUE] = data_ptr->value();
arr.append(obj);
}
return arr;
}
void http_form_data_list::append_from_json(const QJsonValue& v)
{
append(from_json(v));
}
http_form_data_list http_form_data_list::from_json(const QJsonValue& v)
{
if (!v.isArray()){
return http_form_data_list();
}
http_form_data_list list;
QJsonArray arr = v.toArray();
for (int i = 0; i < arr.size(); i++){
http_form_data_ptr data_ptr(http_form_data_ptr::create());
QJsonObject obj = arr[i].toObject();
data_ptr->set_name(obj[HTTP_FORM_DATA_FIELD_NAME].toString());
data_ptr->set_used(obj[HTTP_FORM_DATA_FIELD_USED].toBool());
data_ptr->set_content_type(obj[HTTP_FORM_DATA_FIELD_CONTENT_TYPE].toString());
data_ptr->set_value(obj[HTTP_DATA_FIELD_VALUE].toString());
list.append(data_ptr);
}
return list;
}