summaryrefslogtreecommitdiff
path: root/protocols/MRA/src/Mra.h
blob: 662984542962e68b5fa2d29ea52c6a2e311bdaa6 (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
#if !defined(AFX_MRA_H__F58D13FF_F6F2_476C_B8F0_7B9E9357CF48__INCLUDED_)
#define AFX_MRA_H__F58D13FF_F6F2_476C_B8F0_7B9E9357CF48__INCLUDED_


#pragma once

#define _CRT_SECURE_NO_WARNINGS

#pragma warning(disable:4267)

//#define CRTDLL

#define WIN32_LEAN_AND_MEAN		// Exclude rarely-used stuff from Windows headers
#define WINVER       0x0502
#define _WIN32_WINNT 0x0502

#include <windows.h>
#include <Commdlg.h>
#include <wincrypt.h>
#include <shlwapi.h>
#include <winsock2.h>
#include <mswsock.h>
#include <WS2tcpip.h>

#pragma comment(lib,"Crypt32.lib")
#pragma comment(lib,"shlwapi.lib")
#pragma comment(lib,"ws2_32.lib")
#pragma comment(lib,"mswsock.lib")

#include <malloc.h>
#include <stdio.h>
#include <time.h>
#include <commctrl.h>

#define bzero(pvDst, count) memset(pvDst, 0, count)

#include "../../plugins/zlib/src/zlib.h"

#include <newpluginapi.h>
#include <m_system.h>
#include <m_system_cpp.h>
#include <m_protocols.h>
#include <m_clist.h>
#include <m_cluiframes.h>
#include <m_clui.h>
#include <m_genmenu.h>
#include <m_ignore.h>
#include <m_message.h>
#include <m_options.h>
#include <m_protomod.h>
#include <m_protosvc.h>
#include <m_protoint.h>
#include <m_skin.h>
#include <m_userinfo.h>
#include <m_utils.h>
#include <m_database.h>
#include <m_langpack.h>
#include <m_string.h>
#include <m_netlib.h>
#include <m_icolib.h>
#include <win2k.h>
#include <m_popup.h>
#include <m_nudge.h>
#include <m_folders.h>
#include <m_avatars.h>
#include <m_chat.h>
#include <m_extraicons.h>
#include <m_music.h>
#include <m_xstatus.h>
#include <m_nudge.h>
#include <m_proto_listeningto.h>

#define PROTO_VERSION_MAJOR     1
#define PROTO_VERSION_MINOR     21

#include "resource.h"
#include "..\xstatus_MRA\src\resource.h"

#include "Sdk/DebugFunctions.h"
#include "Sdk/MemoryFind.h"
#include "Sdk/MemoryFindByte.h"
#include "Sdk/BuffToLowerCase.h"
#include "Sdk/StrHexToNum.h"
#include "Sdk/timefuncs.h"
#include "Sdk/InternetTime.h"
#include "Sdk/ListMT.h"
#include "Sdk/FIFOMT.h"
#include "Sdk/RC4.h"
#include "Sdk/SHA1.h"

// LPS
struct MRA_LPS
{
	size_t dwSize;

	union {
		LPSTR  lpszData;
		LPWSTR lpwszData;
	};
};


// GUID
struct MRA_GUID
{
	DWORD	id[4];
};

struct MRA_ADDR_LIST_ITEM
{
	DWORD	dwPort;
	DWORD	dwAddr;
};

struct MRA_ADDR_LIST
{
	DWORD	dwAddrCount;
	MRA_ADDR_LIST_ITEM *pMailAddress;
};

/////////////////////////////////////////////////////////////////////////////

class BinBuffer
{
	LPBYTE m_data;
	size_t m_len;

public:
	BinBuffer(LPBYTE data, size_t len) : m_data(data), m_len(len) {}

	DWORD     getDword();
	DWORDLONG getInt64();
	MRA_GUID  getGuid();
	void      getStringA(CMStringA&);
	void      getStringW(CMStringW&);

	__forceinline bool eof() const { return m_len == 0; }
};

__forceinline BinBuffer& operator >>(BinBuffer& buf, DWORD &dwVar)     { dwVar = buf.getDword(); return buf; }
__forceinline BinBuffer& operator >>(BinBuffer& buf, DWORDLONG &llVar) { llVar = buf.getInt64(); return buf; }
__forceinline BinBuffer& operator >>(BinBuffer& buf, MRA_GUID &guid)   { guid = buf.getGuid();   return buf; }
__forceinline BinBuffer& operator >>(BinBuffer& buf, CMStringA &sVar)  { buf.getStringA(sVar);   return buf; }
__forceinline BinBuffer& operator >>(BinBuffer& buf, CMStringW &sVar)  { buf.getStringW(sVar);   return buf; }

/////////////////////////////////////////////////////////////////////////////

BOOL DB_GetStaticStringA(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, LPSTR lpszRetBuff, size_t dwRetBuffSize, size_t *pdwRetBuffSize);
BOOL DB_GetStaticStringW(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, LPWSTR lpszRetBuff, size_t dwRetBuffSize, size_t *pdwRetBuffSize);
	  
BOOL DB_GetStringA(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, CMStringA &Ret);
BOOL DB_GetStringW(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, CMStringW &Ret);
	  
BOOL DB_SetStringExA(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, const CMStringA &value);
BOOL DB_SetStringExW(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, const CMStringW &value);
	  
BOOL DB_GetContactSettingBlob(HANDLE hContact, LPCSTR lpszModule, LPCSTR lpszValueName, LPVOID lpRet, size_t dwRetBuffSize, size_t *pdwRetBuffSize);

#include "MraConstans.h"
#include "MraProto.h"

// ñòðóêòóðà ñîäåðæàùàÿ èíôîðìàöèþ ïî ïîñòðîåíèþ ìåíþ èëè ðàñøèðåíûõ èêîíîê
struct GUI_DISPLAY_ITEM
{
	LPSTR         lpszName;    // èìÿ ñåðâèñà, îíî æå èìÿ â èêîëèáå
	LPWSTR        lpwszDescr;  // òåêñòîâîå îïèñàíèå îòîáðàæàåìîå þçåðó
	LONG          defIcon;     // èêîíêà èç ðåñóðñîâ
	CMraProto::MyServiceFunc lpFunc;      // ôóíêöèÿ âûçûâàåìàÿ ìåíþ
	HANDLE        hIconHandle;
};

// ñòðóêòóðà ñîäåðæàùàÿ èíôîðìàöèþ î ñåðâèñàõ/ôóíêöèÿõ
struct SERVICE_ITEM
{
	LPSTR         lpszName;		// èìÿ ñåðâèñà, îíî æå èìÿ â èêîëèáå
	CMraProto::MyServiceFunc lpFunc;			// ôóíêöèÿ âûçûâàåìàÿ
};

extern GUI_DISPLAY_ITEM gdiMenuItems[];
extern GUI_DISPLAY_ITEM gdiContactMenuItems[];
extern GUI_DISPLAY_ITEM gdiExtraStatusIconsItems[];

#include "proto.h"
#include "MraMRIMProxy.h"
#include "MraSendQueue.h"
#include "MraFilesQueue.h"
#include "MraPopup.h"
#include "MraAvatars.h"
#include "MraIcons.h"
#include "MraSelectEMail.h"
#include "MraMPop.h"

/////////////////////////////////////////////////////////////////////////////////////////
//	plugin options

struct MRA_SETTINGS
{
	HANDLE    hHeap;
	HINSTANCE hInstance;
	HMODULE   hDLLXStatusIcons;

	DWORD     dwGlobalPluginRunning;
	bool      bChatExist;

	size_t    dwMirWorkDirPathLen;
	WCHAR     szMirWorkDirPath[MAX_FILEPATH];
};

extern MRA_SETTINGS masMraSettings;

/////////////////////////////////////////////////////////////////////////////////////////
//	External variables

extern LIST<CMraProto> g_Instances;

extern HANDLE hXStatusAdvancedStatusIcons[];

void    InitExtraIcons();

CMStringA MraGetSelfVersionString();

#define GetContactNameA(Contact) (LPSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)Contact, 0)
#define GetContactNameW(Contact) (LPWSTR)CallService(MS_CLIST_GETCONTACTDISPLAYNAME, (WPARAM)Contact, GCDNF_UNICODE)

#define GetStatusModeDescriptionA(Status) (LPSTR)CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)Status, 0)
#define GetStatusModeDescriptionW(Status) (LPWSTR)CallService(MS_CLIST_GETSTATUSMODEDESCRIPTION, (WPARAM)Status, GSMDF_UNICODE)

#define SetBit(bytes, bitpos) bytes |= (1<<bitpos)
#define GetBit(bytes, bitpos) ((bytes&(1<<bitpos))? TRUE:FALSE)

#define IsXStatusValid(XStatus) (((XStatus) && (XStatus)<MRA_XSTATUS_COUNT))

#define GET_CURRENT_COMBO_DATA(hWndDlg, ControlID)					SendDlgItemMessage(hWndDlg, ControlID, CB_GETITEMDATA, SendDlgItemMessage(hWndDlg, ControlID, CB_GETCURSEL, 0, 0), 0)

#define IsFileExist(FileName) (GetFileAttributes(FileName) != INVALID_FILE_ATTRIBUTES)

#define IsThreadAlive(hThread) (GetThreadPriority(hThread) != THREAD_PRIORITY_ERROR_RETURN)

void      MraAddrListFree(MRA_ADDR_LIST *pmalAddrList);
DWORD     MraAddrListGetFromBuff(const CMStringA &szAddresses, MRA_ADDR_LIST *pmalAddrList);
CMStringA MraAddrListGetToBuff(MRA_ADDR_LIST *pmalAddrList);

void      InitXStatusIcons();
void      DestroyXStatusIcons();

CMStringA MraGetVersionStringFromFormatted(const CMStringA& szUserAgentFormatted);
CMStringA CopyNumber(const CMStringA&);

CMStringW DecodeXML(const CMStringW &lptszMessage);
CMStringW EncodeXML(const CMStringW &lptszMessage);

bool      IsHTTPSProxyUsed(HANDLE m_hNetlibUser);
bool      IsContactMraProto(HANDLE hContact);
bool      IsEMailMR(const CMStringA& szEmail);
bool      GetEMailFromString(const CMStringA& szBuff, CMStringA& szEmail);
		    
bool      IsPhone(LPSTR lpszString, size_t dwStringSize);
bool      IsContactPhone(HANDLE hContact, LPSTR lpszPhone, size_t dwPhoneSize);
HANDLE    MraHContactFromPhone(LPSTR lpszPhone, size_t dwPhoneSize, BOOL bAddIfNeeded, BOOL bTemporary, BOOL *pbAdded);
void      EnableControlsArray(HWND hWndDlg, WORD *pwControlsList, size_t dwControlsListCount, BOOL bEnabled);
bool      MraRequestXStatusDetails(DWORD dwXStatus);
bool      MraSendReplyBlogStatus(HANDLE hContact);
DWORD     GetYears(CONST PSYSTEMTIME pcstSystemTime);
DWORD     FindFile(LPWSTR lpszFolder, DWORD dwFolderLen, LPWSTR lpszFileName, DWORD dwFileNameLen, LPWSTR lpszRetFilePathName, DWORD dwRetFilePathLen, DWORD *pdwRetFilePathLen);
DWORD     MemFillRandom(LPVOID lpBuff, size_t dwBuffSize);
		    
DWORD     GetMraStatusFromMiradaStatus(DWORD dwMirandaStatus, DWORD dwXStatusMir, DWORD *pdwXStatusMra);
DWORD     GetMirandaStatusFromMraStatus(DWORD dwMraStatus, DWORD dwXStatusMra, DWORD *pdwXStatusMir);
DWORD     GetMraXStatusIDFromMraUriStatus(const char *lpszStatusUri);

INT_PTR CALLBACK DlgProcAccount(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam);

#define LPS2ANSI(var, p, size) char *var = (char*)alloca(size+1); memcpy(var, p, size); var[size]=0;

#endif // !defined(AFX_MRA_H__F58D13FF_F6F2_476C_B8F0_7B9E9357CF48__INCLUDED_)