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
|
/*
* Smart Auto Replier (SAR) - auto replier plugin for Miranda IM
*
* Copyright (C) 2004 - 2012 by Volodymyr M. Shcherbyna <volodymyr@shcherbyna.com>
*
* This file is part of SAR.
*
* SAR 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.
*
* SAR 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 SAR. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
#include "messageshandler.h"
#include "SarLuaScript.h"
#include <time.h>
extern CCrushLog CRUSHLOGOBJ;
/// init static members...
CMessagesHandler * CMessagesHandler::m_pThis = NULL;
/// thread that is checking
/// users that sent messages,
/// analize sent time and if
/// reply delay is greater then
/// difference between current time and
/// sent time thread deletes item.
INT WINAPI ContactsFetcherThread(LPVOID lp)
{
BEGIN_PROTECT_AND_LOG_CODE
#define SLEEP_TIME 50
CMessagesHandler *pHolder = CMessagesHandler::GetObject();
if (pHolder)
{
while (pHolder->m_bShouldWork)
{
WaitForSingleObject(pHolder->m_hEnableEvent, INFINITE);
if (!pHolder->m_bShouldWork)
break;
EnterCriticalSection(&pHolder->m_critSect);
if (pHolder->m_contacts.size() == 0)
{
LeaveCriticalSection(&pHolder->m_critSect);
Sleep (SLEEP_TIME);
continue;
}
SYSTEMTIME sysTime = {0};
FILETIME ft = {0};
LARGE_INTEGER liNow = {0};
GetLocalTime (&sysTime);
SystemTimeToFileTime(&sysTime, &ft);
memcpy(&liNow, &ft, sizeof(liNow));
ContactsMap::iterator it;
CONTACT_METAINFO rawm = {0};
LARGE_INTEGER liDiff = {0};
for (it = pHolder->m_contacts.begin(); it != pHolder->m_contacts.end(); it++)
{
if (pHolder->m_contacts.size() == 0)
{
break;
}
rawm = it->second;
liDiff.QuadPart = liNow.QuadPart - rawm.StartTime.QuadPart;
if (liDiff.QuadPart >= rawm.DiffTime.QuadPart)
{
if (pHolder->m_contacts.size() == 1)
{
pHolder->m_contacts.clear();
break;
}
else
pHolder->m_contacts.erase(it);
}
}
LeaveCriticalSection(&pHolder->m_critSect);
Sleep (SLEEP_TIME);
}
}
END_PROTECT_AND_LOG_CODE
return FALSE;
}
/// ctor of main plugin manager
CMessagesHandler::CMessagesHandler(void) : IMSingeltone<CMessagesHandler>(this),
m_hFetcherThread(NULL),
m_hEnableEvent(NULL),
m_bShouldWork(true),
m_bInited(false)
{
BEGIN_PROTECT_AND_LOG_CODE
m_settings.Init();
END_PROTECT_AND_LOG_CODE
}
/// dtor of main plugin manager
CMessagesHandler::~CMessagesHandler(void)
{
BEGIN_PROTECT_AND_LOG_CODE
m_settings.DeInit();
m_bShouldWork = false;
CMessagesHandler::m_pThis = NULL;
END_PROTECT_AND_LOG_CODE
}
/// enables or disables feature
void CMessagesHandler::MakeAction(bool bEnable)
{
BEGIN_PROTECT_AND_LOG_CODE
REPLYER_SETTINGS & s = m_settings.getSettings();
s.bEnabled = bEnable;
m_settings.setSettings(s);
if (bEnable)
{
HookEvents();
SetEvent (m_hEnableEvent);
}
else
UnHookEvents();
END_PROTECT_AND_LOG_CODE
}
bool CMessagesHandler::AllowReply(HANDLE hContact)
{
BEGIN_PROTECT_AND_LOG_CODE
if (!m_settings.getSettings().bEnabled)
return FALSE;
ContactsMap::iterator it;
bool bRetVal = false;
EnterCriticalSection(&m_critSect);
it = m_contacts.find(hContact);
SYSTEMTIME sysTime = {0};
FILETIME ft = {0};
GetLocalTime (&sysTime);
SystemTimeToFileTime(&sysTime, &ft);
if (it == m_contacts.end())
{ /// no such contact...
CONTACT_METAINFO cm = {0};
memcpy(&cm.StartTime, &ft, sizeof(cm.StartTime));
cm.DiffTime.QuadPart = m_settings.getSettings().ReplayDelay * nano100SecInSec;
ContactsPair p(hContact, cm);
m_contacts.insert(p);
bRetVal = true;
}
else
{ /// there is one...
memcpy(&it->second.StartTime, &ft, sizeof(it->second.StartTime));
}
LeaveCriticalSection(&m_critSect);
return bRetVal;
END_PROTECT_AND_LOG_CODE
return false;
}
void CMessagesHandler::HookEvents(void)
{
BEGIN_PROTECT_AND_LOG_CODE
#ifdef _DEBUG
#endif
InitializeCriticalSection(&m_critSect);
m_settings.Init();
#ifdef _DEBUG
bool bEnabled = m_settings.getSettings().bEnabled;
#endif
m_hEnableEvent = CreateEvent(NULL, TRUE, m_settings.getSettings().bEnabled, NULL);
DWORD dw = 0;
m_bShouldWork = true;
m_hFetcherThread = CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&ContactsFetcherThread, NULL, NULL, &dw);
m_hEvents[0] = HookEvent(ME_DB_EVENT_ADDED, CMessagesHandler::EventAddHook);
m_bInited = true;
END_PROTECT_AND_LOG_CODE
}
void CMessagesHandler::UnHookEvents(void)
{
BEGIN_PROTECT_AND_LOG_CODE
m_bShouldWork = false;
if (!m_bInited)
return;
SetEvent(m_hEnableEvent);
for (size_t i = 0; i < HOOKS_NUM; i++)
UnhookEvent(m_hEvents[i]);
WaitForSingleObject(m_hFetcherThread, INFINITE);
DeleteCriticalSection(&m_critSect);
CloseHandle(m_hEnableEvent);
//m_settings.DeInit();
m_hEnableEvent = NULL;
m_hFetcherThread = NULL;
END_PROTECT_AND_LOG_CODE
}
LPTSTR CMessagesHandler::GetContactName(HANDLE hContact)
{
LPARAM lFlags = GCDNF_NOMYHANDLE;
#ifdef _UNICODE
lFlags |= GCDNF_UNICODE;
#endif
BEGIN_PROTECT_AND_LOG_CODE
return reinterpret_cast<LPTSTR>(CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)hContact, lFlags));
END_PROTECT_AND_LOG_CODE
return NULL;
}
int CMessagesHandler::SendProtoMess(HANDLE hContact, LPCSTR szMess)
{
BEGIN_PROTECT_AND_LOG_CODE
return CallContactService(hContact, PSS_MESSAGE, 0, reinterpret_cast<LPARAM>(szMess));
END_PROTECT_AND_LOG_CODE
return 0;
}
/** Convert unicode to ansi (utf16 to utf8)
* @return ansi string or null
*/
char* Utf16toUtf8(LPCWSTR lpwszStrIn, UINT & nSize)
{
LPSTR pszOut = NULL;
if (lpwszStrIn != NULL)
{
#define SAFE_DELTA 2
int nInputStrLen = (int)wcslen(lpwszStrIn);
int nOutputStrLen = WideCharToMultiByte(CP_UTF8, 0, lpwszStrIn, nInputStrLen, NULL, 0, 0, 0);
if (nOutputStrLen == 0)
{
return NULL;
}
nOutputStrLen += SAFE_DELTA;
pszOut = (LPSTR)malloc(nOutputStrLen);
if (pszOut)
{
nSize = nOutputStrLen - SAFE_DELTA;
memset(pszOut, 0x00, nOutputStrLen);
WideCharToMultiByte(CP_UTF8, 0, lpwszStrIn, nInputStrLen, pszOut, nOutputStrLen, 0, 0);
}
}
return pszOut;
}
/** Convert unicode to ansi (utf16 to utf8)
* @return ansi string or null
*/
wchar_t* Utf8toUtf16(CHAR * szStrIn, UINT & nSize)
{
wchar_t * pszOut = NULL;
if (szStrIn != NULL)
{
#define SAFE_DELTA 2
int nInputStrLen = (int)nSize;
int nOutputStrLen = MultiByteToWideChar(CP_UTF8, 0, szStrIn, nInputStrLen, NULL, 0);
if (nOutputStrLen == 0)
{
return NULL;
}
nOutputStrLen += SAFE_DELTA;
pszOut = (wchar_t*)malloc(nOutputStrLen * sizeof(wchar_t));
if (pszOut)
{
nSize = nOutputStrLen - SAFE_DELTA;
memset(pszOut, 0x00, nOutputStrLen * sizeof(wchar_t));
MultiByteToWideChar(CP_UTF8, 0, szStrIn, nInputStrLen, pszOut, nOutputStrLen);
}
}
return pszOut;
}
/// this handle is invoked wnen
/// event is added to db
int CMessagesHandler::EventAddHook(WPARAM wp, LPARAM lp)
{
BEGIN_PROTECT_AND_LOG_CODE
DWORD dwOffset = static_cast<DWORD> (lp);
HANDLE hContact = reinterpret_cast<HANDLE>(wp);
DBEVENTINFO dbei;
if (!hContact || !dwOffset)
{
return FALSE; /// unspecifyed error
}
ZeroMemory(&dbei, sizeof(dbei));
dbei.cbSize = sizeof(dbei);
dbei.cbBlob = 0;
db_event_get((HANDLE)lp, &dbei); /// detect size of msg
if ((dbei.eventType != EVENTTYPE_MESSAGE) || (dbei.flags == DBEF_READ) || (dbei.flags == DBEF_SENT) )
{
return FALSE; /// we need EVENTTYPE_MESSAGE event..
}
else
{ /// needed event has occured..
if (!dbei.cbBlob) /// invalid size
{
return FALSE;
}
dbei.pBlob = new BYTE[dbei.cbBlob];
if (dbei.pBlob)
{
LPARAM lParam = GCDNF_NOMYHANDLE;
#ifdef _UNICODE
lParam |= GCDNF_UNICODE;
#endif
db_event_get((HANDLE)lp, &dbei);
TCHAR * szMessage = DbGetEventTextT(&dbei, 0);
TCHAR * szContactName = reinterpret_cast<TCHAR*>(CallService(MS_CLIST_GETCONTACTDISPLAYNAME, wp, lParam));
CMessagesHandler *ptrHolder = NULL;
ptrHolder = CMessagesHandler::GetObject();
if (!szContactName || !ptrHolder)
{
return FALSE;
}
if (!ptrHolder->AllowReply(hContact))
{
return FALSE;
}
TCHAR * lpMessage = NULL;
{
RULE_METAINFO inf = {0};
inf.ContactName = szContactName;
/// analizes all rules and formes autoreply
/// message - it's stored in lpMessage
/// then - just sent it to user
CSettingsHandler & settingsManager = ptrHolder->getSettings();
settingsManager.getStorage().IsRuleMatch(inf, lpMessage, szMessage);
{
/// do the lua trick
CLuaBridge luaBridge;
CSarLuaScript script(luaBridge);
UINT nReplyScriptLength = 0;
CHAR * szReplyScript = NULL;
szReplyScript = Utf16toUtf8(lpMessage, nReplyScriptLength);
if (szReplyScript != NULL)
{
UINT nUserMessage = 0;
CHAR * szUserMessage = Utf16toUtf8(szMessage, nUserMessage);
UINT nUserName = 0;
CHAR * szUserName = Utf16toUtf8(szContactName, nUserName);
script.CompileScript(szReplyScript, nReplyScriptLength);
script.SelectScriptFunction("SAR");
script.AddParam((int)hContact);
script.AddParam(szUserMessage);
script.AddParam(szUserName);
script.AddParam((char*)dbei.szModule);
script.Run();
free(szReplyScript);
free(szUserMessage);
free(szUserName);
}
}
mir_free(szMessage);
delete lpMessage;
delete dbei.pBlob;
return FALSE;
}
}
}
END_PROTECT_AND_LOG_CODE
return FALSE;
}
void CMessagesHandler::WriteToHistory(LPTSTR lpMsg, HANDLE hContact)
{
LPTSTR lp1 = TranslateTS(TEXT("Generated autoreply:\r\n"));
LPTSTR lpszMess = new TCHAR[_tcslen(lpMsg) + _tcslen(lp1)];
if (lpszMess == NULL)
return;
memset(lpszMess, 0, (_tcslen(lpMsg) + _tcslen(lp1)) * sizeof(TCHAR));
_tcscpy(lpszMess, lp1);
_tcscat(lpszMess, lpMsg);
DBEVENTINFO dbei = {0};
dbei.cbSize = sizeof(dbei);
dbei.eventType = EVENTTYPE_MESSAGE;
dbei.flags = DBEF_READ;
dbei.szModule = (char*)CallService(MS_PROTO_GETCONTACTBASEPROTO,(WPARAM)hContact, 0);
dbei.timestamp = time(NULL);
dbei.cbBlob = _tcslen(lpszMess) + 1;
dbei.pBlob = (PBYTE)lpszMess;
db_event_add(hContact, &dbei);
delete lpszMess;
}
/// getting settings..
CSettingsHandler & CMessagesHandler::getSettings(void)
{
BEGIN_PROTECT_AND_LOG_CODE
return m_settings;
END_PROTECT_AND_LOG_CODE
}
|