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 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
|
/*
Copyright (C) 2019-2025 Selwin van Dijk
This file is part of signalbackup-tools.
signalbackup-tools 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.
signalbackup-tools 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 signalbackup-tools. If not, see <https://www.gnu.org/licenses/>.
*/
/*
NOTE: THESE ARE CUSTOM FUNCTIONS AND WILL BE REMOVED WITHOUT NOTIFICATION IN THE NEAR FUTURE
*/
#include "signalbackup.ih"
// #include <sstream>
// #include "../sqlcipherdecryptor/sqlcipherdecryptor.h"
/* move messages froma given thread to the note-to-self thread, adjusting recipienst */
bool SignalBackup::arc(long long int tid, std::string const &selfphone)
{
// check and warn about selfid & note-to-self thread
long long int note_to_self_thread_id = -1;
d_selfid = selfphone.empty() ? scanSelf() : d_database.getSingleResultAs<long long int>("SELECT _id FROM recipient WHERE " + d_recipient_e164 + " = ?", selfphone, -1);
if (d_selfid == -1)
{
if (!selfphone.empty())
Logger::error("Failed to determine id of 'self'.");
else // if (selfphone.empty())
Logger::error("Failed to determine Note-to-self thread. Consider passing `--setselfid \"[phone]\"' to set it manually");
return false;
}
else
note_to_self_thread_id = d_database.getSingleResultAs<long long int>("SELECT _id FROM thread WHERE " + d_thread_recipient_id + " = ?", d_selfid, -1);
Logger::message("Using self-id: ", d_selfid, ", with thread ", note_to_self_thread_id);
Logger::message("Initially in note-to-self-thread:");
d_database.prettyPrint(d_truncate, "SELECT DISTINCT thread_id, from_recipient_id, to_recipient_id, COUNT(*) AS nmessages FROM message "
"WHERE thread_id = ? GROUP BY thread_id, from_recipient_id, to_recipient_id", note_to_self_thread_id);
Logger::message("Initially in thread ", tid, ":");
d_database.prettyPrint(d_truncate, "SELECT DISTINCT thread_id, from_recipient_id, to_recipient_id, COUNT(*) AS nmessages FROM message "
"WHERE thread_id = ? GROUP BY thread_id, from_recipient_id, to_recipient_id", tid);
// check if any of the date_sents in tid match any of those in nts-thread
long long int doublemsgs = d_database.getSingleResultAs<long long int>("SELECT COUNT(*) FROM message WHERE thread_id = ? AND date_sent IN (SELECT date_sent FROM message WHERE thread_id = ?)", {tid, note_to_self_thread_id}, -1);
if (doublemsgs == -1)
Logger::warning("Failed to check timestamps shared between threads.");
else if (doublemsgs > 0)
Logger::warning("Found duplicate timestamps between threads. Expecting at least ", doublemsgs, " will fail to import...");
else // doublemsg == 0
Logger::message("Found no duplicate timestamps between thread.");
long long int non_outgoing_messages = d_database.getSingleResultAs<long long int>("SELECT COUNT(*) FROM message WHERE thread_id = ? AND (type & 0x1f) != 23", tid, 1);
if (non_outgoing_messages > 0)
{
Logger::warning("Found ", non_outgoing_messages, " messages in thread ", tid, " that have a type not normally found in note-to-self");
Logger::warning_indent("threads (for example, incoming message, calls, or profile changes). Summary of");
Logger::warning_indent("message types found:");
d_database.prettyPrint(d_truncate, "SELECT DISTINCT type, (type & 0x1f) FROM message WHERE thread_id = ? ORDER BY (type & 0x1f)", tid);
}
SqliteDB::QueryResults message_ids;
if (!d_database.exec("SELECT _id FROM message WHERE thread_id = ?", tid, &message_ids))
return false;
Logger::message("Attempting move of ", message_ids.rows(), " messages...");
long long int moved = 0;
for (unsigned int i = 0; i < message_ids.rows(); ++i)
{
//Logger::message(message_ids.valueAsInt(i, "_id", -1));
if (!d_database.exec("UPDATE message SET from_recipient_id = ?, to_recipient_id = ?, thread_id = ? WHERE _id = ?", {d_selfid, d_selfid, note_to_self_thread_id, message_ids.value(i, "_id")}))
{
Logger::warning("Failed to move message id: ", message_ids.valueAsInt(i, "_id", -1));
Logger::warning_indent("Some info on this message:");
d_database.printLineMode("SELECT _id, date_sent, date_received, date_server, from_recipient_id, to_recipient_id, type, read, m_type, receipt_timestamp, has_delivery_receipt, has_read_receipt, viewed, mismatched_identities, network_failures, expires_in, expire_started, notified, quote_id, quote_author, quote_missing, quote_body, quote_mentions, quote_type, shared_contacts, unidentified, link_previews ,view_once, reactions_unread, reactions_last_seen, remote_deleted, mentions_self, notified_timestamp, server_guid, message_ranges, story_type, parent_story_id, message_extras, latest_revision_id, original_message_id, revision_number FROM message WHERE _id = ?", message_ids.value(i, "_id"));
}
else
{
++moved;
}
}
Logger::message("Moved ", moved, " messages to note-to-self thread");
// if old thread empty -> mark inactive
if (d_database.getSingleResultAs<long long int>("SELECT COUNT(*) FROM message WHERE thread_id = ?", tid, -1) == 0)
{
Logger::message("Old thread is empty, marking as inactive");
if (!d_database.exec("UPDATE thread SET meaningful_messages = 0, active = 0 WHERE _id = ?", tid))
Logger::error("Failed to update old thread status");
}
// mark new thread as active
if (moved)
if (!d_database.exec("UPDATE thread SET meaningful_messages = 1, active = 1 WHERE _id = ?", note_to_self_thread_id))
Logger::error("Failed to update note-to-self thread");
Logger::message("Finally in note-to-self-thread:");
d_database.prettyPrint(d_truncate, "SELECT DISTINCT thread_id, from_recipient_id, to_recipient_id, COUNT(*) AS nmessages FROM message "
"WHERE thread_id = ? GROUP BY thread_id, from_recipient_id, to_recipient_id", note_to_self_thread_id);
Logger::message("Finally in thread ", tid, ":");
d_database.prettyPrint(d_truncate, "SELECT DISTINCT thread_id, from_recipient_id, to_recipient_id, COUNT(*) AS nmessages FROM message "
"WHERE thread_id = ? GROUP BY thread_id, from_recipient_id, to_recipient_id", tid);
return true;
}
/* alter a version 214 database so it is compatiible enough with 215 to be imported into a 215 db as source */
bool SignalBackup::custom_hugogithubs()
{
if (d_databaseversion != 214)
{
Logger::error("Database version: ", d_databaseversion, " (needs to be 214)");
return false;
}
// alter part table
if (!d_database.exec("ALTER TABLE part RENAME COLUMN mid TO message_id") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN ct TO content_type") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN cd TO remote_key") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN cl TO remote_location") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN digest TO remote_digest") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN incremental_mac_digest TO remote_incremental_digest") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN incremental_mac_chunk_size TO remote_incremental_digest_chunk_size") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN pending_push TO transfer_state") ||
!d_database.exec("ALTER TABLE part RENAME COLUMN _data TO data_file") ||
!d_database.exec("ALTER TABLE part DROP COLUMN unique_id") ||
!d_database.exec("ALTER TABLE part RENAME TO attachment"))
{
Logger::error("Altering part table");
return false;
}
d_part_table = "attachment";
d_part_mid = "message_id"; // dbv 215
d_part_ct = "content_type"; // dbv 215
d_part_pending = "transfer_state"; // dbv 215
d_part_cd = "remote_key"; // dbv 215
d_part_cl = "remote_location"; // dbv 215
// remove unqiue ids from AttachmentFrames
std::map<std::pair<uint64_t, int64_t>, DeepCopyingUniquePtr<AttachmentFrame>> d_new_attachments;
for (auto const &a : d_attachments)
{
AttachmentFrame const *af = a.second.get();
// std::cout << "OLD FRAME:" << std::endl;
// std::cout << a.first.first << " " << a.first.second << std::endl;
// af->printInfo();
std::istringstream old_attachment_frame(af->getHumanData());
std::vector<std::string> new_attachment_frame_strings;
std::string line;
while (std::getline(old_attachment_frame, line))
{
if (STRING_STARTS_WITH(line, "ATTACHMENTID")) // = uniqueid
continue;
new_attachment_frame_strings.emplace_back(line);
}
uint64_t rowid = a.first.first;
DeepCopyingUniquePtr<AttachmentFrame> new_attachment_frame;
// new_attachment_frame->printInfo();
if (!setFrameFromStrings(&new_attachment_frame, new_attachment_frame_strings))
{
Logger::error("Failed to create new attachmentframe");
return false;
}
// new_attachment_frame->setLazyData(af->iv(), af->iv_size(),
// af->mackey(), af->mackey_size(),
// af->cipherkey(), af->cipherkey_size(),
// af->length(), af->filename(), af->filepos());
new_attachment_frame->setReader(af->reader()->clone()); // UNTESTED!
d_new_attachments.emplace(std::make_pair(rowid, -1), new_attachment_frame.release());
// auto const &rit = d_new_attachments.rbegin();
// std::cout << rit->first.first << " " << rit->first.second << std::endl;
// rit->second->printInfo();
}
d_attachments = d_new_attachments;
// adjust DatabaseVersionFrame
DeepCopyingUniquePtr<DatabaseVersionFrame> d_new_dbvframe;
if (!setFrameFromStrings(&d_new_dbvframe, std::vector<std::string>{"VERSION:uint32:215"}))
{
Logger::error("Failed to create new databaseversionframe");
return false;
}
d_databaseversionframe.reset(d_new_dbvframe.release());
//d_databaseversionframe->printInfo();
Logger::message(Logger::Control::BOLD, "BACKUP UPDATED TO SEMI-215. IT SHOULD ONLY BE USED AS A SOURCE FOR IMPORTING INTO A v215 BACKUP!", Logger::Control::NORMAL);
return true;
}
// bool SignalBackup::carowit(std::string const &sourcefile, std::string const &sourcepw) const
// {
// SignalBackup source(sourcefile, sourcepw, false, true, false);
// if (!source.ok())
// {
// std::cout << "Failed to open source" << std::endl;
// return false;
// }
// SqliteDB::QueryResults r;
// source.d_database.exec("SELECT _id, uuid, phone, group_id, COALESCE(uuid, phone, group_id) AS coalesce FROM recipient "
// "WHERE _id IS (SELECT " + source.d_thread_recipient_id + " FROM thread WHERE _id IS ?)", 31, &r);
// r.prettyPrint();
// d_database.prettyPrint("SELECT _id, uuid, phone, group_id, COALESCE(uuid, phone, group_id) AS coalesce FROM recipient "
// "WHERE phone IS ?", r.value(0, "phone"));
// return true;
// }
// bool SignalBackup::hhenkel(std::string const &signaldesktoplocation)
// {
// /*
// DEPRECATED
// */
// using namespace std::string_literals;
// if (d_databaseversion >= 168)
// return false;
// // args
// // open signal desktop database
// SqlCipherDecryptor db(signaldesktoplocation, signaldesktoplocation + "/sql", 4 /* desktop sqlcipher version */);
// if (!db.ok())
// {
// std::cout << "Error reading signal desktop database" << std::endl;
// return false;
// }
// auto [data, size] = db.data();
// std::pair<unsigned char *, uint64_t> tmp = std::make_pair(data, size);
// SqliteDB desktopdb(&tmp);
// //SqliteDB::QueryResults r;
// //desktopdb.exec("SELECT hex(groupid) FROM conversations", &r);
// //r.prettyPrint();
// // all threads in messages
// SqliteDB::QueryResults list_of_threads;
// d_database.exec("SELECT DISTINCT " + d_mms_table + ".thread_id FROM " + d_mms_table + (d_database.containsTable("sms") ? " UNION SELECT DISTINCT sms.thread_id FROM sms" : ""), &list_of_threads);
// list_of_threads.prettyPrint();
// std::cout << std::endl;
// // for each thread, find a corresponding conversation in desktop-db
// std::vector<std::tuple<long long int, std::string, std::string>> matches; // thread_id, recipient_id/address, -> desktop.converationId
// for (long long int i = 0; i < static_cast<long long int>(list_of_threads.rows()); ++i)
// {
// SqliteDB::QueryResults message_data;
// d_database.exec("SELECT body," + d_mms_date_sent + "," + d_mms_recipient_id + " FROM " + d_mms_table + " WHERE thread_id = ?",
// list_of_threads.value(i, 0), &message_data);
// //message_data.prettyPrint();
// bool matched = false;
// for (unsigned int j = 0; j < message_data.rows(); ++j)
// {
// SqliteDB::QueryResults r2;
// desktopdb.exec("SELECT conversationId FROM messages WHERE sent_at == ? AND body == ?", {message_data.value(j, d_mms_date_sent), message_data.value(j, "body")}, &r2);
// if (r2.rows() == 1)
// {
// matched = true;
// matches.emplace_back(std::make_tuple(list_of_threads.getValueAs<long long int>(i, 0), message_data.valueAsString(j, d_mms_recipient_id), r2.getValueAs<std::string>(0, "conversationId")));
// }
// if (matched)
// break;
// }
// if (!matched)
// {
// d_database.exec("SELECT body,date_sent," + d_sms_recipient_id + " FROM sms WHERE thread_id = ?",
// list_of_threads.value(i, 0), &message_data);
// //message_data.prettyPrint();
// for (unsigned int j = 0; j < static_cast<long long int>(message_data.rows()); ++j)
// {
// SqliteDB::QueryResults r2;
// desktopdb.exec("SELECT conversationId FROM messages WHERE sent_at == ? AND body == ?", {message_data.value(j, "date_sent"), message_data.value(j, "body")}, &r2);
// if (r2.rows() == 1)
// {
// matched = true;
// matches.emplace_back(std::make_tuple(list_of_threads.getValueAs<long long int>(i, 0), message_data.valueAsString(j, d_sms_recipient_id),
// r2.getValueAs<std::string>(0, "conversationId")));
// }
// if (matched)
// break;
// }
// }
// if (!matched)
// {
// std::cout << " - Failed to match thread " << list_of_threads.valueAsString(i, 0) << " to any conversation in Signal Desktop database" << std::endl;
// std::cout << " Last 10 messages from this thread:" << std::endl;
// // todo
// std::string q =
// "SELECT "
// "sms." + d_sms_date_received + " AS union_date, "
// "sms.date_sent AS union_display_date, "
// "sms.type AS union_type, "
// "sms.body AS union_body "
// "FROM sms WHERE " + list_of_threads.valueAsString(i, 0) + " = sms.thread_id "
// "UNION "
// "SELECT " +
// d_mms_table + ".date_received AS union_date, " + // not sure for outgoing
// d_mms_table + "." + d_mms_date_sent + " AS union_display_date, " +
// d_mms_table + "." + d_mms_type + " AS union_type, " +
// d_mms_table + ".body AS union_body "
// "FROM " + d_mms_table + " WHERE " + list_of_threads.valueAsString(i, 0) + " = " + d_mms_table + ".thread_id "
// "ORDER BY union_date DESC, union_display_date ASC LIMIT 10";
// d_database.prettyPrint(q);
// std::cout << std::endl;
// }
// }
// /*
// mms: desktop.messages.sent_at == android.mms.date
// sms: desktop.messages.sent_at == android.sms.date_sent
// */
// // desktop messages:
// // SELECT id,unread,expires_at,sent_at,schemaVersion,conversationId,received_at,source,sourceDevice,hasAttachments,hasFileAttachments,hasVisualMediaAttachments,expireTimer,expirationStartTimestamp,type,body,messageTimer,messageTimerStart,messageTimerExpiresAt,isErased,isViewOnce,sourceUuid FROM messages WHERE body == "Test terug";
// // id|unread|expires_at|sent_at|schemaVersion|conversationId|received_at|source|sourceDevice|hasAttachments|hasFileAttachments|hasVisualMediaAttachments|expireTimer|expirationStartTimestamp|type|body|messageTimer|messageTimerStart|messageTimerExpiresAt|isErased|isViewOnce|sourceUuid
// // 13c39ffe-67e2-43a5-911b-9537e485b75d|||1597327208579|10|82184df5-c89b-4c5c-a0c6-b7c9449b3818|1598179687083|31683616099|1|0|||||incoming|Test terug|||||0|6b7e6b80-c3d9-4701-8f36-bf5e22ebd62c
// d_database.exec("DELETE FROM constraint_spec");
// d_database.exec("DELETE FROM megaphone");
// d_database.exec("DELETE FROM dependency_spec");
// d_database.exec("DELETE FROM push");
// d_database.exec("DELETE FROM drafts");
// d_database.exec("DELETE FROM " + d_mms_table + "_fts");
// d_database.exec("DELETE FROM recipient");
// d_database.exec("DELETE FROM group_receipts");
// d_database.exec("DELETE FROM " + d_mms_table + "_fts_config");
// d_database.exec("DELETE FROM sessions");
// d_database.exec("DELETE FROM sticker");
// d_database.exec("DELETE FROM groups");
// d_database.exec("DELETE FROM " + d_mms_table + "_fts_data");
// d_database.exec("DELETE FROM signed_prekeys");
// d_database.exec("DELETE FROM storage_key");
// d_database.exec("DELETE FROM identities");
// d_database.exec("DELETE FROM " + d_mms_table + "_fts_docsize");
// d_database.exec("DELETE FROM thread");
// d_database.exec("DELETE FROM job_spec");
// d_database.exec("DELETE FROM " + d_mms_table + "_fts_idx");
// d_database.exec("DELETE FROM sms_fts");
// d_database.exec("DELETE FROM key_value");
// d_database.exec("DELETE FROM one_time_prekeys");
// if (d_database.containsTable("sms"))
// {
// d_database.exec("DELETE FROM sms_fts_config");
// d_database.exec("DELETE FROM sms_fts_data");
// d_database.exec("DELETE FROM sms_fts_docsize");
// d_database.exec("DELETE FROM sms_fts_idx");
// }
// /*
// recipient._id := [s|m]ms.address
// thread._id := [s|m]ms.thread_id
// thread.recipient_ids/thread.thread_recipient_id := [s|m]ms.address
// recipient.uuid := conversations.uuid
// .phone := conversations.e164
// .group_id := decode(conversations.groupId)
// .system_display_name := IF (!group) conversations.name ELSE NULL
// .signal_profile_name := conversations.profileName
// .profile_family_name := .profileFamilyName
// .progile_joined_name := .profileFullName
// IF GROUP
// group.group_id := recipient.group_id ( == conversations.groupId)
// .title := conversations.name
// .members := CONVERT(conversations.members FROM conversation.id -> recipient._id)
// .recipient_ids := [s|m]ms.recipient_ids
// */
// // SKIP GROUPS FOR SECOND PASS
// for (unsigned int t = 0; t < matches.size(); ++t)
// {
// SqliteDB::QueryResults r;
// desktopdb.exec("SELECT id,uuid,e164,groupId,type,name,profileName,profileFamilyName,profileFullName FROM conversations WHERE id == ?", std::get<2>(matches[t]), &r);
// if (r.valueAsString(0, "type") == "group")
// continue;
// std::cout << " - Got match for thread " << std::get<0>(matches[t]) << std::endl;
// r.prettyPrint();
// std::cout << std::endl;
// // add entry in 'thread' database
// //std::cout << "INSERTING : " << std::get<0>(matches[t]) << " " << std::get<1>(matches[t]) << std::endl;
// d_database.exec("INSERT INTO thread (_id, " + d_thread_recipient_id + ") VALUES (?, ?)", {std::get<0>(matches[t]), std::get<1>(matches[t])});
// // add entry in 'recipient' database
// d_database.exec("INSERT INTO recipient (_id, uuid, phone, group_id, system_display_name, signal_profile_name, profile_family_name, profile_joined_name) "
// "VALUES (?, ?, ?, ?, ?, ?, ?, ?)",
// {std::get<1>(matches[t]), r.value(0, "uuid"), r.value(0, "e164"), r.value(0, "groupId"),
// r.value(0, "name"), r.value(0, "profileName"), r.value(0, "profileFamilyName"), r.value(0, "profileFullName")});
// }
// // GROUPS
// for (unsigned int t = 0; t < matches.size(); ++t)
// {
// SqliteDB::QueryResults r;
// desktopdb.exec("SELECT id,uuid,e164,groupId,type,name,profileName,profileFamilyName,profileFullName FROM conversations WHERE id == ?", std::get<2>(matches[t]), &r);
// if (r.valueAsString(0, "type") != "group")
// continue;
// std::cout << " - Got match for thread " << std::get<0>(matches[t]) << std::endl;
// r.prettyPrint();
// std::cout << std::endl;
// // NOTE !!!!
// // recipient_id (address) COULD BE WRONG! IT ONLY REPRESENTS THE GROUPS ID ON OUTGOING MESSAGES! (& outgoing message are always in mms table (nothing in sms))
// // on incoming message it is the recip_id of the specific group member sending the message
// SqliteDB::QueryResults group_rec;
// std::string group_recipient_id; // could be string or int, depending on age of database
// if (!d_database.exec("SELECT DISTINCT " + d_mms_recipient_id + " FROM " + d_mms_table + " WHERE (" + d_mms_type + " & " + bepaald::toString(Types::BASE_TYPE_MASK) +
// ") BETWEEN " + bepaald::toString(Types::BASE_OUTBOX_TYPE) + " AND " +
// bepaald::toString(Types::BASE_PENDING_INSECURE_SMS_FALLBACK) +
// " AND thread_id == ?", std::get<0>(matches[t]), &group_rec))
// {
// std::cout << "ERROR" << std::endl;
// break;
// }
// if (group_rec.rows() == 0)
// {
// std::cout << "WARNING : No outgoing messages found in this group, this is unusual but I'm guessing i can just use any unused recipient_id" << std::endl;
// SqliteDB::QueryResults list_of_addresses;
// d_database.exec("SELECT DISTINCT " + d_mms_table + "." + d_mms_recipient_id + " AS union_rec_id FROM " + d_mms_table + " "
// "UNION SELECT DISTINCT sms." + d_sms_recipient_id + " AS union_rec_id FROM sms", &list_of_addresses);
// // this is a stupid and naive way of looking for a free id, but it's quick to write :P
// long long int free_address = 1;
// bool done = false;
// while (!done)
// {
// bool found = false;
// for (unsigned int i = 0; i < list_of_addresses.rows(); ++i)
// {
// if (list_of_addresses.valueAsString(i, "union_rec_id") == bepaald::toString(free_address))
// {
// ++free_address;
// found = true;
// break;
// }
// }
// if (!found)
// done = true;
// }
// //std::cout << "Got free address : " << free_address << std::endl;
// group_recipient_id = bepaald::toString(free_address);
// }
// else if (group_rec.rows() > 1)
// {
// std::cout << "Unexpectedly got multiple group ids.... this shouldn't happen. skipping" << std::endl;
// continue;
// }
// else
// group_recipient_id = group_rec.valueAsString(0, d_mms_recipient_id);
// // add entry in 'thread' database
// d_database.exec("INSERT INTO thread (_id, " + d_thread_recipient_id + ") VALUES (?, ?)", {std::get<0>(matches[t]), group_recipient_id});
// // add entry in 'recipient' database (Skip 'name' for groups, in desktop it is group name, in app it's NULL
// d_database.exec("INSERT INTO recipient (_id, uuid, phone, group_id, signal_profile_name, profile_family_name, profile_joined_name) "
// "VALUES (?, ?, ?, ?, ?, ?, ?)",
// {group_recipient_id, r.value(0, "uuid"), r.value(0, "e164"), r.value(0, "groupId"),
// r.value(0, "profileName"), r.value(0, "profileFamilyName"), r.value(0, "profileFullName")});
// // add group entry
// std::string groupdatastr = r.valueAsString(0, "groupId");
// unsigned char const *groupdata = reinterpret_cast<unsigned char const *>(groupdatastr.c_str());
// unsigned int groupdatasize = groupdatastr.size();
// std::stringstream decoded_group_id;
// decoded_group_id << "__textsecure_group__!";
// unsigned int pos = 0;
// while (pos < groupdatasize)
// {
// if ((static_cast<unsigned int>(groupdata[pos]) & 0xff) <= 0x7f)
// decoded_group_id << std::hex << std::setw(2) << std::setfill('0') << (groupdata[pos] & 0xff);
// else if ((static_cast<unsigned int>(groupdata[pos]) & 0xff) >= 0xc0)
// {
// decoded_group_id << std::hex << std::setw(2) << std::setfill('0') << ((((groupdata[pos] << 6) & 0b11000000) | (groupdata[pos + 1] & 0b00111111)) & 0xff);
// ++pos;
// }
// ++pos;
// }
// std::string members;
// d_database.exec("INSERT INTO groups (group_id, title, members, recipient_id) VALUES(?, ?, ?, ?)", {decoded_group_id.str(), r.value(0, "name"), members, std::get<1>(matches[t])});
// }
// updateThreadsEntries();
// return true;
// }
// /*
// SqliteDB::QueryResults t2;
// if (d_database.exec("SELECT * FROM thread WHERE _id == 1", &t2))
// t2.print();
// if (d_database.exec("SELECT * FROM recipient WHERE _id == 2", &t2))
// t2.print();
// if (desktopdb.exec("SELECT id,active_at,type,members,name,profileName,profileFamilyName,profileFullName,e164,uuid,groupId FROM conversations WHERE id == \"4bfad53f-540c-4a54-be37-ce8eb7bc3440\"", &t2))
// t2.print();
// std::cout << "" << std::endl;
// if (d_database.exec("SELECT * FROM thread WHERE _id == 9", &t2))
// t2.print();
// if (d_database.exec("SELECT * FROM recipient WHERE _id == 1", &t2))
// t2.print();
// if (desktopdb.exec("SELECT id,active_at,type,members,name,profileName,profileFamilyName,profileFullName,e164,uuid,groupId FROM conversations WHERE id == \"e6e4d01d-5607-4749-8c95-cde384547a8c\"", &t2))
// t2.print();
// std::cout << "" << std::endl;
// if (d_database.exec("SELECT * FROM thread WHERE _id == 13", &t2))
// t2.print();
// if (d_database.exec("SELECT * FROM recipient WHERE _id == 17", &t2))
// t2.print();
// if (d_database.exec("SELECT * FROM groups WHERE group_id == \"__textsecure_group__!7b8072dc2aa63a7e34dde2d0c5e315a0\"", &t2))
// t2.print();
// if (desktopdb.exec("SELECT id,active_at,type,members,name,profileName,profileFamilyName,profileFullName,e164,uuid,groupId FROM conversations WHERE id == \"90e6212f-01ca-473b-8001-36876fa50146\"", &t2))
// t2.print();
// std::cout << "" << std::endl;
// if (d_database.exec("SELECT * FROM thread WHERE _id == 15", &t2))
// t2.print();
// if (d_database.exec("SELECT * FROM recipient WHERE _id == 6", &t2))
// t2.print();
// if (desktopdb.exec("SELECT id,active_at,type,members,name,profileName,profileFamilyName,profileFullName,e164,uuid,groupId FROM conversations WHERE id == \"b89aaadc-293f-4d67-a17a-8b51f04a4de1\"", &t2))
// t2.print();
// std::cout << "" << std::endl;
// */
// /*
// void SignalBackup::esokrates()
// {
// SqliteDB::QueryResults res;
// d_database.exec("SELECT _id,body,address,date,type "
// "FROM sms "
// "WHERE (type & " + bepaald::toString(Types::SECURE_MESSAGE_BIT) + ") IS 0", &res);
// std::cout << "Searching for possible duplicates of " << res.rows() << " unsecured messages" << std::endl;
// std::vector<long long int> ids_to_remove;
// for (unsigned int i = 0; i < res.rows(); ++i)
// {
// long long int msgid = std::any_cast<long long int>(res.value(i, "_id"));
// std::string body;
// bool body_is_null = false;
// if (res.valueHasType<std::string>(i, "body"))
// body = std::any_cast<std::string>(res.value(i, "body"));
// else if (res.isNull(i, "body"))
// body_is_null = true;
// std::string address = std::any_cast<std::string>(res.value(i, "address"));
// long long int date = std::any_cast<long long int>(res.value(i, "date"));
// long long int type = std::any_cast<long long int>(res.value(i, "type"));
// SqliteDB::QueryResults res2;
// if (body_is_null)
// d_database.exec("SELECT _id "
// "FROM sms "
// "WHERE (type & " + bepaald::toString(Types::SECURE_MESSAGE_BIT) + ") IS NOT 0 "
// "AND date = ? "
// "AND body IS NULL "
// "AND address = ?", {date, address}, &res2);
// else // !body_is_null
// d_database.exec("SELECT _id "
// "FROM sms "
// "WHERE (type & " + bepaald::toString(Types::SECURE_MESSAGE_BIT) + ") IS NOT 0 "
// "AND date = ? "
// "AND body = ? "
// "AND address = ?", {date, body, address}, &res2);
// if (res2.rows() > 1)
// {
// std::cout << "Unexpectedley got multiple results when searching for duplicates... ignoring" << std::endl;
// continue;
// }
// else if (res2.rows() == 1)
// {
// std::time_t epoch = date / 1000;
// std::cout << " * Found duplicate of message: " << std::endl
// << " " << msgid << "|" << body << "|" << address << "|"
// << std::put_time(std::localtime(&epoch), "%F %T %z") << "|" << "|" << type << std::endl
// << " in 'sms' table. Marking for deletion." << std::endl;
// ids_to_remove.push_back(msgid);
// continue;
// }
// if (body_is_null)
// d_database.exec("SELECT _id "
// "FROM " + d_mms_table + " "
// "WHERE (msg_box & " + bepaald::toString(Types::SECURE_MESSAGE_BIT) + ") IS NOT 0 "
// "AND date = ? "
// "AND body IS NULL "
// "AND address = ?", {date, address}, &res2);
// else // !body_is_null
// d_database.exec("SELECT _id "
// "FROM " + d_mms_table + " "
// "WHERE (msg_box & " + bepaald::toString(Types::SECURE_MESSAGE_BIT) + ") IS NOT 0 "
// "AND date = ? "
// "AND body = ? "
// "AND address = ?", {date, body, address}, &res2);
// if (res2.rows() > 1)
// {
// std::cout << "Unexpectedley got multiple results when searching for duplicates... ignoring" << std::endl;
// continue;
// }
// else if (res2.rows() == 1)
// {
// std::time_t epoch = date / 1000;
// std::cout << " * Found duplicate of message: " << std::endl
// << " " << msgid << "|" << body << "|" << address << "|"
// << std::put_time(std::localtime(&epoch), "%F %T %z") << "|" << "|" << type << std::endl
// << " in 'mms' table. Marking for deletion." << std::endl;
// ids_to_remove.push_back(msgid);
// continue;
// }
// }
// std::string ids_to_remove_str;
// for (unsigned int i = 0; i < ids_to_remove.size(); ++i)
// ids_to_remove_str += bepaald::toString(ids_to_remove[i]) + ((i < ids_to_remove.size() - 1) ? "," : "");
// std::cout << std::endl << std::endl << "About to remove messages from 'sms' table with _id's = " << std::endl;
// std::cout << ids_to_remove_str << std::endl << std::endl;
// std::cout << "Deleting " << ids_to_remove.size() << " duplicates..." << std::endl;
// d_database.exec("DELETE FROM sms WHERE _id IN (" + ids_to_remove_str + ")");
// std::cout << "Deleted " << d_database.changed() << " entries" << std::endl;
// }
// */
// bool SignalBackup::sleepyh34d(std::string const &truncatedbackup, std::string const &pwd)
// {
// // open truncated
// std::cout << "Opening truncated backup..." << std::endl;
// std::unique_ptr<SignalBackup> tf(new SignalBackup(truncatedbackup, pwd, false, false, false));
// if (!tf->ok())
// {
// std::cout << "Failed to read truncated backup file" << std::endl;
// return false;
// }
// std::cout << "Deleting sms/mms tables from complete backup" << std::endl;
// if ((!d_database.containsTable("sms") || !d_database.exec("DELETE FROM sms")) ||
// !d_database.exec("DELETE FROM " + d_mms_table)/* ||
// !d_database.exec("DELETE FROM part")*/)
// {
// std::cout << "Error deleting contents of sms/mms tables" << std::endl;
// return false;
// }
// //d_attachments.clear();
// // delete part entries from truncated which are already in target
// std::cout << "Deleting doubled part entries..." << std::endl;
// SqliteDB::QueryResults r;
// d_database.exec("SELECT _id FROM part", &r);
// std::string q = "DELETE FROM part WHERE _id IN (";
// for (unsigned int i = 0; i < r.rows(); ++i)
// q += bepaald::toString(r.getValueAs<long long int>(i, 0)) + ((i == r.rows() - 1) ? ")" : ",");
// if (!tf->d_database.exec(q))
// {
// std::cout << "Error deleting part entries" << std::endl;
// return false;
// }
// // in truncated: remove part entries (and d_attachments[i]), that are
// // missing or are already present in target (complete) db
// std::cout << "Cleaning up part table/attachments..." << std::endl;
// SqliteDB::QueryResults results;
// tf->d_database.exec("SELECT _id,unique_id FROM part", &results);
// std::vector<std::pair<long long int, long long int>> missingdata;
// for (unsigned int i = 0; i < results.rows(); ++i)
// {
// uint64_t rowid = results.getValueAs<long long int>(i, "_id");
// uint64_t uniqid = results.getValueAs<long long int>(i, "unique_id");
// if (tf->d_attachments.find({rowid, uniqid}) == tf->d_attachments.end()/* ||
// d_attachments.find({rowid, uniqid}) != d_attachments.end()*/)
// missingdata.emplace_back(std::make_pair(rowid, uniqid));
// }
// for (auto const &a : missingdata)
// {
// if (!tf->d_database.exec("DELETE FROM part WHERE _id = ? AND unique_id = ?", {a.first, a.second}))
// std::cout << "Warning failed to remove part entry with missing data" << std::endl;
// }
// std::vector<std::string> tables{d_mms_table, "part"};
// if (d_database.containsTable("sms"))
// tables.emplace_back("sms");
// for (std::string const &table : tables)
// {
// std::cout << "Importing " << table << " entries from truncated file ";
// //SqliteDB::QueryResults results;
// tf->d_database.exec("SELECT * FROM " + table, &results);
// // check if tf (which is newer) contains columns not existing in target
// unsigned int idx = 0;
// while (idx < results.headers().size())
// {
// if (!d_database.tableContainsColumn(table, results.headers()[idx]))
// {
// std::cout << " NOTE: Dropping column '" << table << "." << results.headers()[idx] << "' from truncated : Column not present in target database" << std::endl;
// if (results.removeColumn(idx))
// continue;
// }
// // else
// ++idx;
// }
// // import
// std::cout << " " << results.rows() << " entries." << std::endl;
// for (unsigned int i = 0; i < results.rows(); ++i)
// {
// SqlStatementFrame newframe = buildSqlStatementFrame(table, results.headers(), results.row(i));
// if (!d_database.exec(newframe.bindStatement(), newframe.parameters()))
// std::cout << "Warning: Failed to import sqlstatement (" << table << ")" << std::endl;
// }
// }
// // check for unreferenced threads
// if (d_database.containsTable("sms"))
// {
// d_database.exec("SELECT DISTINCT thread_id FROM sms WHERE thread_id NOT IN (SELECT DISTINCT _id FROM thread)", &results);
// if (results.rows() > 0)
// {
// std::cout << "WARNING:" << " Found messages in thread not present in old (complete) database... dropping them!" << std::endl;
// d_database.exec("DELETE FROM sms WHERE thread_id NOT IN (SELECT DISTINCT _id FROM thread)");
// }
// }
// d_database.exec("SELECT DISTINCT thread_id FROM " + d_mms_table + " WHERE thread_id NOT IN (SELECT DISTINCT _id FROM thread)", &results);
// if (results.rows() > 0)
// {
// std::cout << "WARNING:" << " Found messages in thread not present in old (complete) database... dropping them!" << std::endl;
// d_database.exec("DELETE FROM " + d_mms_table + " WHERE thread_id NOT IN (SELECT DISTINCT _id FROM thread)");
// }
// // check for unreferenced recipients
// if (d_database.containsTable("sms"))
// {
// d_database.exec("SELECT DISTINCT " + d_sms_recipient_id + " FROM sms WHERE " + d_sms_recipient_id + " NOT IN (SELECT DISTINCT _id FROM recipient)", &results);
// if (results.rows() > 0)
// {
// std::cout << "WARNING:" << " Found messages referencing recipient not present in old (complete) database... dropping them!" << std::endl;
// d_database.exec("DELETE FROM sms WHERE " + d_sms_recipient_id + " NOT IN (SELECT DISTINCT _id FROM recipient)");
// }
// }
// d_database.exec("SELECT DISTINCT " + d_mms_recipient_id + " FROM " + d_mms_table + " WHERE " + d_mms_recipient_id + " NOT IN (SELECT DISTINCT _id FROM recipient)", &results);
// if (results.rows() > 0)
// {
// std::cout << "WARNING:" << " Found messages referencing recipient not present in old (complete) database... dropping them!" << std::endl;
// d_database.exec("DELETE FROM " + d_mms_table + " WHERE " + d_mms_recipient_id + " NOT IN (SELECT DISTINCT _id FROM recipient)");
// }
// // CHECK AND WARN FOR MENTIONS
// d_database.exec("SELECT " + d_mms_table + "." + d_mms_recipient_id + ",DATETIME(ROUND(" + d_mms_table + "." + d_mms_date_sent + " / 1000), 'unixepoch', 'localtime') AS 'date_sent'," + d_mms_table + ".thread_id,groups.title FROM " + d_mms_table + " LEFT JOIN thread ON thread._id == " + d_mms_table + ".thread_id LEFT JOIN recipient ON recipient._id == thread." + d_thread_recipient_id + " LEFT JOIN groups ON groups.group_id == recipient.group_id WHERE HEX(" + d_mms_table + ".body) LIKE '%EFBFBC%'", &results);
// if (results.rows() > 0)
// {
// std::cout << "WARNING" << " Mentions found! Probably a good idea to check these messages:" << std::endl;
// for (unsigned int i = 0; i < results.rows(); ++i)
// {
// std::cout << " - Group: " << results.valueAsString(i, "title") << std::endl;
// std::cout << " Date : " << results.valueAsString(i, "date_sent") << std::endl;
// }
// }
// // and copy avatars and attachments.
// for (auto &att : tf->d_attachments)
// d_attachments.emplace(std::move(att));
// // update thread snippet and date and count
// updateThreadsEntries();
// d_database.exec("VACUUM");
// d_database.freeMemory();
// return true;
// }
// /*
// switch sender and recipient in single one-to-one conversation?
// */
bool SignalBackup::hiperfall(uint64_t t_id, std::string const &selfid)
{
SqliteDB::QueryResults results;
// get the recipient id's for the participants in this conversation
long long int self_id = -1;
if (selfid.empty())
{
self_id = scanSelf();
if (self_id == -1)
{
Logger::error("Failed to determine recipient, please add option to specify backup owners own phone number, for example: `--setselfid \"+31612345678\"'");
return false;
}
}
else
{
if (!d_database.exec("SELECT _id FROM recipient WHERE phone = ?", selfid, &results))
return false;
if (results.rows() != 1)
{
Logger::error("Unexpected query results (1)");
return false;
}
self_id = results.getValueAs<long long int>(0, "_id");
}
long long int partner_id = -1;
if (!d_database.exec("SELECT " + d_thread_recipient_id + " FROM thread WHERE _id = ?", t_id, &results))
return false;
if (results.rows() != 1)
{
Logger::error("Unexpected query results (2)");
return false;
}
partner_id = results.getValueAs<long long int>(0, d_thread_recipient_id);
if (partner_id == self_id)
{
Logger::error("Got same recipients for sender and receiver: ", self_id, " & ", partner_id);
return false;
}
Logger::message("Got recipients: ", self_id, " & ", partner_id);
// now switch them
if (!d_database.exec("UPDATE recipient SET _id = ? WHERE _id = ?", {-partner_id, self_id}) ||
!d_database.exec("UPDATE recipient SET _id = ? WHERE _id = ?", {self_id, partner_id}) ||
!d_database.exec("UPDATE recipient SET _id = ? WHERE _id = ?", {partner_id, -partner_id}))
{
Logger::error("Failed to switch recipient id's");
return false;
}
// since msl_ tables (messagesendlog) deal with sent messages, we should clear them
// (they are received messages now).
d_database.exec("DELETE FROM msl_payload");
d_database.exec("DELETE FROM msl_recipient");
d_database.exec("DELETE FROM msl_message");
// makes no sense to keep this, user should just make new profiles
if (d_database.containsTable("notification_profile"))
{
d_database.exec("DELETE FROM notification_profile");
d_database.exec("DELETE FROM notification_profile_schedule");
d_database.exec("DELETE FROM notification_profile_allowed_members");
}
// delete other threads
if (d_database.containsTable("sms"))
d_database.exec("DELETE FROM sms WHERE thread_id IS NOT ?", t_id);
d_database.exec("DELETE FROM " + d_mms_table + " WHERE thread_id IS NOT ?", t_id);
d_database.exec("DELETE FROM thread WHERE _id IS NOT ?", t_id);
cleanDatabaseByMessages();
auto setType = [](uint64_t oldtype, uint64_t newtype) { return (oldtype & ~(static_cast<uint64_t> (0x1f))) + newtype; };
if (d_database.containsTable("sms"))
{
// get min and max id from sms
d_database.exec("SELECT MIN(_id),MAX(_id) FROM sms", &results);
if (results.rows() != 1 ||
!results.valueHasType<long long int>(0, 0) ||
!results.getValueAs<long long int>(0, 1))
{
Logger::error("Unexpected query results (3)");
return false;
}
uint64_t minsmsid = results.getValueAs<long long int>(0, 0);
uint64_t maxsmsid = results.getValueAs<long long int>(0, 1);
Logger::message("min/max: ", minsmsid, " ", maxsmsid);
Logger::message("Switching sms entries...");
for (unsigned int i = minsmsid; i <= maxsmsid ; ++i)
{
if (!d_database.exec("SELECT * FROM sms WHERE _id = ?", i, &results))
return false;
if (results.rows() == 0)
continue;
if (results.rows() > 1)
{
Logger::error("Unexpected query results (4)");
return false;
}
uint64_t type = results.getValueAs<long long int>(0, "type");
using namespace std::string_literals;
switch (type & 0x1F)
{
/*
For incoming and outgoing calls, mostly only the type changes, but (at least on
new entries) an incoming call that was not successful (not picked up), the
notified_timestamp and reactions_last_seen are filled in. For incoming calls that
do connect, these are empty (as with outgoing).
When switching, I leave them unchanged (-1 and 0) as older entries, before these fields existed
have this anyway, so the app should be able to deal with them.
SELECT * from sms WHERE type BETWEEN 1 AND 3 ORDER BY + d_sms_date_received + ASC;
_id|thread_id|address|address_device_id|person|date|date_sent|date_server|protocol|read|status|type|reply_path_present|delivery_receipt_count|subject|body|mismatched_identities|service_center|subscription_id|expires_in|expire_started|notified|read_receipt_count|unidentified|reactions|reactions_unread|reactions_last_seen|remote_deleted|notified_timestamp|server_guid|receipt_timestamp
(outgoing, unsuccessful) 30|1|2|1||1633872620815|1633872620813|-1||1|-1|2||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
(outgoing, successful) 31|1|2|1||1633872637225|1633872637221|-1||1|-1|2||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
(incoming, missed) 32|1|2|1||1633872653837|1633872649947|-1||1|-1|3||0|||||-1|0|0|0|0|0||0|1633872655142|0|1633872654248||-1
(incoming, accepted) 33|1|2|1||1633872661166|1633872661164|-1||1|-1|1||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
SIMILAR GOES FOR VIDEO CALLS
(outgoing, unsuccessful) 35|1|2|1||1633873910158|1633873910157|-1||1|-1|11||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
(outgoing, successful) 36|1|2|1||1633873922647|1633873922644|-1||1|-1|11||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
(incoming, missed) 37|1|2|1||1633873937640|1633873934877|-1||1|-1| 8||0|||||-1|0|0|0|0|0||0|1633873939058|0|1633873937835||-1
(incoming, rejected) 38|1|2|1||1633873946618|1633873946615|-1||1|-1| 8||0|||||-1|0|0|0|0|0||0|1633873947990|0| 0||-1
(incoming, accepted) 39|1|2|1||1633873954061|1633873954058|-1||1|-1|10||0|||||-1|0|0|0|0|0||0| -1|0| 0||-1
*/
case Types::INCOMING_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_CALL_TYPE);
d_database.exec("UPDATE sms SET type = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::OUTGOING_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::INCOMING_CALL_TYPE);
d_database.exec("UPDATE sms SET type = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::MISSED_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_CALL_TYPE);
if (!d_database.exec("UPDATE sms SET"
" type = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?"
" WHERE _id = ?",
{newtype, -1, 0, i}))
return false;
break;
}
case Types::JOINED_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'JOINED_TYPE'");
break;
}
case Types::UNSUPPORTED_MESSAGE_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'UNSUPPORTED_MESSAGE_TYPE'");
break;
}
case Types::INVALID_MESSAGE_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'INVALID_MESSAGE_TYPE'");
break;
}
case Types::PROFILE_CHANGE_TYPE:
{
// incoming profile change messages are not present for sender
d_database.exec("DELETE FROM sms WHERE _id = ?", i);
break;
}
case Types::MISSED_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_VIDEO_CALL_TYPE);
if (!d_database.exec("UPDATE sms SET"
" type = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?"
" WHERE _id = ?",
{newtype, -1, 0, i}))
return false;
break;
}
case Types::GV1_MIGRATION_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'GV1_MIGRATION_TYPE'");
// should not be present in 1-on-1 threads
break;
}
case Types::INCOMING_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_VIDEO_CALL_TYPE);
d_database.exec("UPDATE sms SET type = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::OUTGOING_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::INCOMING_VIDEO_CALL_TYPE);
d_database.exec("UPDATE sms SET type = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::GROUP_CALL_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'GROUP_CALL_TYPE'");
break;
}
case Types::BASE_INBOX_TYPE:
{
/*
incoming to outgoing message changes:
date_server -> -1
protocol -> NULL
type -> |0x1f -> 23
reply_path_present -> NULL
delivery_receipt_count -> 1
service_center -> NULL
reactions_last_seen -> -1
notified_timestamp -> -1
server_guid -> NULL
receipt_timestamp -> -1(old) ~(date+300)(new)
NOTE, I use the old value for receipt_timestamp of -1. All messages that were in the db before this field existed are -1
so the app should be able to deal with this properly
*/
uint64_t newtype = setType(type, Types::BASE_SENT_TYPE);
if (d_database.tableContainsColumn("sms", "protocol") &&
d_database.tableContainsColumn("sms", "service_center") &&
d_database.tableContainsColumn("sms", "reply_path_present")) // REMOVED IN DBV166
{
if (!d_database.exec("UPDATE sms SET"
" date_server = ?,"
" protocol = ?,"
" type = ?,"
" reply_path_present = ?,"
" delivery_receipt_count = ?,"
" service_center = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?,"
" server_guid = ?"
//" receipt_timestamp = ?"
" WHERE _id = ?",
{-1, nullptr, newtype, nullptr, 1, nullptr, -1, -1, nullptr, i}))
return false;
}
else
{
if (!d_database.exec("UPDATE sms SET"
" date_server = ?,"
" type = ?,"
" delivery_receipt_count = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?,"
" server_guid = ?"
//" receipt_timestamp = ?"
" WHERE _id = ?",
{-1, newtype, 1, -1, -1, nullptr, i}))
return false;
}
break;
}
case Types::BASE_OUTBOX_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_OUTBOX_TYPE'");
break;
}
case Types::BASE_SENDING_TYPE:
{
/*
Not sure what to do with this. Lets say it was eventually successfully sent
sometime after this backup was made...
not sure about all the fields, I don't have this type in my db's
*/
uint64_t newtype = setType(type, Types::BASE_INBOX_TYPE);
if (d_database.tableContainsColumn("sms", "protocol") &&
d_database.tableContainsColumn("sms", "service_center") &&
d_database.tableContainsColumn("sms", "reply_path_present")) // REMOVED IN DBV166
{
if (!d_database.exec("UPDATE sms SET"
//" date_server = ?,"
" protocol = ?,"
" type = ?,"
" reply_path_present = ?,"
" delivery_receipt_count = ?,"
//" reactions_last_seen = ?,"
//" notified_timestamp = ?,"
//" server_guid = ?,"
//" receipt_timestamp = ?,"
" service_center = ?"
" WHERE _id = ?",
{31337, newtype, 1, 0, "GCM"s, i}))
return false;
}
else
{
if (!d_database.exec("UPDATE sms SET"
//" date_server = ?,"
" type = ?,"
" delivery_receipt_count = ?"
//" reactions_last_seen = ?,"
//" notified_timestamp = ?,"
//" server_guid = ?,"
//" receipt_timestamp = ?,"
" WHERE _id = ?",
{newtype, 0, i}))
return false;
}
break;
}
case Types::BASE_SENT_TYPE:
{
/*
outgoing to incoming message changes:
date_server -> -1(old) ~(date-1000)(new)
protocol -> 31337
type -> |0x1f -> 20
reply_path_present -> 1
delivery_receipt_count -> 0
service_center -> GCM
reactions_last_seen -> -1(old) ~(date+40000)(new)
notified_timestamp -> 0(old) ~(date+150)(new)
server_guid -> NULL(old) Something(new)
receipt_timestamp -> -1
NOTE, I use the old values where available. All messages that were in the db before these fields existed are -1 (or 0)
so the app should be able to deal with this properly
*/
uint64_t newtype = setType(type, Types::BASE_INBOX_TYPE);
if (d_database.tableContainsColumn("sms", "protocol") &&
d_database.tableContainsColumn("sms", "reply_path_present") &&
d_database.tableContainsColumn("sms", "service_center")) // removed in dbv 166
{
if (!d_database.exec("UPDATE sms SET"
//" date_server = ?,"
" protocol = ?,"
" type = ?,"
" reply_path_present = ?,"
" delivery_receipt_count = ?,"
//" reactions_last_seen = ?,"
//" notified_timestamp = ?,"
//" server_guid = ?,"
//" receipt_timestamp = ?,"
" service_center = ?"
" WHERE _id = ?",
{31337, newtype, 1, 0, "GCM"s, i}))
return false;
}
else
{
if (!d_database.exec("UPDATE sms SET"
" type = ?,"
" delivery_receipt_count = ?"
" WHERE _id = ?",
{newtype, 0, i}))
return false;
}
break;
}
case Types::BASE_SENT_FAILED_TYPE:
{
// failed sent message is not present at receiver?
d_database.exec("DELETE FROM sms WHERE _id = ?", i);
break;
}
case Types::BASE_PENDING_SECURE_SMS_FALLBACK:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_PENDING_SECURE_SMS_FALLBACK'");
break;
}
case Types::BASE_PENDING_INSECURE_SMS_FALLBACK:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_PENDING_INSECURE_SMS_FALLBACK'");
break;
}
case Types::BASE_DRAFT_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_DRAFT_TYPE'");
break;
}
default:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f));
break;
}
}
}
}
// get min and max id from mms
d_database.exec("SELECT MIN(_id),MAX(_id) FROM " + d_mms_table, &results);
if (results.rows() != 1 ||
!results.valueHasType<long long int>(0, 0) ||
!results.getValueAs<long long int>(0, 1))
{
Logger::error("Unexpected query results (5)");
return false;
}
uint64_t minmmsid = results.getValueAs<long long int>(0, 0);
uint64_t maxmmsid = results.getValueAs<long long int>(0, 1);
Logger::message("min/max: ", minmmsid, " ", maxmmsid);
Logger::message("Switching mms entries...");
for (unsigned int i = minmmsid; i <= maxmmsid ; ++i)
{
if (!d_database.exec("SELECT * FROM " + d_mms_table + " WHERE _id = ?", i, &results))
return false;
if (results.rows() == 0)
continue;
if (results.rows() > 1)
{
Logger::error("Unexpected query results (6)");
return false;
}
uint64_t type = results.getValueAs<long long int>(0, d_mms_type);
using namespace std::string_literals;
switch (type & 0x1F)
{
case Types::BASE_INBOX_TYPE:
{
uint64_t newtype = setType(type, Types::BASE_SENT_TYPE);
if (!d_database.exec("UPDATE " + d_mms_table + " SET"
" date_server = ?,"
" " + d_mms_type + " = ?,"
" m_type = ?,"
" st = ?,"
" " + d_mms_read_receipts + " = ?,"
" " + d_mms_delivery_receipts + " = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?,"
" server_guid = ?"
//" receipt_timestamp = ?"
" WHERE _id = ?",
{-1, newtype, 128, nullptr, 1, 1, -1, 0, nullptr, i}))
return false;
break;
}
case Types::BASE_SENT_TYPE:
{
/*
*/
uint64_t newtype = setType(type, Types::BASE_INBOX_TYPE);
if (!d_database.exec("UPDATE " + d_mms_table + " SET"
" " + d_mms_type + " = ?,"
" m_type = ?,"
" st = ?,"
" " + d_mms_read_receipts + " = ?,"
" " + d_mms_delivery_receipts + " = ?,"
" receipt_timestamp = ?"
" WHERE _id = ?",
{newtype, 132, 1, 1, 0, -1, i}))
return false;
break;
}
case Types::BASE_SENDING_TYPE:
{
/*
Not sure what to do with this. Lets say it was eventually successfully sent
sometime after this backup was made...
*/
uint64_t newtype = setType(type, Types::BASE_INBOX_TYPE);
if (!d_database.exec("UPDATE " + d_mms_table + " SET"
" " + d_mms_type + " = ?,"
" m_type = ?,"
" st = ?,"
" " + d_mms_read_receipts + " = ?,"
" " + d_mms_delivery_receipts + " = ?,"
" receipt_timestamp = ?"
" WHERE _id = ?",
{newtype, 132, 1, 1, 0, -1, i}))
return false;
break;
}
case Types::BASE_SENT_FAILED_TYPE:
{
// failed sent message is not present at receiver?
d_database.exec("DELETE FROM " + d_mms_table + " WHERE _id = ?", i);
break;
}
case Types::INCOMING_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_CALL_TYPE);
d_database.exec("UPDATE " + d_mms_table + " SET " + d_mms_type + " = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::OUTGOING_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::INCOMING_CALL_TYPE);
d_database.exec("UPDATE " + d_mms_table + " SET " + d_mms_type + " = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::MISSED_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_CALL_TYPE);
if (!d_database.exec("UPDATE " + d_mms_table + " SET"
" " + d_mms_type + " = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?"
" WHERE _id = ?",
{newtype, -1, 0, i}))
return false;
break;
}
case Types::INCOMING_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_VIDEO_CALL_TYPE);
d_database.exec("UPDATE " + d_mms_table + " SET " + d_mms_type + " = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::OUTGOING_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::INCOMING_VIDEO_CALL_TYPE);
d_database.exec("UPDATE " + d_mms_table + " SET " + d_mms_type + " = ? WHERE _id IS ?", {newtype, i});
break;
}
case Types::MISSED_VIDEO_CALL_TYPE:
{
uint64_t newtype = setType(type, Types::OUTGOING_VIDEO_CALL_TYPE);
if (!d_database.exec("UPDATE " + d_mms_table + " SET"
" " + d_mms_type + " = ?,"
" reactions_last_seen = ?,"
" notified_timestamp = ?"
" WHERE _id = ?",
{newtype, -1, 0, i}))
return false;
break;
}
case Types::PROFILE_CHANGE_TYPE:
{
// incoming profile change messages are not present for sender
d_database.exec("DELETE FROM " + d_mms_table + " WHERE _id = ?", i);
break;
}
case Types::GV1_MIGRATION_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'GV1_MIGRATION_TYPE'");
// should not be present in 1-on-1 threads
break;
}
case Types::GROUP_CALL_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'GROUP_CALL_TYPE'");
break;
}
case Types::JOINED_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'JOINED_TYPE'");
break;
}
case Types::UNSUPPORTED_MESSAGE_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'UNSUPPORTED_MESSAGE_TYPE'");
break;
}
case Types::INVALID_MESSAGE_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'INVALID_MESSAGE_TYPE'");
break;
}
case Types::BASE_OUTBOX_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_OUTBOX_TYPE'");
break;
}
case Types::BASE_PENDING_SECURE_SMS_FALLBACK:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_PENDING_SECURE_SMS_FALLBACK'");
break;
}
case Types::BASE_PENDING_INSECURE_SMS_FALLBACK:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_PENDING_INSECURE_SMS_FALLBACK'");
break;
}
case Types::BASE_DRAFT_TYPE:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f), " : 'BASE_DRAFT_TYPE'");
break;
}
default:
{
Logger::message("Unhandled type: ", i, " ", (type & 0x1f));
break;
}
}
}
return true;
/*
Mapping types:
*20 (incoming) -> 23 (sent)
*23 (sent) -> 20 (incoming)
22 (sending) -> ???
*1 (incoming audio call) -> 2 (outgoing audio call)
*2 (outgoind audio call) -> 1 (incoming audio call)
*3 (missed call) -> 2 (outgoing audio call)?
*7 (profile change) -> REMOVE?
*8 (missed video call) -> 11 (outgoing video call)?
*10 (incoming video call) -> 11 (outgoing video call)
*11 (outgoing video call) -> 10 (incoming video call)?
*24 (sent_failed) -> ???
*/
}
// void SignalBackup::devCustom() const
// {
// SqliteDB::QueryResults res;
// // d_database.exec("SELECT body FROM sms where _id = 120", &res);
// // DecryptedGroupV2Context sts(res.valueAsString(0, "body"));
// // sts.print();
// std::set<std::string> uuids;
// using namespace std::string_literals;
// for (auto const &q : {d_database.containsTable("sms") ? "SELECT body FROM sms WHERE (type & ?) != 0 AND (type & ?) != 0"s : ""s,
// "SELECT body FROM " + d_mms_table + " WHERE (" + d_mms_type + " & ?) != 0 AND (" + d_mms_type + " & ?) != 0"s})
// {
// if (q.empty())
// continue;
// //d_database.exec("SELECT body FROM sms WHERE (type & ?) != 0 AND (type & ?) != 0",
// d_database.exec(q, {Types::GROUP_UPDATE_BIT, Types::GROUP_V2_BIT}, &res);
// for (unsigned int i = 0; i < res.rows(); ++i)
// {
// DecryptedGroupV2Context sts2(res.valueAsString(i, "body"));
// //std::cout << "STATUS MSG " << i << std::endl;
// // NEW DATA
// auto field3 = sts2.getField<3>();
// if (field3.has_value())
// {
// auto field3_7 = field3->getField<7>();
// for (unsigned int j = 0; j < field3_7.size(); ++j)
// {
// auto field3_7_1 = field3_7[j].getField<1>();
// if (field3_7_1.has_value())
// uuids.insert(bepaald::bytesToHexString(*field3_7_1, true));
// // else
// // {
// // std::cout << "No members found in field 3" << std::endl;
// // sts2.print();
// // }
// }
// // if (field3_7.size() == 0)
// // {
// // std::cout << "No members found in field 3" << std::endl;
// // sts2.print();
// // }
// }
// // else
// // {
// // std::cout << "No members found in field 3" << std::endl;
// // sts2.print();
// // }
// // OLD DATA?
// auto field4 = sts2.getField<4>();
// if (field4.has_value())
// {
// auto field4_7 = field4->getField<7>();
// for (unsigned int j = 0; j < field4_7.size(); ++j)
// {
// auto field4_7_1 = field4_7[j].getField<1>();
// if (field4_7_1.has_value())
// uuids.insert(bepaald::bytesToHexString(*field4_7_1, true));
// // else
// // {
// // std::cout << "No members found in field 4" << std::endl;
// // sts2.print();
// // }
// }
// // if (field4_7.size() == 0)
// // {
// // std::cout << "No members found in field 4" << std::endl;
// // sts2.print();
// // }
// }
// // else
// // {
// // std::cout << "No members found in field 4" << std::endl;
// // sts2.print();
// // }
// }
// }
// std::cout << "LIST OF FOUND UUIDS:" << std::endl;
// for (auto &uuid : uuids)
// std::cout << uuid << std::endl;
// if (uuids.size())
// {
// std::string q = "SELECT DISTINCT _id FROM recipient WHERE LOWER(uuid) IN (";
// #if __cplusplus > 201703L
// for (int pos = 0; std::string uuid : uuids)
// #else
// int pos = 0;
// for (std::string uuid : uuids)
// #endif
// {
// if (pos > 0)
// q += ", ";
// uuid.insert(8, 1, '-').insert(13, 1, '-').insert(18, 1, '-').insert(23, 1, '-');
// //std::transform(uuid.begin(), uuid.end(), uuid.begin(), [](unsigned char c){ return std::tolower(c); });
// q += "LOWER('" + uuid + "')";
// //std::transform(uuid.begin(), uuid.end(), uuid.begin(), [](unsigned char c){ return std::toupper(c); });
// //q+= "'" + uuid + "'";
// ++pos;
// }
// q += ")";
// std::cout << "'" << q << "'" << std::endl;
// d_database.exec(q, &res);
// res.prettyPrint();
// }
// }
|