-
Notifications
You must be signed in to change notification settings - Fork 15
/
utilfrequest.cpp
executable file
·412 lines (339 loc) · 13.8 KB
/
utilfrequest.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*
*
Copyright (C) 2017-2019 Fábio Bento (fabiobento512)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "utilfrequest.h"
namespace UtilFRequest{
QString getDocumentsFolder(){
QString result = Util::FileSystem::normalizePath(QStandardPaths::locate(QStandardPaths::DocumentsLocation, QString(), QStandardPaths::LocateDirectory));
if(result.endsWith("/")){
result = result.remove(result.size()-1,1);
}
return result;
}
RequestType getRequestTypeByString(const QString ¤tRequestText){
if(currentRequestText == "GET"){
return RequestType::GET_OPTION;
}
else if(currentRequestText == "POST"){
return RequestType::POST_OPTION;
}
else if(currentRequestText == "PUT"){
return RequestType::PUT_OPTION;
}
else if(currentRequestText == "DELETE"){
return RequestType::DELETE_OPTION;
}
else if(currentRequestText == "PATCH"){
return RequestType::PATCH_OPTION;
}
else if(currentRequestText == "HEAD"){
return RequestType::HEAD_OPTION;
}
else if(currentRequestText == "TRACE"){
return RequestType::TRACE_OPTION;
}
else if(currentRequestText == "OPTIONS"){
return RequestType::OPTIONS_OPTION;
}
else{
QString errorMessage = "Request type unknown: '" + currentRequestText + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
QString getRequestTypeString(const RequestType currentRequestType){
switch(currentRequestType){
case UtilFRequest::RequestType::GET_OPTION:
return "GET";
case UtilFRequest::RequestType::POST_OPTION:
return "POST";
case UtilFRequest::RequestType::PUT_OPTION:
return "PUT";
case UtilFRequest::RequestType::DELETE_OPTION:
return "DELETE";
case UtilFRequest::RequestType::PATCH_OPTION:
return "PATCH";
case UtilFRequest::RequestType::HEAD_OPTION:
return "HEAD";
case UtilFRequest::RequestType::TRACE_OPTION:
return "TRACE";
case UtilFRequest::RequestType::OPTIONS_OPTION:
return "OPTIONS";
default:
{
QString errorMessage = "Invalid request type " + QString::number(static_cast<int>(currentRequestType)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
}
bool requestTypeMayHaveBody(RequestType currentRequestType){
bool mayHaveBody = false;
switch(currentRequestType){
case UtilFRequest::RequestType::GET_OPTION:
case UtilFRequest::RequestType::DELETE_OPTION:
case UtilFRequest::RequestType::HEAD_OPTION:
{
mayHaveBody = false;
break;
}
case UtilFRequest::RequestType::POST_OPTION:
case UtilFRequest::RequestType::PUT_OPTION:
case UtilFRequest::RequestType::PATCH_OPTION:
case UtilFRequest::RequestType::OPTIONS_OPTION:
case UtilFRequest::RequestType::TRACE_OPTION:
{
mayHaveBody = true;
break;
}
default:
{
QString errorMessage = "Request type unknown: '" + QString::number(static_cast<int>(currentRequestType)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
return mayHaveBody;
}
QString getDateTimeFormatForFilename(const QDateTime ¤tDateTime){
return currentDateTime.toString("yyyy-MM-dd_hh-mm-ss");
}
FormKeyValueType getFormKeyTypeByString(const QString ¤tFormKeyValueString){
if(currentFormKeyValueString == "Text"){
return FormKeyValueType::TEXT;
}
else if(currentFormKeyValueString == "File"){
return FormKeyValueType::FILE;
}
else{
QString errorMessage = "FormKeyValue type unknown: '" + currentFormKeyValueString + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
QString getFormKeyTypeString(const FormKeyValueType currentFormKeyValueType){
switch(currentFormKeyValueType){
case UtilFRequest::FormKeyValueType::TEXT:
return "Text";
case UtilFRequest::FormKeyValueType::FILE:
return "File";
default:
{
QString errorMessage = "Invalid form key type " + QString::number(static_cast<int>(currentFormKeyValueType)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
}
BodyType getBodyTypeByString(const QString ¤tBodyTypeText){
if(currentBodyTypeText == "raw"){
return BodyType::RAW;
}
else if(currentBodyTypeText == "form-data"){
return BodyType::FORM_DATA;
}
else if(currentBodyTypeText == "x-form-www-urlencoded"){
return BodyType::X_FORM_WWW_URLENCODED;
}
else{
QString errorMessage = "BodyType type unknown: '" + currentBodyTypeText + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
QString getBodyTypeString(const BodyType currentBodyType){
switch(currentBodyType){
case UtilFRequest::BodyType::RAW:
{
return "raw";
}
case UtilFRequest::BodyType::FORM_DATA:
{
return "form-data";
}
case UtilFRequest::BodyType::X_FORM_WWW_URLENCODED:
{
return "x-form-www-urlencoded";
}
default:
{
QString errorMessage = "Invalid body type " + QString::number(static_cast<int>(currentBodyType)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
}
IdentCharacter getIdentCharacterByString(const QString ¤tIdentCharacterText){
if(currentIdentCharacterText == "Space"){
return IdentCharacter::SPACE;
}
else if(currentIdentCharacterText == "Tab"){
return IdentCharacter::TAB;
}
else{
QString errorMessage = "Ident character unknown: '" + currentIdentCharacterText + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
QString getIdentCharacterString(const IdentCharacter currentIdentCharacter){
switch(currentIdentCharacter){
case IdentCharacter::SPACE:
return "Space";
case IdentCharacter::TAB:
return "Tab";
default:
{
QString errorMessage = "Invalid ident character " + QString::number(static_cast<int>(currentIdentCharacter)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
}
void addRequestFormBodyRow(QTableWidget * const myTable, const QString &key, const QString &value, const UtilFRequest::FormKeyValueType type){
Util::TableWidget::addRow(myTable, QStringList() << key << value << UtilFRequest::getFormKeyTypeString(type));
// Set type as not editable
int tableSize = myTable->rowCount();
QTableWidgetItem* const addedRowTypeItem = myTable->item(tableSize-1, 2);
addedRowTypeItem->setFlags(addedRowTypeItem->flags() & (~Qt::ItemIsEditable));
// If it is a file, change the row color to blue in order to differentiate
if(type == UtilFRequest::FormKeyValueType::FILE){
myTable->item(tableSize-1, 0)->setForeground(Qt::blue);
myTable->item(tableSize-1, 1)->setForeground(Qt::blue);
addedRowTypeItem->setForeground(Qt::blue);
}
}
// Return original content in case of error
QString getStringFormattedForSerializationType(const QString &content, const SerializationFormatType serializationType){
switch(serializationType){
case UtilFRequest::SerializationFormatType::JSON:
{
QJsonParseError parseError;
QJsonDocument auxJsonDoc = QJsonDocument::fromJson(content.toUtf8(), &parseError);
if(parseError.error != QJsonParseError::NoError){
QString errorMessage = "An error occurred while formatting the content as Json: " + content.left(10);
Util::Dialogs::showError(errorMessage);
LOG_ERROR << errorMessage;
return content;
}
return auxJsonDoc.toJson();
}
case UtilFRequest::SerializationFormatType::XML:
{
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_string(QSTR_TO_TEMPORARY_CSTR(content));
if(result.status != pugi::xml_parse_status::status_ok){
QString errorMessage = "An error occurred while formatting the content as XML: " + content.left(10);
Util::Dialogs::showError(errorMessage);
LOG_ERROR << errorMessage;
return content;
}
std::stringstream xmlFormattedText;
doc.save(xmlFormattedText);
return QString::fromStdString(xmlFormattedText.str());
}
case UtilFRequest::SerializationFormatType::UNKNOWN:
{
return content;
}
default:
{
QString errorMessage = "Invalid currRequestFormatType " + QString::number(static_cast<int>(serializationType)) + "'. Program can't proceed.";
Util::Dialogs::showError(errorMessage);
LOG_FATAL << errorMessage;
exit(1);
}
}
}
SerializationFormatType getSerializationFormatTypeForString(const QString &content){
// Try to parse the response as json, if it fails try xml, otherwise return unknown
QJsonParseError parseError;
QJsonDocument auxJsonDoc = QJsonDocument::fromJson(content.toUtf8(), &parseError);
if(parseError.error == QJsonParseError::NoError){
return UtilFRequest::SerializationFormatType::JSON;
}
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_string(QSTR_TO_TEMPORARY_CSTR(content));
if(result.status == pugi::xml_parse_status::status_ok){
return UtilFRequest::SerializationFormatType::XML;
}
return UtilFRequest::SerializationFormatType::UNKNOWN;
}
QByteArray simpleStringObfuscationDeobfuscation(const QString& ofuscationSalt, const QString &input){
QByteArray saltByteArray = ofuscationSalt.toUtf8();
QByteArray inputByteArray = input.toUtf8();
// Using unsigned types as they have a defined truncation in iso c++:
// https://stackoverflow.com/a/34886065
// (so the static_cast<unsigned char> below works the same in all different systems)
uint32_t saltByteArraySize = static_cast<uint32_t>(saltByteArray.size());
uint32_t inputByteArraySize = static_cast<uint32_t>(inputByteArray.size());
for(uint32_t i=0; i< inputByteArraySize; i++){
inputByteArray[i] = inputByteArray[i] ^ (i < saltByteArraySize ? saltByteArray[i] : static_cast<unsigned char>(i));
}
return inputByteArray;
}
QString replaceFRequestAuthenticationPlaceholders(const QString &textToReplace, const QString &username, const QString &password){
return QString(textToReplace).
replace(GlobalVars::FRequestAuthenticationPlaceholderUsername, username).
replace(GlobalVars::FRequestAuthenticationPlaceholderPassword, password);
}
void setGlobalHeaderTableWidgetRow(QTableWidget *myTable, const int rowNumber){
for(int i=0; i<myTable->columnCount(); i++){
QTableWidgetItem * const currentItem = myTable->item(rowNumber, i);
currentItem->setFlags(currentItem->flags() & ~Qt::ItemIsEditable);
currentItem->setBackground(getTableWidgetRowDisabledBackStyle());
currentItem->setForeground(getTableWidgetRowDisabledTextStyle());
// Add tooltip to make clear that it is a global header
currentItem->setToolTip("[global header] " + currentItem->toolTip());
}
}
//Reset a item to its initial style
void resetGlobalTableWidgetRow(QTableWidget *myTable, const int rowNumber){
for(int i=0; i<myTable->columnCount(); i++){
QTableWidgetItem * const currentItem = myTable->item(rowNumber, i);
currentItem->setFlags(currentItem->flags() & Qt::ItemIsEditable);
if((currentItem->row()+1)%2==0){ //if the row number is par it use the alternate color scheme
currentItem->setBackground(QPalette().brush(QPalette::Normal,QPalette::AlternateBase));
}
else{
currentItem->setBackground(QPalette().brush(QPalette::Normal,QPalette::Base));
}
currentItem->setForeground(QPalette().brush(QPalette::Normal,QPalette::WindowText));
}
}
bool isGlobalHeaderTableWidgetRow(QTableWidget *myTable, const int rowNumber){
if(myTable->columnCount() <= 0){
return true;
}
const QTableWidgetItem * const currItem = myTable->item(rowNumber, 0);
return currItem->background() == getTableWidgetRowDisabledBackStyle() &&
currItem->foreground() == getTableWidgetRowDisabledTextStyle();
}
QBrush getTableWidgetRowDisabledBackStyle(){
return QTableWidget().palette().brush(QPalette::Disabled,QPalette::Base);
}
QBrush getTableWidgetRowDisabledTextStyle(){
return QTableWidget().palette().brush(QPalette::Disabled,QPalette::WindowText);
}
}