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
|
////////////////////////////////////////////////////////////////////////////////
// Gadu-Gadu Plugin for Miranda IM
//
// Copyright (c) 2003-2009 Adam Strzelecki <ono+miranda@java.pl>
// Copyright (c) 2009-2012 Bartosz Bia³ek
//
// 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; either version 2
// of the License, or (at your option) any later version.
//
// 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, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
////////////////////////////////////////////////////////////////////////////////
#include "gg.h"
#include "version.h"
#include <errno.h>
// Plugin info
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
__PLUGIN_NAME,
__VERSION_DWORD,
__DESCRIPTION,
__AUTHOR,
__AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
// {F3FF65F3-250E-416A-BEE9-58C93F85AB33}
{ 0xf3ff65f3, 0x250e, 0x416a, { 0xbe, 0xe9, 0x58, 0xc9, 0x3f, 0x85, 0xab, 0x33 } }
};
// Other variables
HINSTANCE hInstance;
XML_API xi;
SSL_API si;
CLIST_INTERFACE *pcli;
int hLangpack;
LIST<GGPROTO> g_Instances(1, PtrKeySortT);
// Event hooks
static HANDLE hHookModulesLoaded = NULL;
static HANDLE hHookPreShutdown = NULL;
static unsigned long crc_table[256];
//////////////////////////////////////////////////////////
// Extra winsock function for error description
TCHAR* ws_strerror(int code)
{
static TCHAR err_desc[160];
// Not a windows error display WinSock
if (code == 0)
{
TCHAR buff[128];
int len = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, NULL, WSAGetLastError(), 0, buff, SIZEOF(buff), NULL);
if (len == 0)
mir_sntprintf(err_desc, SIZEOF(err_desc), _T("WinSock %u: Unknown error."), WSAGetLastError());
else
mir_sntprintf(err_desc, SIZEOF(err_desc), _T("WinSock %d: %s"), WSAGetLastError(), buff);
return err_desc;
}
// Return normal error
return _tcserror(code);
}
//////////////////////////////////////////////////////////
// Build the crc table
void crc_gentable(void)
{
unsigned long crc, poly;
int i, j;
poly = 0xEDB88320L;
for (i = 0; i < 256; i++)
{
crc = i;
for (j = 8; j > 0; j--)
{
if (crc & 1)
crc = (crc >> 1) ^ poly;
else
crc >>= 1;
}
crc_table[i] = crc;
}
}
//////////////////////////////////////////////////////////
// Calculate the crc value
unsigned long crc_get(char *mem)
{
register unsigned long crc = 0xFFFFFFFF;
while(mem && *mem)
crc = ((crc>>8) & 0x00FFFFFF) ^ crc_table[(crc ^ *(mem++)) & 0xFF];
return (crc ^ 0xFFFFFFFF);
}
//////////////////////////////////////////////////////////
// http_error_string()
//
// returns http error text
const TCHAR *http_error_string(int h)
{
switch (h)
{
case 0:
return (errno == ENOMEM) ? TranslateT("HTTP failed memory") : TranslateT("HTTP failed connecting");
case GG_ERROR_RESOLVING:
return TranslateT("HTTP failed resolving");
case GG_ERROR_CONNECTING:
return TranslateT("HTTP failed connecting");
case GG_ERROR_READING:
return TranslateT("HTTP failed reading");
case GG_ERROR_WRITING:
return TranslateT("HTTP failed writing");
}
return TranslateT("Unknown HTTP error");
}
//////////////////////////////////////////////////////////
// Gets plugin info
extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
}
extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_PROTOCOL, MIID_LAST};
//////////////////////////////////////////////////////////
// Cleanups from last plugin
void GGPROTO::cleanuplastplugin(DWORD version)
{
// Store current plugin version
setDword(GG_PLUGINVERSION, pluginInfo.version);
//1. clean files: %miranda_avatarcache%\GG\*.(null)
if (version < PLUGIN_MAKE_VERSION(0, 11, 0, 2)){
netlog("cleanuplastplugin() 1: version=%d Cleaning junk avatar files from < 0.11.0.2", version);
TCHAR avatarsPath[MAX_PATH];
if (hAvatarsFolder == NULL || FoldersGetCustomPathT(hAvatarsFolder, avatarsPath, MAX_PATH, _T(""))) {
ptrT tmpPath( Utils_ReplaceVarsT( _T("%miranda_avatarcache%")));
mir_sntprintf(avatarsPath, MAX_PATH, _T("%s\\%s"), (TCHAR*)tmpPath, m_tszUserName);
}
netlog("cleanuplastplugin() 1: miranda_avatarcache = %S", avatarsPath);
if (avatarsPath != NULL){
HANDLE hFind = INVALID_HANDLE_VALUE;
TCHAR spec[MAX_PATH + 10];
mir_sntprintf(spec, MAX_PATH + 10, _T("%s\\*.(null)"), avatarsPath);
WIN32_FIND_DATA ffd;
hFind = FindFirstFile(spec, &ffd);
if (hFind != INVALID_HANDLE_VALUE) {
do {
TCHAR filePathT [2*MAX_PATH + 10];
mir_sntprintf(filePathT, 2*MAX_PATH + 10, _T("%s\\%s"), avatarsPath, ffd.cFileName);
if (!_taccess(filePathT, 0)){
netlog("cleanuplastplugin() 1: remove file = %S", filePathT);
_tremove(filePathT);
}
} while (FindNextFile(hFind, &ffd) != 0);
FindClose(hFind);
}
}
}
}
//////////////////////////////////////////////////////////
// When Miranda loaded its modules
static int gg_modulesloaded(WPARAM wParam, LPARAM lParam)
{
// Get SSL API
mir_getSI(&si);
// File Association Manager support
gg_links_init();
return 0;
}
//////////////////////////////////////////////////////////
// When Miranda starting shutdown sequence
static int gg_preshutdown(WPARAM wParam, LPARAM lParam)
{
gg_links_destroy();
return 0;
}
//////////////////////////////////////////////////////////
// Gets protocol instance associated with a contact
static GGPROTO* gg_getprotoinstance(HANDLE hContact)
{
char* szProto = GetContactProto(hContact);
if (szProto == NULL)
return NULL;
for (int i=0; i < g_Instances.getCount(); i++)
if (strcmp(szProto, g_Instances[i]->m_szModuleName) == 0)
return g_Instances[i];
return NULL;
}
//////////////////////////////////////////////////////////
// Handles PrebuildContactMenu event
static int gg_prebuildcontactmenu(WPARAM wParam, LPARAM lParam)
{
const HANDLE hContact = (HANDLE)wParam;
GGPROTO* gg = gg_getprotoinstance(hContact);
if (gg == NULL)
return 0;
CLISTMENUITEM mi = { sizeof(mi) };
mi.flags = CMIM_NAME | CMIM_FLAGS | CMIF_TCHAR;
if ( gg->getDword(hContact, GG_KEY_UIN, 0) == gg->getByte(GG_KEY_UIN, 0) ||
gg->isChatRoom(hContact) || db_get_b(hContact, "CList", "NotOnList", 0))
mi.flags |= CMIF_HIDDEN;
mi.ptszName = gg->getByte(hContact, GG_KEY_BLOCK, 0) ? LPGENT("&Unblock") : LPGENT("&Block");
Menu_ModifyItem(gg->hBlockMenuItem, &mi);
return 0;
}
//////////////////////////////////////////////////////////
// Contact block service function
INT_PTR GGPROTO::blockuser(WPARAM wParam, LPARAM lParam)
{
const HANDLE hContact = (HANDLE)wParam;
setByte(hContact, GG_KEY_BLOCK, !getByte(hContact, GG_KEY_BLOCK, 0));
notifyuser(hContact, 1);
return 0;
}
//////////////////////////////////////////////////////////
// Contact blocking initialization
#define GGS_BLOCKUSER "/BlockUser"
void GGPROTO::block_init()
{
char service[64];
mir_snprintf(service, sizeof(service), "%s%s", m_szModuleName, GGS_BLOCKUSER);
CreateProtoService(GGS_BLOCKUSER, &GGPROTO::blockuser);
CLISTMENUITEM mi = { sizeof(mi) };
mi.flags = CMIF_TCHAR;
mi.position = -500050000;
mi.icolibItem = iconList[8].hIcolib;
mi.ptszName = LPGENT("&Block");
mi.pszService = service;
mi.pszContactOwner = m_szModuleName;
hBlockMenuItem = Menu_AddContactMenuItem(&mi);
::HookEvent(ME_CLIST_PREBUILDCONTACTMENU, gg_prebuildcontactmenu);
}
//////////////////////////////////////////////////////////
// Contact blocking uninitialization
void GGPROTO::block_uninit()
{
CallService(MS_CLIST_REMOVECONTACTMENUITEM, (WPARAM)hBlockMenuItem, 0);
}
//////////////////////////////////////////////////////////
// Menus initialization
void GGPROTO::menus_init()
{
CLISTMENUITEM mi = { sizeof(mi) };
HGENMENU hGCRoot, hCLRoot, hRoot = MO_GetProtoRootMenu(m_szModuleName);
if (hRoot == NULL) {
mi.ptszName = m_tszUserName;
mi.position = 500090000;
mi.hParentMenu = HGENMENU_ROOT;
mi.flags = CMIF_ROOTPOPUP | CMIF_TCHAR | CMIF_KEEPUNTRANSLATED;
mi.icolibItem = iconList[0].hIcolib;
hGCRoot = hCLRoot = hRoot = hMenuRoot = Menu_AddProtoMenuItem(&mi);
}
else {
mi.hParentMenu = hRoot;
mi.flags = CMIF_ROOTHANDLE | CMIF_TCHAR;
mi.ptszName = LPGENT("Conference");
mi.position = 200001;
mi.icolibItem = iconList[14].hIcolib;
hGCRoot = Menu_AddProtoMenuItem(&mi);
mi.ptszName = LPGENT("Contact list");
mi.position = 200002;
mi.icolibItem = iconList[7].hIcolib;
hCLRoot = Menu_AddProtoMenuItem(&mi);
if (hMenuRoot)
CallService(MS_CLIST_REMOVEMAINMENUITEM, (WPARAM)hMenuRoot, 0);
hMenuRoot = NULL;
}
gc_menus_init(hGCRoot);
import_init(hCLRoot);
sessions_menus_init(hRoot);
}
//////////////////////////////////////////////////////////
// Module instance initialization
static GGPROTO *gg_proto_init(const char* pszProtoName, const TCHAR* tszUserName)
{
GGPROTO *gg = new GGPROTO(pszProtoName, tszUserName);
g_Instances.insert(gg);
return gg;
}
//////////////////////////////////////////////////////////
// Module instance uninitialization
static int gg_proto_uninit(PROTO_INTERFACE *proto)
{
GGPROTO *gg = (GGPROTO *)proto;
g_Instances.remove(gg);
delete gg;
return 0;
}
//////////////////////////////////////////////////////////
// When plugin is loaded
extern "C" int __declspec(dllexport) Load(void)
{
mir_getXI(&xi);
mir_getLP(&pluginInfo);
mir_getCLI();
// Hook system events
hHookModulesLoaded = HookEvent(ME_SYSTEM_MODULESLOADED, gg_modulesloaded);
hHookPreShutdown = HookEvent(ME_SYSTEM_PRESHUTDOWN, gg_preshutdown);
// Prepare protocol name
PROTOCOLDESCRIPTOR pd = { sizeof(pd) };
pd.szName = GGDEF_PROTO;
pd.fnInit = (pfnInitProto)gg_proto_init;
pd.fnUninit = (pfnUninitProto)gg_proto_uninit;
pd.type = PROTOTYPE_PROTOCOL;
// Register module
CallService(MS_PROTO_REGISTERMODULE, 0, (LPARAM) &pd);
gg_links_instancemenu_init();
return 0;
}
//////////////////////////////////////////////////////////
// When plugin is unloaded
extern "C" int __declspec(dllexport) Unload()
{
g_Instances.destroy();
// Cleanup WinSock
WSACleanup();
return 0;
}
//////////////////////////////////////////////////////////
// DEBUGING FUNCTIONS
struct
{
int type;
char *text;
}
static const ggdebug_eventype2string[] =
{
{GG_EVENT_NONE, "GG_EVENT_NONE"},
{GG_EVENT_MSG, "GG_EVENT_MSG"},
{GG_EVENT_NOTIFY, "GG_EVENT_NOTIFY"},
{GG_EVENT_NOTIFY_DESCR, "GG_EVENT_NOTIFY_DESCR"},
{GG_EVENT_STATUS, "GG_EVENT_STATUS"},
{GG_EVENT_ACK, "GG_EVENT_ACK"},
{GG_EVENT_PONG, "GG_EVENT_PONG"},
{GG_EVENT_CONN_FAILED, "GG_EVENT_CONN_FAILED"},
{GG_EVENT_CONN_SUCCESS, "GG_EVENT_CONN_SUCCESS"},
{GG_EVENT_DISCONNECT, "GG_EVENT_DISCONNECT"},
{GG_EVENT_DCC_NEW, "GG_EVENT_DCC_NEW"},
{GG_EVENT_DCC_ERROR, "GG_EVENT_DCC_ERROR"},
{GG_EVENT_DCC_DONE, "GG_EVENT_DCC_DONE"},
{GG_EVENT_DCC_CLIENT_ACCEPT, "GG_EVENT_DCC_CLIENT_ACCEPT"},
{GG_EVENT_DCC_CALLBACK, "GG_EVENT_DCC_CALLBACK"},
{GG_EVENT_DCC_NEED_FILE_INFO, "GG_EVENT_DCC_NEED_FILE_INFO"},
{GG_EVENT_DCC_NEED_FILE_ACK, "GG_EVENT_DCC_NEED_FILE_ACK"},
{GG_EVENT_DCC_NEED_VOICE_ACK, "GG_EVENT_DCC_NEED_VOICE_ACK"},
{GG_EVENT_DCC_VOICE_DATA, "GG_EVENT_DCC_VOICE_DATA"},
{GG_EVENT_PUBDIR50_SEARCH_REPLY,"GG_EVENT_PUBDIR50_SEARCH_REPLY"},
{GG_EVENT_PUBDIR50_READ, "GG_EVENT_PUBDIR50_READ"},
{GG_EVENT_PUBDIR50_WRITE, "GG_EVENT_PUBDIR50_WRITE"},
{GG_EVENT_STATUS60, "GG_EVENT_STATUS60"},
{GG_EVENT_NOTIFY60, "GG_EVENT_NOTIFY60"},
{GG_EVENT_USERLIST, "GG_EVENT_USERLIST"},
{GG_EVENT_IMAGE_REQUEST, "GG_EVENT_IMAGE_REQUEST"},
{GG_EVENT_IMAGE_REPLY, "GG_EVENT_IMAGE_REPLY"},
{GG_EVENT_DCC_ACK, "GG_EVENT_DCC_ACK"},
{GG_EVENT_DCC7_NEW, "GG_EVENT_DCC7_NEW"},
{GG_EVENT_DCC7_ACCEPT, "GG_EVENT_DCC7_ACCEPT"},
{GG_EVENT_DCC7_REJECT, "GG_EVENT_DCC7_REJECT"},
{GG_EVENT_DCC7_CONNECTED, "GG_EVENT_DCC7_CONNECTED"},
{GG_EVENT_DCC7_ERROR, "GG_EVENT_DCC7_ERROR"},
{GG_EVENT_DCC7_DONE, "GG_EVENT_DCC7_DONE"},
{GG_EVENT_DCC7_PENDING, "GG_EVENT_DCC7_PENDING"},
{GG_EVENT_XML_EVENT, "GG_EVENT_XML_EVENT"},
{GG_EVENT_DISCONNECT_ACK, "GG_EVENT_DISCONNECT_ACK"},
{GG_EVENT_XML_ACTION, "GG_EVENT_XML_ACTION"},
{GG_EVENT_TYPING_NOTIFICATION, "GG_EVENT_TYPING_NOTIFICATION"},
{GG_EVENT_USER_DATA, "GG_EVENT_USER_DATA"},
{GG_EVENT_MULTILOGON_MSG, "GG_EVENT_MULTILOGON_MSG"},
{GG_EVENT_MULTILOGON_INFO, "GG_EVENT_MULTILOGON_INFO"},
{-1, "<unknown event>"}
};
const char *ggdebug_eventtype(gg_event *e)
{
int i;
for(i = 0; ggdebug_eventype2string[i].type != -1; i++)
if (ggdebug_eventype2string[i].type == e->type)
return ggdebug_eventype2string[i].text;
return ggdebug_eventype2string[i].text;
}
//////////////////////////////////////////////////////////
// Log funcion
#define PREFIXLEN 6 //prefix present in DEBUGMODE contains GetCurrentThreadId()
#ifdef DEBUGMODE
void gg_debughandler(int level, const char *format, va_list ap)
{
char szText[1024], *szFormat = _strdup(format);
// Kill end line
char *nl = strrchr(szFormat, '\n');
if (nl) *nl = 0;
strncpy(szText + PREFIXLEN, "[libgadu] \0", sizeof(szText) - PREFIXLEN);
char prefix[6];
mir_snprintf(prefix, PREFIXLEN, "%lu", GetCurrentThreadId());
size_t prefixLen = strlen(prefix);
if (prefixLen < PREFIXLEN) memset(prefix + prefixLen, ' ', PREFIXLEN - prefixLen);
memcpy(szText, prefix, PREFIXLEN);
mir_vsnprintf(szText + strlen(szText), sizeof(szText) - strlen(szText), szFormat, ap);
CallService(MS_NETLIB_LOG, (WPARAM) NULL, (LPARAM) szText);
free(szFormat);
}
#endif
int GGPROTO::netlog(const char *fmt, ...)
{
va_list va;
char szText[1024];
memset(szText, '\0', PREFIXLEN + 1);
#ifdef DEBUGMODE
char prefix[6];
mir_snprintf(prefix, PREFIXLEN, "%lu", GetCurrentThreadId());
size_t prefixLen = strlen(prefix);
if (prefixLen < PREFIXLEN) memset(prefix + prefixLen, ' ', PREFIXLEN - prefixLen);
memcpy(szText, prefix, PREFIXLEN);
#endif
va_start(va, fmt);
mir_vsnprintf(szText + strlen(szText), sizeof(szText) - strlen(szText), fmt, va);
va_end(va);
return CallService(MS_NETLIB_LOG, (WPARAM)netlib, (LPARAM) szText);
}
//////////////////////////////////////////////////////////
// main DLL function
BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, LPVOID reserved)
{
crc_gentable();
hInstance = hInst;
#ifdef DEBUGMODE
gg_debug_level = GG_DEBUG_FUNCTION;
gg_debug_handler = gg_debughandler;
#endif
return TRUE;
}
|