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
|
/*
Copyright (C) 2012-23 Miranda NG team (https://miranda-ng.org)
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 version 2
of the License.
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 "stdafx.h"
static const wchar_t* getRoleById(uint32_t ID)
{
switch (ID) {
case TD::chatMemberStatusCreator::ID:
return TranslateT("Creator");
case TD::chatMemberStatusAdministrator::ID:
return TranslateT("Admin");
case TD::chatMemberStatusMember::ID:
default:
return TranslateT("Participant");
}
}
void CTelegramProto::InitGroupChat(TG_USER *pUser, const TD::chat *pChat)
{
if (pUser->m_si)
return;
wchar_t wszId[100];
_i64tow(pUser->id, wszId, 10);
SESSION_INFO *si;
Utf2T wszNick(pChat->title_.c_str());
if (pUser->bLoadMembers) {
si = Chat_NewSession(GCW_CHATROOM, m_szModuleName, wszId, wszNick, pUser);
if (!si->pStatuses) {
Chat_AddGroup(si, TranslateT("Creator"));
Chat_AddGroup(si, TranslateT("Admin"));
Chat_AddGroup(si, TranslateT("Participant"));
// push async query to fetch users
if (m_arBasicGroups.find((TG_BASIC_GROUP*)&pUser->id))
SendQuery(new TD::getBasicGroupFullInfo(pUser->id), &CTelegramProto::StartGroupChat, pUser);
else
SendQuery(new TD::getSupergroupMembers(pUser->id, 0, 0, 100), &CTelegramProto::StartGroupChat, pUser);
}
else {
Chat_Control(si, m_bHideGroupchats ? WINDOW_HIDDEN : SESSION_INITDONE);
Chat_Control(si, SESSION_ONLINE);
}
}
else {
if (si = Chat_NewSession(GCW_CHANNEL, m_szModuleName, wszId, wszNick, pUser)) {
if (!si->pStatuses) {
Chat_AddGroup(si, TranslateT("SuperAdmin"));
Chat_AddGroup(si, TranslateT("Visitor"));
ptrW wszMyId(getWStringA(DBKEY_ID)), wszMyNick(Contact::GetInfo(CNF_DISPLAY, 0, m_szModuleName));
GCEVENT gce = { si, GC_EVENT_JOIN };
gce.pszUID.w = wszMyId;
gce.pszNick.w = wszMyNick;
gce.bIsMe = true;
gce.pszStatus.w = TranslateT("Visitor");
Chat_Event(&gce);
gce.bIsMe = false;
gce.pszUID.w = wszId;
gce.pszNick.w = wszNick;
gce.pszStatus.w = TranslateT("SuperAdmin");
Chat_Event(&gce);
}
Chat_Control(si, m_bHideGroupchats ? WINDOW_HIDDEN : SESSION_INITDONE);
Chat_Control(si, SESSION_ONLINE);
}
}
pUser->m_si = si;
}
void CTelegramProto::StartGroupChat(td::ClientManager::Response &response, void *pUserData)
{
if (!response.object)
return;
auto *pChat = (TG_USER *)pUserData;
switch (response.object->get_id()) {
case TD::basicGroupFullInfo::ID:
GcAddMembers(pChat, ((TD::basicGroupFullInfo *)response.object.get())->members_, false);
break;
case TD::chatMembers::ID:
GcAddMembers(pChat, ((TD::chatMembers *)response.object.get())->members_, false);
break;
default:
debugLogA("Gotten class ID %d instead of %d, exiting", response.object->get_id(), TD::basicGroupFullInfo::ID);
return;
}
}
void CTelegramProto::GcAddMembers(TG_USER *pChat, const TD::array<TD::object_ptr<TD::chatMember>> &pMembers, bool bSilent)
{
for (auto &it : pMembers) {
auto *pMember = it.get();
if (pMember->member_id_->get_id() != TD::messageSenderUser::ID)
continue;
int64_t memberId = ((TD::messageSenderUser *)pMember->member_id_.get())->user_id_;
auto *pChatUser = FindUser(memberId);
if (pChatUser == nullptr)
continue;
wchar_t wszUserId[100];
_i64tow(memberId, wszUserId, 10);
GCEVENT gce = { pChat->m_si, GC_EVENT_JOIN };
gce.pszUID.w = wszUserId;
gce.pszStatus.w = getRoleById(pMember->status_->get_id());
if (bSilent)
gce.dwFlags = GCEF_SILENT;
switch (pChatUser->hContact) {
case 0:
gce.bIsMe = true;
__fallthrough;
case INVALID_CONTACT_ID:
gce.pszNick.w = pChatUser->wszNick.c_str();
break;
default:
gce.pszNick.w = Clist_GetContactDisplayName(pChatUser->hContact);
break;
}
Chat_Event(&gce);
}
Chat_Control(pChat->m_si, m_bHideGroupchats ? WINDOW_HIDDEN : SESSION_INITDONE);
Chat_Control(pChat->m_si, SESSION_ONLINE);
}
/////////////////////////////////////////////////////////////////////////////////////////
int CTelegramProto::GcMuteHook(WPARAM hContact, LPARAM mode)
{
if (Proto_IsProtoOnContact(hContact, m_szModuleName)) {
if (auto *pUser = FindUser(GetId(hContact))) {
auto settings = TD::make_object<TD::chatNotificationSettings>();
memcpy(settings.get(), &pUser->notificationSettings, sizeof(pUser->notificationSettings));
switch (mode) {
case CHATMODE_MUTE:
settings->use_default_mute_for_ = false;
settings->mute_for_ = 45000000;
break;
default:
settings->use_default_mute_for_ = true;
settings->mute_for_ = 0;
break;
}
SendQuery(new TD::setChatNotificationSettings(pUser->chatId, std::move(settings)));
}
}
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
enum
{
IDM_LEAVE = 1,
};
int CTelegramProto::GcEventHook(WPARAM, LPARAM lParam)
{
GCHOOK *gch = (GCHOOK *)lParam;
if (gch == nullptr)
return 0;
if (mir_strcmpi(gch->si->pszModule, m_szModuleName))
return 0;
auto userId = _wtoi64(gch->si->ptszID);
switch (gch->iType) {
case GC_USER_MESSAGE:
if (gch->ptszText && mir_wstrlen(gch->ptszText) > 0) {
rtrimw(gch->ptszText);
Chat_UnescapeTags(gch->ptszText);
if (auto *pUser = FindUser(userId)) {
TD::int53 replyId = 0;
if (auto *pDlg = gch->si->pDlg) {
DB::EventInfo dbei(pDlg->m_hQuoteEvent, false);
if (dbei)
replyId = dbei2id(dbei);
}
SendTextMessage(pUser->chatId, replyId, T2Utf(gch->ptszText));
}
}
break;
case GC_USER_PRIVMESS:
Chat_SendPrivateMessage(gch);
break;
case GC_USER_LOGMENU:
Chat_LogMenu(gch);
break;
case GC_USER_NICKLISTMENU:
break;
}
return 1;
}
void CTelegramProto::Chat_LogMenu(GCHOOK *gch)
{
switch (gch->dwData) {
case IDM_LEAVE:
SvcLeaveChat(gch->si->hContact, 0);
break;
}
}
INT_PTR CTelegramProto::SvcLeaveChat(WPARAM hContact, LPARAM)
{
int64_t id = GetId(hContact);
if (auto *pUser = FindUser(id)) {
pUser->m_si = nullptr;
SendQuery(new TD::leaveChat(pUser->chatId));
}
wchar_t wszId[100];
_i64tow(id, wszId, 10);
if (auto *si = Chat_Find(wszId, m_szModuleName))
Chat_Terminate(si);
db_delete_contact(hContact);
return 0;
}
void CTelegramProto::Chat_SendPrivateMessage(GCHOOK *gch)
{
MCONTACT hContact;
TD::int53 userId = _wtoi64(gch->ptszUID);
auto *pUser = FindUser(userId);
if (pUser == nullptr || pUser->hContact == INVALID_CONTACT_ID) {
PROTOSEARCHRESULT psr = { sizeof(psr) };
psr.id.w = (wchar_t *)gch->ptszUID;
psr.firstName.w = (wchar_t *)gch->ptszNick;
hContact = AddToList(PALF_TEMPORARY, &psr);
if (hContact == 0)
return;
setWString(hContact, "Nick", gch->ptszNick);
Contact::Hide(hContact);
db_set_dw(hContact, "Ignore", "Mask1", 0);
}
else hContact = pUser->hContact;
CallService(MS_MSG_SENDMESSAGE, hContact, 0);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CTelegramProto::GcChangeMember(TG_USER *pChat, const char *adminId, TD::int53 userId, bool bJoined)
{
if (pChat->m_si == nullptr)
return;
if (auto *pMember = FindUser(userId)) {
CMStringW wszId(FORMAT, L"%lld", pMember->id), wszNick(pMember->getDisplayName());
Utf2T wszAdminId(adminId);
GCEVENT gce = { pChat->m_si, (bJoined) ? GC_EVENT_JOIN : GC_EVENT_PART };
gce.pszUID.w = wszId;
gce.pszNick.w = wszNick;
gce.bIsMe = false;
gce.time = time(0);
gce.pszStatus.w = TranslateT("Participant");
gce.pszText.w = wszAdminId;
Chat_Event(&gce);
}
}
void CTelegramProto::GcChangeTopic(TG_USER *pChat, const wchar_t *pwszNewTopic)
{
if (pChat->m_si == nullptr || pwszNewTopic == nullptr)
return;
GCEVENT gce = { pChat->m_si, GC_EVENT_TOPIC };
gce.pszText.w = pwszNewTopic;
gce.time = time(0);
Chat_Event(&gce);
}
/////////////////////////////////////////////////////////////////////////////////////////
static gc_item sttLogListItems[] =
{
{ LPGENW("&Leave chat session"), IDM_LEAVE, MENU_ITEM }
};
int CTelegramProto::GcMenuHook(WPARAM, LPARAM lParam)
{
GCMENUITEMS *gcmi = (GCMENUITEMS *)lParam;
if (gcmi == nullptr)
return 0;
if (mir_strcmpi(gcmi->pszModule, m_szModuleName))
return 0;
auto *pUser = FindUser(_wtoi64(gcmi->pszID));
if (pUser == nullptr)
return 0;
if (gcmi->Type == MENU_ON_LOG) {
Chat_AddMenuItems(gcmi->hMenu, _countof(sttLogListItems), sttLogListItems, &g_plugin);
}
else if (gcmi->Type == MENU_ON_NICKLIST) {
}
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// Server data
void CTelegramProto::ProcessBasicGroup(TD::updateBasicGroup *pObj)
{
auto *pBasicGroup = pObj->basic_group_.get();
auto iStatusId = pBasicGroup->status_->get_id();
if (iStatusId == TD::chatMemberStatusBanned::ID) {
if (pBasicGroup->upgraded_to_supergroup_id_) {
auto *pUser = FindUser(pBasicGroup->upgraded_to_supergroup_id_);
if (pUser) {
pUser->bLoadMembers = true;
if (pUser->m_si)
pUser->m_si->bHasNicklist = true;
if (auto *pOldUser = FindUser(pBasicGroup->id_)) {
pUser->hContact = pOldUser->hContact;
SetId(pUser->hContact, pBasicGroup->upgraded_to_supergroup_id_);
}
}
}
debugLogA("We are banned here, skipping");
return;
}
TG_BASIC_GROUP tmp(pBasicGroup->id_, 0);
auto *pGroup = m_arBasicGroups.find(&tmp);
if (pGroup == nullptr) {
pGroup = new TG_BASIC_GROUP(tmp.id, std::move(pObj->basic_group_));
m_arBasicGroups.insert(pGroup);
}
else pGroup->group = std::move(pObj->basic_group_);
TG_USER *pUser;
if (iStatusId == TD::chatMemberStatusLeft::ID) {
pUser = AddFakeUser(tmp.id, true);
pUser->wszLastName.Format(TranslateT("%d member(s)"), pGroup->group->member_count_);
}
else pUser = AddUser(tmp.id, true);
pUser->bLoadMembers = true;
}
void CTelegramProto::ProcessBasicGroupInfo(TD::updateBasicGroupFullInfo *pObj)
{
auto *pChat = FindUser(pObj->basic_group_id_);
if (pChat == nullptr || pChat->m_si == nullptr)
return;
if (auto *pInfo = pObj->basic_group_full_info_.get()) {
if (!pInfo->description_.empty()) {
Utf2T wszTopic(pInfo->description_.c_str());
GCEVENT gce = { pChat->m_si, GC_EVENT_TOPIC };
gce.pszText.w = wszTopic;
Chat_Event(&gce);
}
g_chatApi.UM_RemoveAll(pChat->m_si);
GcAddMembers(pChat, pInfo->members_, true);
}
}
void CTelegramProto::ProcessSuperGroup(TD::updateSupergroup *pObj)
{
auto iStatusId = pObj->supergroup_->status_->get_id();
if (iStatusId == TD::chatMemberStatusBanned::ID) {
debugLogA("We are banned here, skipping");
return;
}
TG_SUPER_GROUP tmp(pObj->supergroup_->id_, 0);
auto *pGroup = m_arSuperGroups.find(&tmp);
if (pGroup == nullptr) {
pGroup = new TG_SUPER_GROUP(tmp.id, std::move(pObj->supergroup_));
m_arSuperGroups.insert(pGroup);
}
else pGroup->group = std::move(pObj->supergroup_);
if (iStatusId == TD::chatMemberStatusLeft::ID) {
auto *pUser = AddFakeUser(tmp.id, true);
pUser->wszNick = Utf2T(getName(pGroup->group->usernames_.get()));
pUser->wszLastName.Format(TranslateT("%d member(s)"), pGroup->group->member_count_);
}
else {
auto *pChat = AddUser(tmp.id, true);
if (auto *si = pChat->m_si) {
CMStringW wszUserId(FORMAT, L"%lld", m_iOwnId);
GCEVENT gce = { si, GC_EVENT_SETSTATUS };
gce.pszUID.w = wszUserId;
gce.time = time(0);
gce.bIsMe = true;
gce.pszStatus.w = getRoleById(iStatusId);
gce.pszText.w = TranslateT("Admin");
Chat_Event(&gce);
}
}
}
|