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
|
/*
* $Id: util.cpp 13557 2011-04-09 02:26:58Z borkra $
*
* myYahoo Miranda Plugin
*
* Authors: Gennady Feldman (aka Gena01)
* Laurent Marechal (aka Peorth)
*
* This code is under GPL and is based on AIM, MSN and Miranda source code.
* I want to thank Robert Rainwater and George Hazan for their code and support
* and for answering some of my questions during development of this plugin.
*/
#include "yahoo.h"
#include <windowsx.h>
#include <m_popup.h>
#include <m_protomod.h>
#include <m_protosvc.h>
#include <m_langpack.h>
#include <m_skin.h>
#include <m_utils.h>
#include <m_options.h>
#include "resource.h"
void CYahooProto::YCreateService( const char* szService, YServiceFunc serviceProc )
{
char str[ 255 ];
unsigned int len;
len = snprintf(str, sizeof(str), "%s%s", m_szModuleName, szService);
if (len >= sizeof(str)) {
DebugLog("[YCreateService] Failed Registering Service: %s. Reason: buffer too small?", szService);
return;
}
::CreateServiceFunctionObj( str, ( MIRANDASERVICEOBJ )*( void** )&serviceProc, this );
}
void CYahooProto::YForkThread( YThreadFunc pFunc, void *param )
{
UINT lthreadID;
CloseHandle(( HANDLE )::mir_forkthreadowner(( pThreadFuncOwner ) *( void** )&pFunc, this, param, <hreadID));
}
void CYahooProto::YHookEvent( const char* szEvent, YEventFunc handler )
{
::HookEventObj( szEvent, ( MIRANDAHOOKOBJ )*( void** )&handler, this );
}
int CYahooProto::DebugLog( const char *fmt, ... )
{
char str[ 4096 ];
va_list vararg;
va_start( vararg, fmt );
int tBytes = _vsnprintf( str, sizeof( str ), fmt, vararg );
if ( tBytes > 0)
str[ tBytes ] = 0;
va_end( vararg );
return CallService(MS_NETLIB_LOG, (WPARAM)m_hNetlibUser, (LPARAM)str);
}
extern HANDLE g_hNetlibUser;
int DebugLog( const char *fmt, ... )
{
char str[ 4096 ];
va_list vararg;
va_start( vararg, fmt );
int tBytes = _vsnprintf( str, sizeof( str ), fmt, vararg );
if ( tBytes > 0)
str[ tBytes ] = 0;
va_end( vararg );
return CallService(MS_NETLIB_LOG, (WPARAM)g_hNetlibUser, (LPARAM)str);
}
int CYahooProto::GetByte( const char* valueName, int parDefltValue )
{
return db_get_b( NULL, m_szModuleName, valueName, parDefltValue );
}
int CYahooProto::SetByte( const char* valueName, int parValue )
{
return db_set_b( NULL, m_szModuleName, valueName, parValue );
}
int CYahooProto::GetByte( HANDLE hContact, const char* valueName, int parDefltValue )
{
return db_get_b( hContact, m_szModuleName, valueName, parDefltValue );
}
int CYahooProto::SetByte( HANDLE hContact, const char* valueName, int parValue )
{
return db_set_b( hContact, m_szModuleName, valueName, parValue );
}
DWORD CYahooProto::GetDword( HANDLE hContact, const char* valueName, DWORD parDefltValue )
{
return db_get_dw( hContact, m_szModuleName, valueName, parDefltValue );
}
DWORD CYahooProto::SetDword( const char* valueName, DWORD parValue )
{
return db_set_dw( NULL, m_szModuleName, valueName, parValue);
}
DWORD CYahooProto::GetDword( const char* valueName, DWORD parDefltValue )
{
return db_get_dw( NULL, m_szModuleName, valueName, parDefltValue );
}
DWORD CYahooProto::SetDword( HANDLE hContact, const char* valueName, DWORD parValue )
{
return db_set_dw( hContact, m_szModuleName, valueName, parValue);
}
WORD CYahooProto::SetWord( HANDLE hContact, const char* valueName, int parValue )
{
return db_set_w( hContact, m_szModuleName, valueName, parValue );
}
WORD CYahooProto::GetWord( HANDLE hContact, const char* valueName, int parDefltValue )
{
return db_get_w( hContact, m_szModuleName, valueName, parDefltValue );
}
DWORD CYahooProto::Set_Protocol( HANDLE hContact, int protocol )
{
char *s=NULL;
SetWord(hContact, "yprotoid", protocol);
switch (protocol) {
case YAHOO_IM_YAHOO: s = "Yahoo"; break; /* Yahoo, nothing special here */
case YAHOO_IM_MSN: s = "Windows Live (MSN)"; break;
case YAHOO_IM_LCS: s = "LCS"; break;
case YAHOO_IM_SAMETIME: s = "Lotus Sametime"; break;
}
if (protocol != YAHOO_IM_YAHOO)
SetString(hContact, "MirVer", s);
SetString(hContact, "Transport", s);
return 0;
}
int CYahooProto::SendBroadcast( HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam )
{
ACKDATA ack = { sizeof( ACKDATA ) };
ack.szModule = m_szModuleName;
ack.hContact = hContact;
ack.type = type;
ack.result = result;
ack.hProcess = hProcess;
ack.lParam = lParam;
return CallService(MS_PROTO_BROADCASTACK, 0, (LPARAM)&ack);
}
int CYahooProto::GetString(const char* name, DBVARIANT* result)
{ return db_get_s(NULL, m_szModuleName, name, result);
}
int CYahooProto::GetString(HANDLE hContact, const char* name, DBVARIANT* result)
{ return db_get_s(hContact, m_szModuleName, name, result);
}
int CYahooProto::GetStringUtf(HANDLE hContact, const char* name, DBVARIANT* result)
{ return db_get_utf(hContact, m_szModuleName, name, result);
}
void CYahooProto::SetString(const char* name, const char* value)
{ db_set_s(NULL, m_szModuleName, name, value);
}
void CYahooProto::SetString( HANDLE hContact, const char* name, const char* value)
{ db_set_s(hContact, m_szModuleName, name, value);
}
void CYahooProto::SetStringT( HANDLE hContact, const char* name, const TCHAR* value)
{ db_set_ts(hContact, m_szModuleName, name, value);
}
DWORD CYahooProto::SetStringUtf(HANDLE hContact, const char* valueName, const char* parValue)
{ return db_set_utf(hContact, m_szModuleName, valueName, parValue);
}
/////////////////////////////////////////////////////////////////////////////////////////
// Popups
static LRESULT CALLBACK PopupWindowProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam )
{
switch(message) {
case WM_COMMAND:
DebugLog("[PopupWindowProc] WM_COMMAND");
if ( HIWORD(wParam) == STN_CLICKED) {
char *szURL = (char*)PUGetPluginData(hWnd);
if (szURL != NULL)
CallService(MS_UTILS_OPENURL, TRUE, (LPARAM)szURL);
PUDeletePopup(hWnd);
return 0;
}
break;
case WM_CONTEXTMENU:
DebugLog("[PopupWindowProc] WM_CONTEXTMENU");
PUDeletePopup(hWnd);
return TRUE;
case UM_FREEPLUGINDATA:
DebugLog("[PopupWindowProc] UM_FREEPLUGINDATA");
{
char *szURL = (char *)PUGetPluginData(hWnd);
if (szURL != NULL)
free(szURL);
}
return TRUE;
}
return DefWindowProc(hWnd, message, wParam, lParam);
}
int CYahooProto::ShowPopup(const TCHAR* nickname, const TCHAR* msg, const char *szURL)
{
if ( !ServiceExists(MS_POPUP_ADDPOPUPT))
return 0;
POPUPDATAT ppd = { 0 };
ppd.PluginWindowProc = PopupWindowProc;
lstrcpyn(ppd.lptzContactName, nickname, SIZEOF(ppd.lptzContactName));
lstrcpyn(ppd.lptzText, msg, SIZEOF(ppd.lptzText));
if (szURL != NULL) {
ppd.lchIcon = LoadIconEx( !lstrcmpiA(szURL, "http://mail.yahoo.com") ? "mail" : "calendar");
ppd.PluginData = (void*)strdup(szURL);
}
else ppd.lchIcon = LoadIconEx("yahoo");
DebugLog("[MS_POPUP_ADDPOPUP] Generating a popup for [%S] %S", nickname, msg);
PUAddPopupT(&ppd);
return 1;
}
int CYahooProto::ShowNotification(const TCHAR *title, const TCHAR *info, DWORD flags)
{
if (ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) {
MIRANDASYSTRAYNOTIFY err;
err.szProto = m_szModuleName;
err.cbSize = sizeof(err);
err.tszInfoTitle = (TCHAR*)title;
err.tszInfo = (TCHAR*)info;
err.dwInfoFlags = flags | NIIF_INTERN_UNICODE;
err.uTimeout = 1000 * 3;
INT_PTR ret = CallService(MS_CLIST_SYSTRAY_NOTIFY, 0, (LPARAM) & err);
if (ret == 0)
return 1;
}
MessageBox(NULL, info, title, MB_OK | MB_ICONINFORMATION);
return 0;
}
void CYahooProto::ShowError(const TCHAR *title, const TCHAR *buff)
{
if ( GetByte("ShowErrors", 1))
if ( !ShowPopup(title, buff, NULL))
ShowNotification(title, buff, NIIF_ERROR);
}
int __cdecl CYahooProto::OnSettingChanged(WPARAM wParam, LPARAM lParam)
{
if (!wParam || !m_bLoggedIn)
return 0;
DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING*) lParam;
if ( !strcmp(cws->szSetting, "ApparentMode")) {
DebugLog("DB Setting changed. YAHOO user's visible setting changed.");
DBVARIANT dbv;
if (!GetString((HANDLE)wParam, YAHOO_LOGINID, &dbv)) {
int iAdd = (ID_STATUS_OFFLINE == GetWord((HANDLE) wParam, "ApparentMode", 0));
stealth(dbv.pszVal, iAdd);
db_free(&dbv);
}
}
return 0;
}
bool CYahooProto::IsMyContact(HANDLE hContact)
{
if (!hContact)
return false;
char* szProto = GetContactProto(hContact);
return szProto && !strcmp(szProto, m_szModuleName);
}
extern PLUGININFOEX pluginInfo;
/*
* Thanks Robert for the following function. Copied from AIM plugin.
*/
void CYahooProto::YAHOO_utils_logversion()
{
char str[256];
_snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%d", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
(pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF);
DebugLog(str);
}
void SetButtonCheck(HWND hwndDlg, int CtrlID, BOOL bCheck)
{
HWND hwndCtrl = GetDlgItem(hwndDlg, CtrlID);
Button_SetCheck(hwndCtrl, (bCheck) ? BST_CHECKED : BST_UNCHECKED);
}
|