summaryrefslogtreecommitdiff
path: root/miranda-wine/protocols/Yahoo/util.c
blob: 43fc2f2ce885266c531ca2235b03706bf82f3029 (plain)
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
/*
 * $Id: util.c 3676 2006-09-01 18:02:28Z gena01 $
 *
 * 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 <windows.h>
#include <windowsx.h>
#include <stdio.h>
#include <shlwapi.h>
#include <malloc.h>

#include "yahoo.h"
#include <m_popup.h>
#include <m_system.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"

HANDLE __stdcall YAHOO_CreateProtoServiceFunction( 
	const char* szService,
	MIRANDASERVICE serviceProc )
{
	char str[ MAXMODULELABELLENGTH ];

	strcpy( str, yahooProtocolName );
	strcat( str, szService );
	
	return CreateServiceFunction( str, serviceProc );
}

int __stdcall YAHOO_CallService( const char* szSvcName, WPARAM wParam, LPARAM lParam )
{
	return CallService( szSvcName, wParam, lParam );
}


int YAHOO_DebugLog( const char *fmt, ... )
{
	char		str[ 4096 ];
	va_list	vararg;
	int tBytes;

	va_start( vararg, fmt );
	
	tBytes = _vsnprintf( str, sizeof( str ), fmt, vararg );
	if ( tBytes > 0 )
		str[ tBytes ] = 0;

	va_end( vararg );
	
	return CallService( MS_NETLIB_LOG, ( WPARAM )hNetlibUser, ( LPARAM )str );
}

DWORD __stdcall YAHOO_GetByte( const char* valueName, int parDefltValue )
{
	return DBGetContactSettingByte( NULL, yahooProtocolName, valueName, parDefltValue );
}

DWORD __stdcall YAHOO_SetByte( const char* valueName, int parValue )
{
	return DBWriteContactSettingByte( NULL, yahooProtocolName, valueName, parValue );
}

DWORD __stdcall YAHOO_GetDword( const char* valueName, DWORD parDefltValue )
{
	return DBGetContactSettingDword( NULL, yahooProtocolName, valueName, parDefltValue );
}

DWORD __stdcall YAHOO_SetDword( const char* valueName, DWORD parValue )
{
    return DBWriteContactSettingDword(NULL, yahooProtocolName, valueName, parValue);
}

DWORD __stdcall YAHOO_SetWord( HANDLE hContact, const char* valueName, int parValue )
{
	return DBWriteContactSettingWord( hContact, yahooProtocolName, valueName, parValue );
}

WORD __stdcall YAHOO_GetWord( HANDLE hContact, const char* valueName, int parDefltValue )
{
	return DBGetContactSettingWord( hContact, yahooProtocolName, valueName, parDefltValue );
}

int __stdcall YAHOO_SendBroadcast( HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam )
{
	ACKDATA ack;
	
	ZeroMemory(&ack, sizeof(ack) );
	
	ack.cbSize = sizeof( ACKDATA );
	ack.szModule = yahooProtocolName; 
    ack.hContact = hContact;
	ack.type = type; 
    ack.result = result;
	ack.hProcess = hProcess; 
    ack.lParam = lParam;
	return YAHOO_CallService( MS_PROTO_BROADCASTACK, 0, ( LPARAM )&ack );
}

DWORD __stdcall YAHOO_SetString( HANDLE hContact, const char* valueName, const char* parValue )
{
	return DBWriteContactSettingString( hContact, yahooProtocolName, valueName, parValue );
}

DWORD __stdcall YAHOO_SetStringUtf( HANDLE hContact, const char* valueName, const char* parValue )
{
	return DBWriteContactSettingStringUtf( hContact, yahooProtocolName, valueName, parValue );
}

LRESULT CALLBACK PopupWindowProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam )
{
	switch( message ) {
		case WM_COMMAND:
				YAHOO_DebugLog("[MS_POPUP_ADDPOPUPEX] WM_COMMAND");
				if ( HIWORD( wParam ) == STN_CLICKED) {
					char *szURL = (char *)PUGetPluginData( hWnd );
					if ( szURL != NULL ) {
						YahooOpenURL(szURL, 1);
						FREE(szURL);
					}
					
					PUDeletePopUp( hWnd );
					return 0;
				}
				break;
				
		case WM_CONTEXTMENU:
			YAHOO_DebugLog("[MS_POPUP_ADDPOPUPEX] WM_CONTEXTMENU");
			PUDeletePopUp( hWnd ); 
			break;

	}

	return DefWindowProc(hWnd, message, wParam, lParam);
}


int __stdcall	YAHOO_ShowPopup( const char* nickname, const char* msg, const char *szURL )
{
	POPUPDATAEX ppd;

	if ( !ServiceExists( MS_POPUP_ADDPOPUPEX )) 
		return 0;

	ZeroMemory(&ppd, sizeof(ppd) );
	lstrcpy( ppd.lpzContactName, nickname );
	lstrcpy( ppd.lpzText, msg );

	ppd.PluginWindowProc = ( WNDPROC )PopupWindowProc;

	if (szURL != NULL) {
		if (lstrcmpi(szURL, "http://mail.yahoo.com") == 0) {
			ppd.lchIcon = LoadIcon( hinstance, MAKEINTRESOURCE( IDI_INBOX ));
		} else {
			ppd.lchIcon = LoadIcon( hinstance, MAKEINTRESOURCE( IDI_CALENDAR ));
		}
		
		ppd.PluginData =  (void *)strdup( szURL );
	} else {
		ppd.lchIcon = LoadIcon( hinstance, MAKEINTRESOURCE( IDI_MAIN ));
	}
	YAHOO_DebugLog("[MS_POPUP_ADDPOPUPEX] Generating a popup for %s", nickname);
	YAHOO_CallService( MS_POPUP_ADDPOPUPEX, (WPARAM)&ppd, 0 );
	
	return 1;
}

int YAHOO_shownotification(const char *title, const char *info, DWORD flags)
{
    if (ServiceExists(MS_CLIST_SYSTRAY_NOTIFY)) {
        MIRANDASYSTRAYNOTIFY err;
		int ret;
		
        err.szProto = yahooProtocolName;
        err.cbSize = sizeof(err);
        err.szInfoTitle = (char *)title;
        err.szInfo = (char *)info;
        err.dwInfoFlags = flags;
        err.uTimeout = 1000 * 3;
        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 YAHOO_ShowError(const char *title, const char *buff)
{
	if (YAHOO_GetByte( "ShowErrors", 1 )) 
		if (!YAHOO_ShowPopup(title, buff, NULL))
				YAHOO_shownotification(title, buff, NIIF_ERROR);
}

int YAHOO_util_dbsettingchanged(WPARAM wParam, LPARAM lParam)
{
    DBCONTACTWRITESETTING *cws = (DBCONTACTWRITESETTING *) lParam;

    if ((HANDLE) wParam == NULL)
        return 0;
    if (!yahooLoggedIn)
        return 0;
        
    if (!strcmp(cws->szModule, "CList") && !strcmp(cws->szModule, yahooProtocolName)) {
        // A temporary contact has been added permanently
        if (!strcmp(cws->szSetting, "NotOnList")) {
            if (DBGetContactSettingByte((HANDLE) wParam, "CList", "Hidden", 0))
                return 0;
            if (cws->value.type == DBVT_DELETED || (cws->value.type == DBVT_BYTE && cws->value.bVal == 0)) {
                char *szProto;
                DBVARIANT dbv;
  			
                szProto = (char *) CallService(MS_PROTO_GETCONTACTBASEPROTO, wParam, 0);
                if (szProto==NULL || strcmp(szProto, yahooProtocolName)) return 0;

                if ( !DBGetContactSetting( (HANDLE) wParam, yahooProtocolName, YAHOO_LOGINID, &dbv )){
						YAHOO_DebugLog("Adding Permanently %s to list.", dbv.pszVal);
                        YAHOO_add_buddy(dbv.pszVal, "miranda", NULL);
           		 		DBFreeVariant(&dbv);
           		}

            }
        }
    }else if (!strcmp(cws->szModule, yahooProtocolName) && !strcmp(cws->szSetting, "ApparentMode")) {
		DBVARIANT dbv;
		
        YAHOO_DebugLog("DB Setting changed.  YAHOO user's visible setting changed.");
		
		if ( !DBGetContactSetting( (HANDLE) wParam, yahooProtocolName, YAHOO_LOGINID, &dbv )){
			int iAdd;
			
			
			iAdd = (ID_STATUS_OFFLINE == DBGetContactSettingWord((HANDLE) wParam, yahooProtocolName, "ApparentMode", 0));
			yahoo_stealth(dbv.pszVal, iAdd);
			DBFreeVariant(&dbv);
		}
        
    }
    return 0;
}

char* YAHOO_GetContactName( HANDLE hContact )
{
	return ( char* )YAHOO_CallService( MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM) hContact, 0 );
}

extern PLUGININFO pluginInfo;

/*
 * Thanks Robert for the following function. Copied from AIM plugin.
 */
