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
|
/*
Variables Plugin for Miranda-IM (www.miranda-im.org)
Copyright 2003-2006 P. Boon
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 "stdafx.h"
struct _tagType
{
int cnfCode;
wchar_t* str;
}
static builtinCnfs[] =
{
{ CNF_FIRSTNAME, STR_FIRSTNAME },
{ CNF_LASTNAME, STR_LASTNAME },
{ CNF_NICK, STR_NICK },
{ CNF_CUSTOMNICK, STR_CUSTOMNICK },
{ CNF_EMAIL, STR_EMAIL },
{ CNF_CITY, STR_CITY },
{ CNF_STATE, STR_STATE },
{ CNF_COUNTRY, STR_COUNTRY },
{ CNF_PHONE, STR_PHONE },
{ CNF_HOMEPAGE, STR_HOMEPAGE },
{ CNF_ABOUT, STR_ABOUT },
{ CNF_GENDER, STR_GENDER },
{ CNF_AGE, STR_AGE },
{ CNF_FIRSTLAST, STR_FIRSTLAST },
{ CNF_UNIQUEID, STR_UNIQUEID },
{ CNF_DISPLAY, STR_DISPLAY },
{ CNF_FAX, STR_FAX },
{ CNF_CELLULAR, STR_CELLULAR },
{ CNF_TIMEZONE, STR_TIMEZONE },
{ CNF_MYNOTES, STR_MYNOTES },
{ CNF_BIRTHDAY, STR_BIRTHDAY },
{ CNF_BIRTHMONTH, STR_BIRTHMONTH },
{ CNF_BIRTHYEAR, STR_BIRTHYEAR },
{ CNF_STREET, STR_STREET },
{ CNF_ZIP, STR_ZIP },
{ CNF_LANGUAGE1, STR_LANGUAGE1 },
{ CNF_LANGUAGE2, STR_LANGUAGE2 },
{ CNF_LANGUAGE3, STR_LANGUAGE3 },
{ CNF_CONAME, STR_CONAME },
{ CNF_CODEPT, STR_CODEPT },
{ CNF_COPOSITION, STR_COPOSITION },
{ CNF_COSTREET, STR_COSTREET },
{ CNF_COCITY, STR_COCITY },
{ CNF_COSTATE, STR_COSTATE },
{ CNF_COZIP, STR_COZIP },
{ CNF_COCOUNTRY, STR_COCOUNTRY },
{ CNF_COHOMEPAGE, STR_COHOMEPAGE },
{ CCNF_ACCOUNT, STR_ACCOUNT },
{ CCNF_PROTOCOL, STR_PROTOCOL },
{ CCNF_STATUS, STR_STATUS },
{ CCNF_INTERNALIP, STR_INTERNALIP },
{ CCNF_EXTERNALIP, STR_EXTERNALIP },
{ CCNF_GROUP, STR_GROUP },
{ CCNF_PROTOID, STR_PROTOID }
};
/* contact cache entry */
struct CONTACTCE
{
DWORD flags;
wchar_t* tszContact;
MCONTACT hContact;
};
static int SortContactCache(const CONTACTCE *p1, const CONTACTCE *p2)
{
if (p1->flags != p2->flags)
return (p1->flags > p2->flags) ? 1 : -1;
return wcscmp(p1->tszContact, p2->tszContact);
}
/* cache for 'getcontactfromstring' service */
static OBJLIST<CONTACTCE> arContactCache(20, SortContactCache);
static mir_cs csContactCache;
// converts a string into a CNF_ type
BYTE getContactInfoType(wchar_t* type)
{
if (type == nullptr || mir_wstrlen(type) == 0)
return 0;
for (auto &it : builtinCnfs)
if (!mir_wstrcmp(it.str, type))
return it.cnfCode;
return 0;
}
// returns info about a contact as a string
wchar_t* getContactInfoT(BYTE type, MCONTACT hContact)
{
/* returns dynamic allocated buffer with info, or NULL if failed */
if (hContact == NULL)
return nullptr;
char *szProto = GetContactProto(hContact);
if (szProto == nullptr)
return nullptr;
wchar_t *res = nullptr;
switch (type) {
case CCNF_PROTOID:
return mir_a2u(szProto);
case CCNF_ACCOUNT:
{
PROTOACCOUNT *pa = Proto_GetAccount(szProto);
return pa ? mir_wstrdup(pa->tszAccountName) : nullptr;
}
case CCNF_PROTOCOL:
char protoname[128];
if (CallProtoService(szProto, PS_GETNAME, (WPARAM)sizeof(protoname), (LPARAM)protoname))
return nullptr;
return mir_a2u(protoname);
case CCNF_STATUS:
return mir_wstrdup(Clist_GetStatusModeDescription(db_get_w(hContact, szProto, "Status", ID_STATUS_OFFLINE), 0));
case CCNF_INTERNALIP:
case CCNF_EXTERNALIP:
{
DWORD ip = db_get_dw(hContact, szProto, (type == CCNF_INTERNALIP) ? "RealIP" : "IP", 0);
if (ip != 0) {
struct in_addr in;
in.s_addr = htonl(ip);
return mir_a2u(inet_ntoa(in));
}
}
return nullptr;
case CCNF_GROUP:
if ((res = db_get_wsa(hContact, "CList", "Group")) != nullptr)
return res;
break;
case CNF_UNIQUEID:
//UID for ChatRoom
if (db_get_b(hContact, szProto, "ChatRoom", 0) == 1)
if ((res = db_get_wsa(hContact, szProto, "ChatRoomID")) != nullptr)
return res;
//UID for other contact
break;
}
return Contact_GetInfo(type, hContact);
}
// MS_VARS_GETCONTACTFROMSTRING
MCONTACT getContactFromString(const wchar_t *tszContact, DWORD dwFlags, int nMatch)
{
/* service to retrieve a contact's HANDLE from a given string */
if (tszContact == nullptr || *tszContact == 0)
return INVALID_CONTACT_ID;
bool bReturnCount;
if (dwFlags & CI_NEEDCOUNT) {
dwFlags &= ~CI_NEEDCOUNT;
bReturnCount = true;
}
else bReturnCount = false;
// search the cache
{
CONTACTCE tmp = { dwFlags, (wchar_t*)tszContact, 0 };
mir_cslock lck(csContactCache);
CONTACTCE *p = arContactCache.find(&tmp);
if (p != nullptr)
return (bReturnCount) ? 1 : p->hContact; // found in cache
}
// contact was not in cache, do a search
CMStringW tmp;
int count = 0;
LIST<void> arResults(1);
MCONTACT hMatch = 0;
for (auto &hContact : Contacts()) {
// <_HANDLE_:hContact>
tmp.Format(L"<%s:%d>", _A2W(PROTOID_HANDLE), hContact);
bool bMatch = (tmp == tszContact);
char *szProto = GetContactProto(hContact);
if (szProto == nullptr)
continue;
// <proto:id> (exact)
if ((dwFlags & CI_PROTOID) && !bMatch) {
ptrW cInfo(getContactInfoT(CNF_UNIQUEID, hContact));
if (cInfo) {
tmp.Format(L"<%S:%s>", szProto, cInfo);
if (tmp == tszContact)
bMatch = true;
}
}
// id (exact)
if ((dwFlags & CI_UNIQUEID) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_UNIQUEID, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// nick (not exact)
if ((dwFlags & CI_NICK) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_NICK, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// list name (not exact)
if ((dwFlags & CI_LISTNAME) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_DISPLAY, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// firstname (exact)
if ((dwFlags & CI_FIRSTNAME) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_FIRSTNAME, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// lastname (exact)
if ((dwFlags & CI_LASTNAME) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_LASTNAME, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// email (exact)
if ((dwFlags & CI_EMAIL) && !bMatch) {
ptrW szFind(getContactInfoT(CNF_EMAIL, hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
// CNF_ (exact)
if ((dwFlags & CI_CNFINFO) && !bMatch) {
ptrW szFind(getContactInfoT((BYTE)(dwFlags & ~CI_CNFINFO), hContact));
if (!mir_wstrcmp(tszContact, szFind))
bMatch = true;
}
if (bMatch) {
if (nMatch == -1)
arResults.insert((HANDLE)hContact);
else if (nMatch == count) {
hMatch = hContact;
break;
}
count++;
}
}
if (bReturnCount)
return count;
if (hMatch == 0)
return INVALID_CONTACT_ID;
// return random contact
if (nMatch == -1)
return (UINT_PTR)arResults[rand() % arResults.getCount()];
// cache the found result
if (count == 0) {
mir_cslock lck(csContactCache);
CONTACTCE *cce = new CONTACTCE();
cce->hContact = hMatch;
cce->flags = dwFlags;
cce->tszContact = mir_wstrdup(tszContact);
arContactCache.insert(cce);
}
return hMatch;
}
/* keep cache consistent */
static int contactSettingChanged(WPARAM hContact, LPARAM lParam)
{
DBCONTACTWRITESETTING *dbw = (DBCONTACTWRITESETTING*)lParam;
char *szProto = GetContactProto(hContact);
if (szProto == nullptr)
return 0;
const char *uid = Proto_GetUniqueId(szProto);
bool isNick = !strcmp(dbw->szSetting, "Nick");
bool isFirstName = !strcmp(dbw->szSetting, "FirstName");
bool isLastName = !strcmp(dbw->szSetting, "LastName");
bool isEmail = !strcmp(dbw->szSetting, "e-mail");
bool isMyHandle = !strcmp(dbw->szSetting, "MyHandle");
bool isUid = (((INT_PTR)uid != CALLSERVICE_NOTFOUND) && (uid != nullptr)) && (!strcmp(dbw->szSetting, uid));
mir_cslock lck(csContactCache);
for (auto &it : arContactCache) {
if (hContact != it->hContact && (it->flags & CI_CNFINFO) == 0)
continue;
if ((isNick && (it->flags & CI_NICK)) ||
(isFirstName && (it->flags & CI_FIRSTNAME)) ||
(isLastName && (it->flags & CI_LASTNAME)) ||
(isEmail && (it->flags & CI_EMAIL)) ||
(isMyHandle && (it->flags & CI_LISTNAME)) ||
(it->flags & CI_CNFINFO) != 0 || // lazy; always invalidate CNF info cache entries
(isUid && (it->flags & CI_UNIQUEID))) {
/* remove from cache */
mir_free(it->tszContact);
arContactCache.remove(arContactCache.indexOf(&it));
break;
}
}
return 0;
}
int initContactModule()
{
HookEvent(ME_DB_CONTACT_SETTINGCHANGED, contactSettingChanged);
return 0;
}
int deinitContactModule()
{
for (auto &it : arContactCache)
mir_free(it->tszContact);
arContactCache.destroy();
return 0;
}
// returns a string in the form <PROTOID:UNIQUEID>, cannot be _HANDLE_!
// result must be freed
wchar_t* encodeContactToString(MCONTACT hContact)
{
char *szProto = GetContactProto(hContact);
if (szProto == nullptr)
return nullptr;
wchar_t *tszUniqueId = getContactInfoT(CNF_UNIQUEID, hContact);
if (tszUniqueId == nullptr)
return nullptr;
size_t size = mir_wstrlen(tszUniqueId) + mir_strlen(szProto) + 4;
wchar_t *tszResult = (wchar_t *)mir_calloc(size * sizeof(wchar_t));
if (tszResult)
mir_snwprintf(tszResult, size, L"<%S:%s>", szProto, tszUniqueId);
return tszResult;
}
|