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
|
/*
Copyright (C) 2023-2024 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/>.
*/
#include "signalbackup.ih"
void SignalBackup::listRecipients() const
{
/* Note on group types:
0 = individual (no group)
1 = mms
2 = group v1
3 = group v2
4 = distribution list (story)
5 = call link
*/
/* Note on registration status:
0 = Unknown
1 = Yes
2 = No
*/
d_database.prettyPrint(d_truncate,
"SELECT recipient._id, "
"COALESCE(" + (d_database.tableContainsColumn("recipient", "nickname_joined_name") ? "NULLIF(recipient.nickname_joined_name, ''),"s : ""s) +
"NULLIF(recipient." + d_recipient_system_joined_name + ", ''), " +
(d_database.tableContainsColumn("recipient", "profile_joined_name") ? "NULLIF(recipient.profile_joined_name, ''),"s : ""s) +
"NULLIF(recipient." + d_recipient_profile_given_name + ", ''), "
"NULLIF(groups.title, ''), " +
(d_database.containsTable("distribution_list") ? "NULLIF(distribution_list.name, ''), " : "") +
"NULLIF(recipient." + d_recipient_e164 + ", ''), "
"NULLIF(recipient." + d_recipient_aci + ", ''), "
" recipient._id) AS 'display_name', " +
"recipient." + d_recipient_e164 + ", " +
(d_database.tableContainsColumn("recipient", "blocked") ? "blocked, " : "") +
(d_database.tableContainsColumn("recipient", "hidden") ? "hidden, " : "") +
"IFNULL(COALESCE(" + d_recipient_profile_avatar + ", groups.avatar_id), 0) IS NOT 0 AS 'has_avatar', "
"CASE recipient." + d_recipient_type + " WHEN 0 THEN 'Individual' ELSE "
" CASE recipient." + d_recipient_type + " WHEN 3 THEN 'Group (v2)' ELSE "
" CASE recipient." + d_recipient_type + " WHEN 4 THEN 'Group (story)' ELSE "
" CASE recipient." + d_recipient_type + " WHEN 1 THEN 'Group (mms)' ELSE "
" CASE recipient." + d_recipient_type + " WHEN 2 THEN 'Group (v1)' ELSE "
" CASE recipient." + d_recipient_type + " WHEN 5 THEN 'Group (call)' ELSE 'unknown' "
" END "
" END "
" END "
" END "
" END "
"END AS 'type', "
"CASE WHEN recipient." + d_recipient_type + " IS NOT 0 THEN '(n/a)' ELSE "
" CASE registered WHEN 1 THEN 'Yes' ELSE "
" CASE registered WHEN 2 THEN 'No' ELSE 'Unknown' "
" END "
" END "
"END AS 'registered', "
"COALESCE (recipient.group_id, " + d_recipient_aci + ") IS NOT NULL AS has_id, "
"thread._id IS NOT NULL as has_thread "
"FROM recipient "
"LEFT JOIN groups ON recipient.group_id = groups.group_id " +
"LEFT JOIN thread ON recipient._id = thread.recipient_id " +
(d_database.containsTable("distribution_list") ? "LEFT JOIN distribution_list ON recipient._id = distribution_list.recipient_id " : " ") +
"ORDER BY display_name");
}
|