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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
|
#define _CRT_SECURE_NO_WARNINGS
#include "utilities.h"
#include <iostream>
#include <cstdio>
#include <stdlib.h>
#include <cstdlib>
#include <sstream>
#include "WAException.h"
#include <stdarg.h>
#include <time.h>
#include <fstream>
#include <iomanip>
namespace Utilities{
const static char digits[] = {
'0' , '1' , '2' , '3' , '4' , '5' ,
'6' , '7' , '8' , '9' , 'a' , 'b' ,
'c' , 'd' , 'e' , 'f' , 'g' , 'h' ,
'i' , 'j' , 'k' , 'l' , 'm' , 'n' ,
'o' , 'p' , 'q' , 'r' , 's' , 't' ,
'u' , 'v' , 'w' , 'x' , 'y' , 'z'
};
void configureLogging(const char* ident) {
#ifndef _LOGWIN32
openlog(ident, 0, LOG_USER);
#endif
}
void closeLog() {
#ifndef _LOGWIN32
closelog();
#endif
}
std::string getCountryCode(){
return "34";
}
std::string reverseString(const std::string& str)
{
return std::string(str.rbegin(), str.rend());
}
std::string itoa(int value, unsigned int base) {
const char digitMap[] = "0123456789abcdef";
std::string buf;
// Guard:
if (base == 0 || base > 16) {
// Error: may add more trace/log output here
return buf;
}
// Take care of negative int:
std::string sign;
int _value = value;
// Check for case when input is zero:
if (_value == 0) return "0";
if (value < 0) {
_value = -value;
sign = "-";
}
// Translating number to string with base:
for (int i = 30; _value && i ; --i) {
buf = digitMap[ _value % base ] + buf;
_value /= base;
}
return sign.append(buf);
}
std::string processIdentity(const std::string& id){
std::string buffer_str = reverseString(id);
unsigned char digest[16];
md5_string(buffer_str, digest);
buffer_str.clear();
for(int i =0; i < 16; i++){
int tmp = digest[i]+128;
int f = tmp & 0xff;
buffer_str = buffer_str.append(itoa(f,16));
}
return buffer_str;
}
void debug(const std::string& msg) {
#ifdef _LOGWIN32
cout << "DEBUG: " << msg << endl;
#else
syslog(LOG_ERR, msg.c_str());
#endif
}
std::string str(int64_t i, int radix ) {
if (radix < 2 || radix > 36)
throw WAException("radix must be in 2..36");
char buf[65];
int charPos = 64;
bool negative = (i < 0);
if (!negative) {
i = -i;
}
while (i <= -radix) {
buf[charPos--] = digits[(int)(-(i % radix))];
i = i / radix;
}
buf[charPos] = digits[(int)(-i)];
if (negative) {
buf[--charPos] = '-';
}
std::string aux(buf, 65);
return std::string(aux, charPos, (65 - charPos));
}
int64_t randLong() {
std::srand((unsigned)time(NULL));
int64_t r = (int64_t) ((char) (std::rand() % 256));
for (int i = 0; i < 7 ; i++)
r = (r << 8) + ((char) (std::rand() % 256));
return r;
}
int64_t absLong(int64_t num) {
return (num >= 0? num: -num);
}
std::string intToStr(int i) {
std::stringstream convert;
convert << i;
return convert.str();
}
std::string doubleToStr(double d) {
std::stringstream convert;
convert << d;
return convert.str();
}
time_t parseBBDate(const string& s) {
_LOGDATA("parse DATE %s", s.c_str());
if (s.length() < 17)
return time(NULL);
struct tm timeinfo;
timeinfo.tm_year = atoi(s.substr(0, 4).c_str()) - 1900;
timeinfo.tm_mon = atoi(s.substr(4, 2).c_str()) - 1;
timeinfo.tm_mday = atoi(s.substr(6,2).c_str());
timeinfo.tm_hour = atoi(s.substr(9,2).c_str());
timeinfo.tm_min = atoi(s.substr(12,2).c_str());
timeinfo.tm_sec = atoi(s.substr(15,2).c_str());
//return timegm(&timeinfo);
return mktime(&timeinfo);
}
void logData(const char *format, ...) {
va_list args;
va_start(args, format);
#ifdef _LOGWIN32
std::string formatLine = std::string(format).append("\n");
vprintf(formatLine.c_str(), args); fflush(stdout);
#else
vsyslog(LOG_ERR, format, args);
#endif
}
long long parseLongLong(const std::string& str) {
std::stringstream sstr(str);
long long val;
sstr >> val;
return val;
}
string bytesToHex(unsigned char* bytes, int length) {
string ret(length*2, ' ');
string::iterator p = ret.begin();
int i = 0;
for (int c = 0; c < length; c++) {
int ub = bytes[c];
*p++ = forDigit(ub >> 4);
*p++ = forDigit(ub % 16);
}
return ret;
}
unsigned char forDigit(int b) {
if (b < 10)
return (unsigned char) (48 + b);
return (unsigned char) (97 + b - 10);
}
bool saveStringToFile(const string& data, const string& filePath) {
std::ofstream out(filePath.c_str());
if (out.fail()) return false;
out << data;
if (out.fail()) return false;
out.close();
if (out.fail()) return false;
return true;
}
bool saveBytesToFile(const std::vector<unsigned char>& data, const string& filePath) {
std::fstream out(filePath.c_str(), ios::out | ios::binary);
if (out.fail()) return false;
out.write((const char*) &data[0], data.size());
if (out.fail()) return false;
out.close();
if (out.fail()) return false;
return true;
}
bool saveBytesToFile(const string& data, const string& filePath) {
std::fstream out(filePath.c_str(), ios::out | ios::binary);
if (out.fail()) return false;
out.write(data.c_str(), data.length());
if (out.fail()) return false;
out.close();
if (out.fail()) return false;
return true;
}
vector<unsigned char>* loadFileToBytes(const string& path) {
vector<unsigned char>* bytes = NULL;
std::ifstream in(path.c_str(), ios::in | ios::binary | ios::ate);
size_t size = in.tellg();
if (in.fail()) return NULL;
in.seekg(0, ios::beg);
char *buffer = new char[size];
in.read(buffer, size);
bytes = new vector<unsigned char>(buffer, buffer + size);
delete [] buffer;
in.close();
if (in.fail()) return NULL;
return bytes;
}
bool fileExists(const std::string& path) {
std::ifstream in(path.c_str());
return in != NULL;
}
string removeWaDomainFromJid(const string& jid) {
string result = jid;
size_t index = jid.find("@s.whatsapp.net");
if (index != string::npos) {
result.replace(index, 15, "");
return result;
}
index = jid.find("@g.us");
if (index != string::npos) {
result.replace(index, 5, "");
return result;
}
return jid;
}
string getNameFromPath(const std::string& path) {
size_t i = path.rfind('/');
if (i == string::npos)
i = 0;
else
i = i + 1;
return path.substr(i);
}
vector<unsigned char>* getChallengeData(const std::string& challengeFile) {
return loadFileToBytes(challengeFile);
}
bool saveChallengeData(const std::vector<unsigned char>& data, const std::string& challengeFile) {
return saveBytesToFile(data, challengeFile);
}
std::string utf8_to_utf16(const std::string& utf8)
{
std::vector<unsigned long> unicode;
size_t i = 0;
while (i < utf8.size())
{
unsigned long uni;
size_t todo;
bool error = false;
unsigned char ch = utf8[i++];
if (ch <= 0x7F)
{
uni = ch;
todo = 0;
}
else if (ch <= 0xBF)
{
throw std::logic_error("not a UTF-8 string");
}
else if (ch <= 0xDF)
{
uni = ch&0x1F;
todo = 1;
}
else if (ch <= 0xEF)
{
uni = ch&0x0F;
todo = 2;
}
else if (ch <= 0xF7)
{
uni = ch&0x07;
todo = 3;
}
else
{
throw std::logic_error("not a UTF-8 string");
}
for (size_t j = 0; j < todo; ++j)
{
if (i == utf8.size())
throw std::logic_error("not a UTF-8 string");
unsigned char ch = utf8[i++];
if (ch < 0x80 || ch > 0xBF)
throw std::logic_error("not a UTF-8 string");
uni <<= 6;
uni += ch & 0x3F;
}
if (uni >= 0xD800 && uni <= 0xDFFF)
throw std::logic_error("not a UTF-8 string");
if (uni > 0x10FFFF)
throw std::logic_error("not a UTF-8 string");
unicode.push_back(uni);
}
std::string utf16;
for (size_t i = 0; i < unicode.size(); ++i)
{
unsigned long uni = unicode[i];
if (uni <= 0x7F) {
utf16 += (char) uni;
}
else
if (uni <= 0xFFFF)
{
stringstream value;
value << std::setw(4) << std::setfill('0') << Utilities::itoa(uni, 16).c_str();
utf16 += "\\u" + value.str();
}
else
{
stringstream value1, value2;
uni -= 0x10000;
value1 << std::setw(4) << std::setfill('0') << Utilities::itoa(((uni >> 10) + 0xD800), 16);
utf16 += "\\u" + value1.str();
value2 << std::setw(4) << std::setfill('0') << Utilities::itoa(((uni & 0x3FF) + 0xDC00), 16);
utf16 += "\\u" + value2.str();
}
}
return utf16;
}
std::string string_format(const char* fmt, va_list ap)
{
int size = 100;
std::string str;
while (1) {
str.resize(size);
//va_start(ap, fmt);
int n = vsnprintf((char *)str.c_str(), size, fmt, ap);
//va_end(ap);
if (n > -1 && n < size) {
str.resize(n);
return str;
}
if (n > -1)
size = n + 1;
else
size *= 2;
}
return str;
}
std::string string_format(const std::string fmt, va_list ap)
{
return string_format(fmt.c_str(), ap);
/*
int size = 100;
std::string str;
//va_list ap;
while (1) {
str.resize(size);
//va_start(ap, fmt);
int n = vsnprintf((char *)str.c_str(), size, fmt.c_str(), ap);
//va_end(ap);
if (n > -1 && n < size) {
str.resize(n);
return str;
}
if (n > -1)
size = n + 1;
else
size *= 2;
}
return str;
*/
}
std::string string_format(const std::string fmt, ...)
{
va_list ap;
va_start(ap, fmt);
std::string ret = string_format(fmt, ap);
va_end(ap);
return ret;
}
}
|