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
|
#include "stdafx.h"
TOX_USER_STATUS CToxProto::MirandaToToxStatus(int status)
{
TOX_USER_STATUS userstatus = TOX_USER_STATUS_NONE;
switch (status)
{
case ID_STATUS_AWAY:
userstatus = TOX_USER_STATUS_AWAY;
break;
case ID_STATUS_OCCUPIED:
userstatus = TOX_USER_STATUS_BUSY;
break;
}
return userstatus;
}
int CToxProto::ToxToMirandaStatus(TOX_USER_STATUS userstatus)
{
int status = ID_STATUS_OFFLINE;
switch (userstatus)
{
case TOX_USER_STATUS_NONE:
status = ID_STATUS_ONLINE;
break;
case TOX_USER_STATUS_AWAY:
status = ID_STATUS_AWAY;
break;
case TOX_USER_STATUS_BUSY:
status = ID_STATUS_OCCUPIED;
break;
}
return status;
}
void CToxProto::ShowNotification(const TCHAR *caption, const TCHAR *message, int flags, MCONTACT hContact)
{
if (Miranda_Terminated())
{
return;
}
if (ServiceExists(MS_POPUP_ADDPOPUPT) && db_get_b(NULL, "Popup", "ModuleIsEnabled", 1))
{
POPUPDATAT ppd = { 0 };
ppd.lchContact = hContact;
wcsncpy(ppd.lpwzContactName, caption, MAX_CONTACTNAME);
wcsncpy(ppd.lpwzText, message, MAX_SECONDLINE);
ppd.lchIcon = Skin_GetIcon("Tox_main");
if (!PUAddPopupT(&ppd))
return;
}
MessageBox(NULL, message, caption, MB_OK | flags);
}
void CToxProto::ShowNotification(const TCHAR *message, int flags, MCONTACT hContact)
{
ShowNotification(_T(MODULE), message, flags, hContact);
}
bool CToxProto::IsFileExists(std::tstring path)
{
return _taccess(path.c_str(), 0) == 0;
}
MEVENT CToxProto::AddEventToDb(MCONTACT hContact, WORD type, DWORD timestamp, DWORD flags, PBYTE pBlob, size_t cbBlob)
{
DBEVENTINFO dbei = { sizeof(dbei) };
dbei.szModule = this->m_szModuleName;
dbei.timestamp = timestamp;
dbei.eventType = type;
dbei.cbBlob = (DWORD)cbBlob;
dbei.pBlob = pBlob;
dbei.flags = flags;
return db_event_add(hContact, &dbei);
}
INT_PTR CToxProto::ParseToxUri(WPARAM, LPARAM lParam)
{
TCHAR *uri = (TCHAR*)lParam;
if (mir_tstrlen(uri) <= 4)
return 1;
if (Accounts.getCount() == 0)
return 1;
CToxProto *proto = NULL;
for (size_t i = 0; i < Accounts.getCount(); i++)
{
if (Accounts[i]->IsOnline())
{
proto = Accounts[i];
break;
}
}
if (proto == NULL)
return 1;
if (_tcschr(uri, _T('@')) != NULL)
return 1;
PROTOSEARCHRESULT psr = { sizeof(psr) };
psr.flags = PSR_TCHAR;
psr.id = mir_tstrdup(&uri[4]);
ADDCONTACTSTRUCT acs = { HANDLE_SEARCHRESULT };
acs.szProto = proto->m_szModuleName;
acs.psr = &psr;
CallService(MS_ADDCONTACT_SHOW, 0, (LPARAM)&acs);
return 0;
}
|