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
|
/*
Copyright (c) 2013-24 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"
enum
{
IDM_NONE,
IDM_TOPIC, IDM_INVITE, IDM_DESTROY,
IDM_KICK, IDM_INFO, IDM_CHANGENICK, IDM_VISIT_PROFILE
};
static LPCWSTR sttStatuses[] = { LPGENW("Participants"), LPGENW("Owners") };
extern JSONNode nullNode;
INT_PTR __cdecl CVkProto::SvcChatChangeTopic(WPARAM hContact, LPARAM)
{
debugLogA("CVkProto::SvcChatChangeTopic");
if (!IsOnline())
return 1;
CVkChatInfo* cc = GetChatByContact(hContact);
if (!cc)
return 1;
if (LPTSTR pwszNew = ChangeChatTopic(cc)) {
if (mir_wstrlen(pwszNew) > 100)
pwszNew[100] = 0;
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/messages.editChat.json", true, &CVkProto::OnReceiveSmth)
<< WCHAR_PARAM("title", pwszNew)
<< INT_PARAM("chat_id", cc->m_iChatId));
mir_free(pwszNew);
}
return 0;
}
INT_PTR __cdecl CVkProto::SvcChatInviteUser(WPARAM hContact, LPARAM)
{
debugLogA("CVkProto::SvcChatInviteUser");
if (!IsOnline())
return 1;
CVkChatInfo* cc = GetChatByContact(hContact);
if (!cc)
return 1;
CVkInviteChatForm dlg(this);
if (dlg.DoModal() && dlg.m_hContact != 0) {
VKUserID_t iUserId = ReadVKUserID(dlg.m_hContact);
if (GetVKPeerType(iUserId) != VKPeerType::vkPeerUser)
MsgPopup(TranslateT("Adding bots, MUC or groups to MUC is not supported"), TranslateT("Not supported"));
else
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/messages.addChatUser.json", true, &CVkProto::OnReceiveSmth)
<< INT_PARAM("user_id", iUserId)
<< INT_PARAM("chat_id", cc->m_iChatId));
}
return 0;
}
INT_PTR __cdecl CVkProto::SvcChatDestroy(WPARAM hContact, LPARAM)
{
debugLogA("CVkProto::SvcChatDestroy");
if (!IsOnline())
return 1;
CVkChatInfo* cc = GetChatByContact(hContact);
if (!cc)
return 1;
if (IDYES == MessageBoxW(nullptr,
TranslateT("This chat is going to be destroyed forever with all its contents. This action cannot be undone. Are you sure?"),
TranslateT("Warning"), MB_YESNO | MB_ICONQUESTION)
) {
if (!getBool(hContact, "off"))
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/execute.DestroyChat", true, &CVkProto::OnChatDestroy)
<< INT_PARAM("chatid", cc->m_iChatId)
<< INT_PARAM("userid", m_iMyUserId)
)->pUserInfo = cc;
else {
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/execute.DestroyKickChat", true, &CVkProto::OnReceiveSmth)
<< INT_PARAM("chatid", cc->m_iChatId)
);
DeleteContact(hContact);
}
}
return 0;
}
CVkChatInfo* CVkProto::AppendConversationChat(VKUserID_t iChatId, const JSONNode& jnItem)
{
debugLogW(L"CVkProto::AppendConversationChat %d", iChatId);
if (iChatId == 0)
return nullptr;
const JSONNode& jnConversation = jnItem ? jnItem["conversation"] : nullNode;
const JSONNode& jnLastMessage = jnItem ? jnItem["last_message"] : nullNode;
const JSONNode& jnChatSettings = jnConversation ? jnConversation["chat_settings"] : nullNode;
if (jnLastMessage) {
const JSONNode& jnAction = jnLastMessage["action"];
if (jnAction) {
CMStringW wszActionType(jnAction["type"].as_mstring());
if ((wszActionType == L"chat_kick_user") && (jnAction["member_id"].as_int() == m_iMyUserId))
return nullptr;
}
}
MCONTACT hChatContact = FindChat(iChatId);
if (hChatContact && getBool(hChatContact, "kicked"))
return nullptr;
CVkChatInfo* vkChatInfo = m_chats.find((CVkChatInfo*)&iChatId);
if (vkChatInfo != nullptr)
return vkChatInfo;
CMStringW wszTitle, wszState, wszAvatar;
vkChatInfo = new CVkChatInfo(iChatId);
if (jnChatSettings) {
wszTitle = jnChatSettings["title"].as_mstring();
vkChatInfo->m_wszTopic = mir_wstrdup(!wszTitle.IsEmpty() ? wszTitle : L"");
wszState = jnChatSettings["state"].as_mstring();
wszAvatar = jnChatSettings["photo"] ? jnChatSettings["photo"]["photo_100"].as_mstring() : L"";
}
CMStringW sid;
sid.Format(L"%d", iChatId);
SESSION_INFO* si = Chat_NewSession(GCW_CHATROOM, m_szModuleName, sid, wszTitle);
if (si == nullptr) {
delete vkChatInfo;
return nullptr;
}
vkChatInfo->m_si = si;
setWString(si->hContact, "Nick", wszTitle);
m_chats.insert(vkChatInfo);
for (int i = _countof(sttStatuses) - 1; i >= 0; i--)
Chat_AddGroup(si, TranslateW(sttStatuses[i]));
WriteVKUserID(si->hContact, iChatId);
CMStringW wszHomepage(FORMAT, L"https://vk.com/im?sel=c%d", iChatId);
setWString(si->hContact, "Homepage", wszHomepage);
if (!wszAvatar.IsEmpty()) {
SetAvatarUrl(si->hContact, wszAvatar);
ReloadAvatarInfo(si->hContact);
}
db_unset(si->hContact, m_szModuleName, "off");
if (jnChatSettings && wszState != L"in") {
setByte(si->hContact, "off", 1);
m_chats.remove(vkChatInfo);
return nullptr;
}
Chat_Control(si, (m_vkOptions.bHideChats) ? WINDOW_HIDDEN : SESSION_INITDONE);
Chat_Control(si, SESSION_ONLINE);
RetrieveChatInfo(vkChatInfo);
return vkChatInfo;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CVkProto::RetrieveChatInfo(CVkChatInfo *cc)
{
debugLogA("CVkProto::RetrieveChatInfo");
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/execute.RetrieveChatInfo", true, &CVkProto::OnReceiveChatInfo)
<< INT_PARAM("chatid", cc->m_iChatId)
<< INT_PARAM("func_v", (cc->m_bHistoryRead || m_vkOptions.iSyncHistoryMetod) ? 5 : 4)
)->pUserInfo = cc;
}
void CVkProto::OnReceiveChatInfo(MHttpResponse *reply, AsyncHttpRequest *pReq)
{
debugLogA("CVkProto::OnReceiveChatInfo %d", reply->resultCode);
if (reply->resultCode != 200)
return;
JSONNode jnRoot;
const JSONNode &jnResponse = CheckJsonResponse(pReq, reply, jnRoot);
if (!jnResponse)
return;
CVkChatInfo *cc = (CVkChatInfo*)pReq->pUserInfo;
if (m_chats.indexOf(cc) == -1)
return;
const JSONNode &jnInfo = jnResponse["info"];
if (jnInfo) {
if (jnInfo["title"])
SetChatTitle(cc, jnInfo["title"].as_mstring());
CMStringW wszValue = jnInfo["photo"] ? jnInfo["photo"]["photo_100"].as_mstring() : "";
if (!wszValue.IsEmpty()) {
SetAvatarUrl(cc->m_si->hContact, wszValue);
ReloadAvatarInfo(cc->m_si->hContact);
}
CMStringW wszState = jnInfo["state"].as_mstring();
if (jnInfo["left"].as_bool() || jnInfo["kicked"].as_bool() || wszState == L"left" || wszState == L"kicked") {
setByte(cc->m_si->hContact, "kicked", jnInfo["kicked"].as_bool());
LeaveChat(cc->m_iChatId);
return;
}
}
if (!jnResponse["users"])
return;
const JSONNode &jnUsersItems = jnResponse["users"]["items"];
if (jnUsersItems)
for (auto& jnUser : jnUsersItems)
if (jnUser["is_owner"].as_bool()) {
cc->m_iOwner = jnUser["member_id"].as_int();
break;
}
const JSONNode& jnUsers = jnResponse["users"]["profiles"];
if (jnUsers) {
for (auto &it : cc->m_users)
it->m_bDel = true;
for (auto &jnUser : jnUsers) {
if (!jnUser)
break;
VKUserID_t iUserId = jnUser["id"].as_int();
bool bIsGroup = jnUser["type"].as_mstring() == L"group";
if (bIsGroup)
iUserId *= -1;
wchar_t wszId[20];
_ltow(iUserId, wszId, 10);
bool bNew;
CVkChatUser *vkChatUser = cc->m_users.find((CVkChatUser*)&iUserId);
if (vkChatUser == nullptr) {
cc->m_users.insert(vkChatUser = new CVkChatUser(iUserId));
bNew = true;
}
else
bNew = vkChatUser->m_bUnknown;
vkChatUser->m_bDel = false;
CMStringW wszNick(ptrW(db_get_wsa(cc->m_si->hContact, m_szModuleName, CMStringA(FORMAT, "nick%d", vkChatUser->m_iUserId))));
if (wszNick.IsEmpty())
wszNick = bIsGroup ?
jnUser["name"].as_mstring() :
jnUser["first_name"].as_mstring().Trim() + L" " + jnUser["last_name"].as_mstring().Trim();
vkChatUser->m_wszNick = mir_wstrdup(wszNick);
vkChatUser->m_bUnknown = false;
if (bNew) {
GCEVENT gce = { cc->m_si, GC_EVENT_JOIN };
gce.bIsMe = iUserId == m_iMyUserId;
gce.pszUID.w = wszId;
gce.pszNick.w = wszNick;
gce.pszStatus.w = TranslateW(sttStatuses[iUserId == cc->m_iOwner]);
gce.dwItemData = (INT_PTR)vkChatUser;
Chat_Event(&gce);
}
}
for (auto &cu : cc->m_users.rev_iter()) {
if (!cu->m_bDel)
continue;
wchar_t wszId[20];
_itow(cu->m_iUserId, wszId, 10);
CMStringW wszNick(FORMAT, L"%s (%s)", cu->m_wszNick.get(), UserProfileUrl(cu->m_iUserId).c_str());
GCEVENT gce = { cc->m_si, GC_EVENT_PART };
gce.pszUID.w = wszId;
gce.dwFlags = GCEF_NOTNOTIFY;
gce.time = time(0);
gce.pszNick.w = wszNick;
Chat_Event(&gce);
cc->m_users.removeItem(&cu);
}
}
const JSONNode &jnMsgsUsers = jnResponse["msgs_users"];
for (auto &jnUser : jnMsgsUsers) {
VKUserID_t iUserId = jnUser["id"].as_int();
CVkChatUser *cu = cc->m_users.find((CVkChatUser*)&iUserId);
if (cu)
continue;
MCONTACT hContact = FindUser(iUserId);
if (hContact)
continue;
hContact = SetContactInfo(jnUser, true, VKContactType::vkContactMUCUser);
}
const JSONNode &jnMsgs = jnResponse["msgs"];
const JSONNode &jnFUsers = jnResponse["fwd_users"];
if (jnMsgs) {
const JSONNode &jnItems = jnMsgs["items"];
if (jnItems) {
for (auto &jnMsg : jnItems) {
if (!jnMsg)
break;
AppendChatConversationMessage(cc->m_iChatId, jnMsg, jnFUsers, true);
}
}
}
cc->m_bHistoryRead = true;
for (auto &p : cc->m_msgs)
AppendChatMessage(cc, p->m_iMessageId, p->m_iReplyMsgId, p->m_iUserId, p->m_tDate, p->m_wszBody, p->m_bHistory, p->m_bIsAction);
cc->m_msgs.destroy();
}
void CVkProto::SetChatTitle(CVkChatInfo *cc, LPCWSTR wszTopic)
{
debugLogW(L"CVkProto::SetChatTitle");
if (!cc)
return;
if (mir_wstrcmp(cc->m_wszTopic, wszTopic) == 0)
return;
cc->m_wszTopic = mir_wstrdup(wszTopic);
setWString(cc->m_si->hContact, "Nick", wszTopic);
Chat_ChangeSessionName(cc->m_si, wszTopic);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CVkProto::AppendChatConversationMessage(VKUserID_t iChatId, const JSONNode& jnMsg, const JSONNode& jnFUsers, bool bIsHistory)
{
debugLogA("CVkProto::AppendChatConversationMessage");
CVkChatInfo* vkChatInfo = AppendConversationChat(iChatId, nullNode);
if (vkChatInfo == nullptr)
return;
VKMessageID_t iMessageId = jnMsg["id"].as_int(), iReplyMsgId = 0;
VKUserID_t iUserId = jnMsg["from_id"].as_int();
bool bIsAction = false;
time_t tMsgTime = jnMsg["date"].as_int();
time_t tNow = time(0);
if (!tMsgTime || tMsgTime > tNow)
tMsgTime = tNow;
CMStringW wszBody(jnMsg["text"].as_mstring());
const JSONNode& jnFwdMessages = jnMsg["fwd_messages"];
if (jnFwdMessages && !jnFwdMessages.empty()) {
CMStringW wszFwdMessages = GetFwdMessages(jnFwdMessages, jnFUsers, m_vkOptions.bBBCNewStorySupport ? bbcAdvanced : bbcNo);
if (!wszBody.IsEmpty())
wszFwdMessages = L"\n" + wszFwdMessages;
wszBody += wszFwdMessages;
}
const JSONNode& jnReplyMessages = jnMsg["reply_message"];
if (jnReplyMessages && !jnReplyMessages.empty()) {
if (m_vkOptions.bShowReplyInMessage) {
CMStringW wszReplyMessages = GetFwdMessages(jnReplyMessages, jnFUsers, m_vkOptions.bBBCNewStorySupport ? bbcAdvanced : bbcNo);
if (!wszBody.IsEmpty())
wszReplyMessages = L"\n" + wszReplyMessages;
wszBody += wszReplyMessages;
}
else if (jnReplyMessages["id"])
iReplyMsgId = jnReplyMessages["id"].as_int();
}
const JSONNode& jnAttachments = jnMsg["attachments"];
if (jnAttachments && !jnAttachments.empty()) {
CMStringW wszAttachmentDescr = GetAttachmentDescr(jnAttachments, m_vkOptions.bBBCNewStorySupport ? bbcAdvanced : bbcNo, vkChatInfo->m_si->hContact, iMessageId);
if (wszAttachmentDescr == L"== FilterAudioMessages ==")
return;
if (!wszBody.IsEmpty())
wszAttachmentDescr = L"\n" + wszAttachmentDescr;
wszBody += wszAttachmentDescr;
}
VKMessageID_t iReadMsg = ReadQSWord(vkChatInfo->m_si->hContact, "in_read", 0);
bool bIsRead = (iMessageId <= iReadMsg);
time_t tUpdateTime = (time_t)jnMsg["update_time"].as_int();
bool bEdited = (tUpdateTime != 0);
if (bEdited) {
wchar_t ttime[64];
_locale_t locale = _create_locale(LC_ALL, "");
_wcsftime_l(ttime, _countof(ttime), TranslateT("%x at %X"), localtime(&tUpdateTime), locale);
_free_locale(locale);
wszBody = SetBBCString(
CMStringW(FORMAT, TranslateT("Edited message (updated %s):\n"), ttime),
m_vkOptions.BBCForAttachments(), vkbbcB) +
wszBody;
if (m_vkOptions.bShowBeforeEditedPostVersion) {
CMStringW wszOldMsg;
if (GetMessageFromDb(iMessageId, tMsgTime, wszOldMsg))
wszBody += SetBBCString(TranslateT("\nOriginal message:\n"), m_vkOptions.BBCForAttachments(), vkbbcB) +
wszOldMsg;
}
}
if (m_vkOptions.bAddMessageLinkToMesWAtt && ((jnAttachments && !jnAttachments.empty()) || (jnFwdMessages && !jnFwdMessages.empty()) || (jnReplyMessages && !jnReplyMessages.empty() && m_vkOptions.bShowReplyInMessage)))
wszBody += SetBBCString(TranslateT("Message link"), m_vkOptions.bBBCNewStorySupport ? bbcAdvanced : bbcNo, vkbbcUrl,
CMStringW(FORMAT, L"https://vk.com/im?sel=c%d&msgid=%d", vkChatInfo->m_iChatId, iMessageId));
if (jnMsg["action"] && jnMsg["action"]["type"]) {
bIsAction = true;
CMStringW wszAction = jnMsg["action"]["type"].as_mstring();
if (wszAction == L"chat_create") {
CMStringW wszActionText = jnMsg["action"]["text"].as_mstring();
wszBody.AppendFormat(L"%s \"%s\"", TranslateT("create chat"), wszActionText.IsEmpty() ? L" " : wszActionText.c_str());
}
else if (wszAction == L"chat_kick_user") {
CMStringW wszActionMid = jnMsg["action"]["member_id"].as_mstring();
if (wszActionMid.IsEmpty())
wszBody = TranslateT("kick user");
else {
CMStringW wszUid(FORMAT, L"%d", iUserId);
if (wszUid == wszActionMid) {
if (vkChatInfo->m_bHistoryRead)
return;
wszBody.AppendFormat(L" (%s) %s", UserProfileUrl(iUserId).c_str(), TranslateT("left chat"));
}
else {
VKUserID_t iActionUserId = 0;
int iReadCount = swscanf(wszActionMid, L"%d", &iActionUserId);
if (iReadCount == 1) {
CVkChatUser* cu = vkChatInfo->m_users.find((CVkChatUser*)&iActionUserId);
if (cu == nullptr)
wszBody.AppendFormat(L"%s (%s)", TranslateT("kick user"), UserProfileUrl(iActionUserId).c_str());
else
wszBody.AppendFormat(L"%s %s (%s)", TranslateT("kick user"), cu->m_wszNick.get(), UserProfileUrl(iActionUserId).c_str());
}
else wszBody = TranslateT("kick user");
}
}
}
else if (wszAction == L"chat_invite_user" || wszAction == L"chat_invite_user_by_link") {
CMStringW wszActionMid = jnMsg["action"]["member_id"].as_mstring();
if (wszActionMid.IsEmpty())
wszBody = TranslateT("invite user");
else {
CMStringW wszUid(FORMAT, L"%d", iUserId);
if (wszUid == wszActionMid)
wszBody.AppendFormat(L" (%s) %s", UserProfileUrl(iUserId).c_str(), TranslateT("returned to chat"));
else {
VKUserID_t iActionUserId = 0;
int iReadCount = swscanf(wszActionMid, L"%d", &iActionUserId);
if (iReadCount == 1) {
CVkChatUser* cu = vkChatInfo->m_users.find((CVkChatUser*)&iActionUserId);
if (cu == nullptr)
wszBody.AppendFormat(L"%s (%s)", TranslateT("invite user"), UserProfileUrl(iActionUserId).c_str());
else
wszBody.AppendFormat(L"%s %s (%s)", TranslateT("invite user"), cu->m_wszNick.get(), UserProfileUrl(iActionUserId).c_str());
}
else wszBody = TranslateT("invite user");
}
}
}
else if (wszAction == L"chat_title_update") {
CMStringW wszTitle = jnMsg["action"]["text"].as_mstring();
wszBody.AppendFormat(L"%s \"%s\"", TranslateT("change chat title to"), wszTitle.IsEmpty() ? L" " : wszTitle.c_str());
if (!bIsHistory)
SetChatTitle(vkChatInfo, wszTitle);
}
else if (wszAction == L"chat_pin_message")
wszBody = TranslateT("pin message");
else if (wszAction == L"chat_unpin_message")
wszBody = TranslateT("unpin message");
else if (wszAction == L"chat_photo_update")
wszBody.Replace(TranslateT("Attachments:"), TranslateT("changed chat cover:"));
else if (wszAction == L"chat_photo_remove")
wszBody = TranslateT("deleted chat cover");
else
wszBody.AppendFormat(L": %s (%s)", TranslateT("chat action not supported"), wszAction.c_str());
}
if (vkChatInfo->m_bHistoryRead) {
AppendChatMessage(vkChatInfo, iMessageId, iReplyMsgId, iUserId, tMsgTime, wszBody, bIsHistory, bIsAction);
}
else {
CVkChatMessage* vkChatMessage = vkChatInfo->m_msgs.find((CVkChatMessage*)&iMessageId);
if (vkChatMessage == nullptr)
vkChatInfo->m_msgs.insert(vkChatMessage = new CVkChatMessage(iMessageId));
vkChatMessage->m_iReplyMsgId = iReplyMsgId;
vkChatMessage->m_iUserId = iUserId;
vkChatMessage->m_tDate = tMsgTime;
vkChatMessage->m_wszBody = mir_wstrdup(wszBody);
vkChatMessage->m_bHistory = bIsHistory;
vkChatMessage->m_bIsRead = bIsRead;
vkChatMessage->m_bIsAction = bIsAction;
}
}
void CVkProto::AppendChatMessage(CVkChatInfo* vkChatInfo, VKMessageID_t iMessageId, VKMessageID_t iReplyMsgId, VKUserID_t iUserId, time_t tMsgTime, LPCWSTR pwszBody, bool bIsHistory, bool bIsRead, bool bIsAction)
{
debugLogA("CVkProto::AppendChatMessage2");
MCONTACT hChatContact = vkChatInfo->m_si->hContact;
if (!hChatContact)
return;
MCONTACT hContact = FindTempUser(iUserId);
CVkChatUser* cu = vkChatInfo->m_users.find((CVkChatUser*)&iUserId);
if (cu == nullptr) {
vkChatInfo->m_users.insert(cu = new CVkChatUser(iUserId));
CMStringW wszNick(ptrW(db_get_wsa(vkChatInfo->m_si->hContact, m_szModuleName, CMStringA(FORMAT, "nick%d", cu->m_iUserId))));
cu->m_wszNick = mir_wstrdup(wszNick.IsEmpty() ? (hContact ? ptrW(db_get_wsa(hContact, m_szModuleName, "Nick")) : TranslateT("Unknown")) : wszNick);
cu->m_bUnknown = true;
}
if (bIsAction) {
wchar_t wszId[20];
_itow(iUserId, wszId, 10);
GCEVENT gce = { vkChatInfo->m_si, GC_EVENT_ACTION };
gce.bIsMe = (iUserId == m_iMyUserId);
gce.pszUID.w = wszId;
gce.time = tMsgTime;
gce.dwFlags = (bIsHistory) ? GCEF_NOTNOTIFY : GCEF_ADDTOLOG;
gce.pszNick.w = cu->m_wszNick ? mir_wstrdup(cu->m_wszNick) : mir_wstrdup(hContact ? ptrW(db_get_wsa(hContact, m_szModuleName, "Nick")) : TranslateT("Unknown"));
gce.pszText.w = IsEmpty((wchar_t*)pwszBody) ? mir_wstrdup(L"...") : mir_wstrdup(pwszBody);
Chat_Event(&gce);
}
else {
char szReplyMsgId[40] = "";
char szMid[40];
_ltoa(iMessageId, szMid, 10);
T2Utf pszBody(pwszBody);
T2Utf pszNick(cu->m_wszNick);
DB::EventInfo dbei;
dbei.szId = szMid;
dbei.timestamp = tMsgTime;
dbei.pBlob = pszBody;
if (iUserId == m_iMyUserId)
dbei.flags |= DBEF_SENT;
if (bIsHistory || bIsRead)
dbei.flags |= DBEF_READ;
dbei.szUserId = pszNick;
if (iReplyMsgId) {
_ltoa(iReplyMsgId, szReplyMsgId, 10);
dbei.szReplyId = szReplyMsgId;
}
ProtoChainRecvMsg(hChatContact, dbei);
}
StopChatContactTyping(vkChatInfo->m_iChatId, iUserId);
}
/////////////////////////////////////////////////////////////////////////////////////////
CVkChatInfo* CVkProto::GetChatByContact(MCONTACT hContact)
{
if (!isChatRoom(hContact))
return nullptr;
VKUserID_t iUserId = ReadVKUserID(hContact);
if (iUserId == VK_INVALID_USER)
return nullptr;
wchar_t wszChatID[40];
_itow(iUserId, wszChatID, 10);
return GetChatById(wszChatID);
}
CVkChatInfo* CVkProto::GetChatById(LPCWSTR pwszId)
{
for (auto &it : m_chats)
if (!mir_wstrcmp(it->m_si->ptszID, pwszId))
return it;
return nullptr;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CVkProto::SetChatStatus(MCONTACT hContact, int iStatus)
{
CVkChatInfo *cc = GetChatByContact(hContact);
if (cc != nullptr)
Chat_Control(cc->m_si, (iStatus == ID_STATUS_OFFLINE) ? SESSION_OFFLINE : SESSION_ONLINE);
}
/////////////////////////////////////////////////////////////////////////////////////////
int CVkProto::OnChatEvent(WPARAM, LPARAM lParam)
{
GCHOOK *gch = (GCHOOK*)lParam;
if (gch == nullptr)
return 0;
if (mir_strcmpi(gch->si->pszModule, m_szModuleName))
return 0;
CVkChatInfo *cc = GetChatById(gch->si->ptszID);
if (cc == nullptr)
return 1;
switch (gch->iType) {
case GC_USER_MESSAGE:
if (IsOnline() && mir_wstrlen(gch->ptszText) > 0) {
ptrW pwszBuf(mir_wstrdup(gch->ptszText));
rtrimw(pwszBuf);
SendMsg(cc->m_si->hContact, gch->si->pDlg ? gch->si->pDlg->m_hQuoteEvent : 0, T2Utf(pwszBuf));
}
break;
case GC_USER_PRIVMESS:
{
MCONTACT hContact = FindUser(_wtoi(gch->ptszUID));
if (hContact == 0) {
hContact = FindUser(_wtoi(gch->ptszUID), true);
Contact::Hide(hContact);
Contact::RemoveFromList(hContact);
db_set_dw(hContact, "Ignore", "Mask1", 0);
RetrieveUserInfo(_wtoi(gch->ptszUID));
}
CallService(MS_MSG_SENDMESSAGEW, hContact);
}
break;
case GC_USER_LOGMENU:
LogMenuHook(cc, gch);
break;
case GC_USER_NICKLISTMENU:
NickMenuHook(cc, gch);
break;
case GC_USER_TYPNOTIFY:
UserIsTyping(cc->m_si->hContact, (int)gch->dwData);
break;
}
return 1;
}
/////////////////////////////////////////////////////////////////////////////////////////
LPTSTR CVkProto::ChangeChatTopic(CVkChatInfo *cc)
{
ENTER_STRING pForm = {};
pForm.type = ESF_MULTILINE;
pForm.caption = TranslateT("Enter new chat title");
pForm.ptszInitVal = cc->m_wszTopic;
pForm.szModuleName = m_szModuleName;
pForm.szDataPrefix = "gctopic_";
return (!EnterString(&pForm)) ? nullptr : pForm.ptszResult;
}
void CVkProto::LogMenuHook(CVkChatInfo *cc, GCHOOK *gch)
{
if (!IsOnline())
return;
switch (gch->dwData) {
case IDM_TOPIC:
SvcChatChangeTopic(cc->m_si->hContact, 0);
break;
case IDM_INVITE:
SvcChatInviteUser(cc->m_si->hContact, 0);
break;
case IDM_DESTROY:
SvcChatDestroy(cc->m_si->hContact, 0);
break;
}
}
INT_PTR __cdecl CVkProto::OnJoinChat(WPARAM hContact, LPARAM)
{
debugLogA("CVkProto::OnJoinChat");
if (!IsOnline() || getBool(hContact, "kicked") || !getBool(hContact, "off"))
return 1;
VKUserID_t iChatId = ReadVKUserID(hContact);
if (iChatId == VK_INVALID_USER)
return 1;
AsyncHttpRequest* pReq = new AsyncHttpRequest(this, REQUEST_POST, "/method/messages.addChatUser.json", true, &CVkProto::OnReceiveSmth, AsyncHttpRequest::rpHigh);
pReq << INT_PARAM("user_id", m_iMyUserId);
pReq<< INT_PARAM("chat_id", iChatId);
Push(pReq);
db_unset(hContact, m_szModuleName, "off");
return 0;
}
INT_PTR __cdecl CVkProto::OnLeaveChat(WPARAM hContact, LPARAM)
{
debugLogA("CVkProto::OnLeaveChat");
if (!IsOnline())
return 1;
CVkChatInfo *cc = GetChatByContact(hContact);
if (cc == nullptr)
return 1;
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/messages.removeChatUser.json", true, &CVkProto::OnChatLeave)
<< INT_PARAM("chat_id", cc->m_iChatId)
<< INT_PARAM("user_id", m_iMyUserId))->pUserInfo = cc;
return 0;
}
void CVkProto::LeaveChat(VKUserID_t iChatId, bool bCloseWindow, bool bDeleteChat)
{
debugLogA("CVkProto::LeaveChat");
CVkChatInfo *cc = (CVkChatInfo*)m_chats.find((CVkChatInfo*)&iChatId);
if (cc == nullptr)
return;
if (bCloseWindow)
Chat_Terminate(cc->m_si);
else
Chat_Control(cc->m_si, SESSION_OFFLINE);
if (bDeleteChat)
DeleteContact(cc->m_si->hContact);
else
setByte(cc->m_si->hContact, "off", (int)true);
m_chats.remove(cc);
}
void CVkProto::KickFromChat(VKUserID_t iChatId, VKUserID_t iUserId, const JSONNode &jnMsg, const JSONNode &jnFUsers)
{
debugLogA("CVkProto::KickFromChat (%d)", iUserId);
MCONTACT chatContact = FindChat(iChatId);
if (chatContact && getBool(chatContact, "off"))
return;
if (iUserId == m_iMyUserId)
LeaveChat(iChatId);
CVkChatInfo *cc = (CVkChatInfo*)m_chats.find((CVkChatInfo*)&iChatId);
if (cc == nullptr)
return;
MCONTACT hContact = FindUser(iUserId, false);
CMStringW wszMsg(jnMsg["text"].as_mstring());
if (wszMsg.IsEmpty()) {
wszMsg = TranslateT("You've been kicked by ");
if (hContact != 0)
wszMsg += ptrW(db_get_wsa(hContact, m_szModuleName, "Nick"));
else
wszMsg += TranslateT("(Unknown contact)");
}
else
AppendChatConversationMessage(iChatId, jnMsg, jnFUsers, false);
MsgPopup(hContact, wszMsg, TranslateT("Chat"));
setByte(cc->m_si->hContact, "kicked", 1);
LeaveChat(iChatId);
}
void CVkProto::OnChatLeave(MHttpResponse *reply, AsyncHttpRequest *pReq)
{
debugLogA("CVkProto::OnChatLeave %d", reply->resultCode);
if (reply->resultCode != 200)
return;
CVkChatInfo *cc = (CVkChatInfo*)pReq->pUserInfo;
LeaveChat(cc->m_iChatId);
}
void CVkProto::OnChatDestroy(MHttpResponse *reply, AsyncHttpRequest *pReq)
{
debugLogA("CVkProto::OnChatDestroy %d", reply->resultCode);
if (reply->resultCode != 200)
return;
CVkChatInfo *cc = (CVkChatInfo*)pReq->pUserInfo;
LeaveChat(cc->m_iChatId, true, true);
}
/////////////////////////////////////////////////////////////////////////////////////////
void CVkProto::NickMenuHook(CVkChatInfo *vkChatInfo, GCHOOK *gch)
{
CVkChatUser *vkChatUser = vkChatInfo->GetUserById(gch->ptszUID);
MCONTACT hContact;
if (vkChatUser == nullptr)
return;
char szUid[20], szChatId[20];
_itoa(vkChatUser->m_iUserId, szUid, 10);
_itoa(vkChatInfo->m_iChatId, szChatId, 10);
switch (gch->dwData) {
case IDM_INFO:
hContact = FindTempUser(vkChatUser->m_iUserId, 1000);
CallService(MS_USERINFO_SHOWDIALOG, hContact);
break;
case IDM_VISIT_PROFILE:
hContact = FindUser(vkChatUser->m_iUserId);
if (hContact == 0)
Utils_OpenUrlW(UserProfileUrl(vkChatUser->m_iUserId));
else
SvcVisitProfile(hContact, 0);
break;
case IDM_CHANGENICK:
{
CMStringW wszNewNick = RunRenameNick(vkChatUser->m_wszNick);
if (wszNewNick.IsEmpty() || wszNewNick == vkChatUser->m_wszNick)
break;
wchar_t wszId[20];
_itow(vkChatUser->m_iUserId, wszId, 10);
GCEVENT gce = { vkChatInfo->m_si, GC_EVENT_NICK };
gce.pszNick.w = mir_wstrdup(vkChatUser->m_wszNick);
gce.bIsMe = (vkChatUser->m_iUserId == m_iMyUserId);
gce.pszUID.w = wszId;
gce.pszText.w = mir_wstrdup(wszNewNick);
gce.dwFlags = GCEF_ADDTOLOG;
gce.time = time(0);
Chat_Event(&gce);
vkChatUser->m_wszNick = mir_wstrdup(wszNewNick);
setWString(vkChatInfo->m_si->hContact, CMStringA(FORMAT, "nick%d", vkChatUser->m_iUserId), wszNewNick);
}
break;
case IDM_KICK:
if (!IsOnline())
return;
if (GetVKPeerType(vkChatUser->m_iUserId) != VKPeerType::vkPeerUser) {
MsgPopup(TranslateT("Kick bots is not supported"), TranslateT("Not supported"));
return;
}
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/messages.removeChatUser.json", true, &CVkProto::OnReceiveSmth)
<< INT_PARAM("chat_id", vkChatInfo->m_iChatId)
<< INT_PARAM("user_id", vkChatUser->m_iUserId));
vkChatUser->m_bUnknown = true;
break;
}
}
/////////////////////////////////////////////////////////////////////////////////////////
static gc_item sttLogListItems[] =
{
{ LPGENW("&Invite a user"), IDM_INVITE, MENU_ITEM },
{ LPGENW("View/change &topic"), IDM_TOPIC, MENU_ITEM },
{ nullptr, 0, MENU_SEPARATOR },
{ LPGENW("&Destroy room"), IDM_DESTROY, MENU_ITEM }
};
static gc_item sttListItems[] =
{
{ LPGENW("&User details"), IDM_INFO, MENU_ITEM },
{ LPGENW("Visit profile"), IDM_VISIT_PROFILE, MENU_ITEM },
{ LPGENW("Change nick"), IDM_CHANGENICK, MENU_ITEM },
{ LPGENW("&Kick"), IDM_KICK, MENU_ITEM }
};
int CVkProto::OnGcMenuHook(WPARAM, LPARAM lParam)
{
GCMENUITEMS *gcmi = (GCMENUITEMS*)lParam;
if (gcmi == nullptr || mir_strcmpi(gcmi->pszModule, m_szModuleName))
return 0;
if (gcmi->Type == MENU_ON_LOG)
Chat_AddMenuItems(gcmi->hMenu, _countof(sttLogListItems), sttLogListItems, &g_plugin);
else if (gcmi->Type == MENU_ON_NICKLIST)
Chat_AddMenuItems(gcmi->hMenu, _countof(sttListItems), sttListItems, &g_plugin);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CVkProto::ChatContactTypingThread(void *p)
{
CVKChatContactTypingParam *param = (CVKChatContactTypingParam *)p;
if (!p)
return;
VKUserID_t iChatId = param->m_ChatId;
VKUserID_t iUserId = param->m_UserId;
debugLogA("CVkProto::ChatContactTypingThread %d %d", iChatId, iUserId);
MCONTACT hChatContact = FindChat(iChatId);
if (hChatContact && getBool(hChatContact, "off")) {
delete param;
return;
}
CVkChatInfo *cc = (CVkChatInfo*)m_chats.find((CVkChatInfo*)&iChatId);
if (cc == nullptr) {
delete param;
return;
}
CVkChatUser *cu = cc->GetUserById(iUserId);
if (cu == nullptr) {
delete param;
return;
}
{
mir_cslock lck(m_csChatTyping);
CVKChatContactTypingParam *cp = (CVKChatContactTypingParam *)m_ChatsTyping.find((CVKChatContactTypingParam *)&iChatId);
if (cp != nullptr)
m_ChatsTyping.remove(cp);
m_ChatsTyping.insert(param);
Srmm_SetStatusText(hChatContact, CMStringW(FORMAT, TranslateT("%s is typing a message..."), cu->m_wszNick.get()));
}
Sleep(9500);
StopChatContactTyping(iChatId, iUserId);
}
void CVkProto::StopChatContactTyping(VKUserID_t iChatId, VKUserID_t iUserId)
{
debugLogA("CVkProto::StopChatContactTyping %d %d", iChatId, iUserId);
MCONTACT hChatContact = FindChat(iChatId);
if (hChatContact && getBool(hChatContact, "off"))
return;
CVkChatInfo *cc = (CVkChatInfo*)m_chats.find((CVkChatInfo*)&iChatId);
if (cc == nullptr)
return;
CVkChatUser *cu = cc->GetUserById(iUserId);
if (cu == nullptr)
return;
mir_cslock lck(m_csChatTyping);
CVKChatContactTypingParam *cp = (CVKChatContactTypingParam *)m_ChatsTyping.find((CVKChatContactTypingParam *)&iChatId);
if (cp != nullptr && cp->m_UserId == iUserId) {
m_ChatsTyping.remove(cp);
Srmm_SetStatusText(hChatContact, nullptr);
}
}
/////////////////////////////////////////////////////////////////////////////////////////
INT_PTR CVkProto::SvcCreateChat(WPARAM, LPARAM)
{
if (!IsOnline())
return (INT_PTR)1;
CVkUserListForm dlg(
this,
"",
TranslateT("Create group chat"),
TranslateT("Mark users you want to invite to a new chat"),
TranslateT("New chat's title:"),
VKContactType::vkContactSelf | VKContactType::vkContactMUCUser | VKContactType::vkContactGroupUser,
100
);
if (!dlg.DoModal())
return 0;
CMStringA szUIds;
for (auto& hContact : dlg.lContacts) {
if (isChatRoom((UINT_PTR)hContact))
continue;
VKUserID_t iUserId = ReadVKUserID((UINT_PTR)hContact);
if (iUserId != 0) {
if (!szUIds.IsEmpty())
szUIds.AppendChar(',');
szUIds.AppendFormat("%d", iUserId);
}
}
if (szUIds.IsEmpty())
return 0;
CreateNewChat(szUIds, dlg.wszMessage);
return 1;
}
void CVkProto::CreateNewChat(LPCSTR uids, LPCWSTR pwszTitle)
{
if (!IsOnline())
return;
Push(new AsyncHttpRequest(this, REQUEST_GET, "/method/messages.createChat.json", true, &CVkProto::OnCreateNewChat)
<< WCHAR_PARAM("title", pwszTitle ? pwszTitle : L"")
<< CHAR_PARAM("user_ids", uids));
}
void CVkProto::OnCreateNewChat(MHttpResponse *reply, AsyncHttpRequest *pReq)
{
debugLogA("CVkProto::OnCreateNewChat %d", reply->resultCode);
if (reply->resultCode != 200)
return;
JSONNode jnRoot;
const JSONNode &jnResponse = CheckJsonResponse(pReq, reply, jnRoot);
if (!jnResponse)
return;
VKUserID_t iChatId = jnResponse.as_int();
if (iChatId != 0)
AppendConversationChat(iChatId, nullNode);
}
|