void YAHOO_utils_logversion()
{
    char str[256];

#ifdef YAHOO_CVSBUILD
    _snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%da (%s %s)", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
              (pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF, __DATE__, __TIME__);
#else
    _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);
#endif
    YAHOO_DebugLog(str);
#ifdef YAHOO_CVSBUILD
    YAHOO_DebugLog("You are using a development version of Yahoo.  Please make sure you are using the latest version before posting bug reports.");
#endif
}

//=======================================================================================
// Utf8Decode - converts UTF8-encoded string to the UCS2/MBCS format
//=======================================================================================

void __stdcall Utf8Decode( char* str, int maxSize, wchar_t** ucs2 )
{
	wchar_t* tempBuf;

	int len = strlen( str );
	if ( len < 2 ) {	
		if ( ucs2 != NULL ) {
			*ucs2 = ( wchar_t* )malloc(( len+1 )*sizeof( wchar_t ));
			MultiByteToWideChar( CP_ACP, 0, str, len, *ucs2, len );
			( *ucs2 )[ len ] = 0;
		}
		return;
	}

	tempBuf = ( wchar_t* )alloca(( len+1 )*sizeof( wchar_t ));
	{
		wchar_t* d = tempBuf;
		BYTE* s = ( BYTE* )str;

		while( *s )
		{
			if (( *s & 0x80 ) == 0 ) {
				*d++ = *s++;
				continue;
			}

			if (( s[0] & 0xE0 ) == 0xE0 && ( s[1] & 0xC0 ) == 0x80 && ( s[2] & 0xC0 ) == 0x80 ) {
				*d++ = (( WORD )( s[0] & 0x0F) << 12 ) + ( WORD )(( s[1] & 0x3F ) << 6 ) + ( WORD )( s[2] & 0x3F );
				s += 3;
				continue;
			}

			if (( s[0] & 0xE0 ) == 0xC0 && ( s[1] & 0xC0 ) == 0x80 ) {
				*d++ = ( WORD )(( s[0] & 0x1F ) << 6 ) + ( WORD )( s[1] & 0x3F );
				s += 2;
				continue;
			}

			*d++ = *s++;
		}

		*d = 0;
	}

	if ( ucs2 != NULL ) {
		int fullLen = ( len+1 )*sizeof( wchar_t );
		*ucs2 = ( wchar_t* )malloc( fullLen );
		memcpy( *ucs2, tempBuf, fullLen );
	}

	if ( maxSize == 0 )
		maxSize = len;

   WideCharToMultiByte( CP_ACP, 0, tempBuf, -1, str, maxSize, NULL, NULL );
}

//=======================================================================================
// Utf8Encode - converts UCS2 string to the UTF8-encoded format
//=======================================================================================

char* __stdcall Utf8EncodeUcs2( const wchar_t* src )
{
	int len = wcslen( src );
	char* result = ( char* )malloc( len*3 + 1 );
	if ( result == NULL )
		return NULL;

	{	const wchar_t* s = src;
		BYTE*	d = ( BYTE* )result;

		while( *s ) {
			int U = *s++;

			if ( U < 0x80 ) {
				*d++ = ( BYTE )U;
			}
			else if ( U < 0x800 ) {
				*d++ = 0xC0 + (( U >> 6 ) & 0x3F );
				*d++ = 0x80 + ( U & 0x003F );
			}
			else {
				*d++ = 0xE0 + ( U >> 12 );
				*d++ = 0x80 + (( U >> 6 ) & 0x3F );
				*d++ = 0x80 + ( U & 0x3F );
		}	}

		*d = 0;
	}

	return result;
}

void SetButtonCheck(HWND hwndDlg, int CtrlID, BOOL bCheck)
{
	HWND hwndCtrl = GetDlgItem(hwndDlg, CtrlID);
	
	Button_SetCheck(hwndCtrl, (bCheck)?BST_CHECKED:BST_UNCHECKED);
}