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
|
/*
Copyright (C) 2012-24 Miranda NG team (https://miranda-ng.org)
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 version 2
of the License.
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, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
/////////////////////////////////////////////////////////////////////////////////////////
// Avatars
void CIcqProto::GetAvatarFileName(MCONTACT hContact, wchar_t *pszDest, size_t cbLen)
{
CMStringW wszPath(GetAvatarPath());
wszPath += '\\';
CMStringW wszFileName(getMStringW(hContact, "IconId"));
const wchar_t *szFileType = ProtoGetAvatarExtension(getByte(hContact, "AvatarType", PA_FORMAT_PNG));
wszPath.AppendFormat(L"%s%s", wszFileName.c_str(), szFileType);
wcsncpy_s(pszDest, cbLen, wszPath, _TRUNCATE);
}
INT_PTR __cdecl CIcqProto::GetAvatar(WPARAM wParam, LPARAM lParam)
{
wchar_t *buf = (wchar_t *)wParam;
int size = (int)lParam;
if (buf == nullptr || size <= 0)
return -1;
GetAvatarFileName(0, buf, size);
return 0;
}
INT_PTR __cdecl CIcqProto::GetAvatarCaps(WPARAM wParam, LPARAM lParam)
{
switch (wParam) {
case AF_MAXSIZE:
((POINT *)lParam)->x = -1;
((POINT *)lParam)->y = -1;
return 0;
case AF_FORMATSUPPORTED: // nobody
return 1;
case AF_DELAYAFTERFAIL:
return 10 * 60 * 1000;
case AF_ENABLED:
case AF_FETCHIFPROTONOTVISIBLE:
case AF_FETCHIFCONTACTOFFLINE:
return 1;
}
return 0;
}
INT_PTR __cdecl CIcqProto::GetAvatarInfo(WPARAM, LPARAM lParam)
{
PROTO_AVATAR_INFORMATION *pai = (PROTO_AVATAR_INFORMATION *)lParam;
ptrW szIconId(getWStringA(pai->hContact, "IconId"));
if (szIconId == nullptr) {
debugLogA("No avatar");
return GAIR_NOAVATAR;
}
GetAvatarFileName(pai->hContact, pai->filename, _countof(pai->filename));
pai->format = getByte(pai->hContact, "AvatarType", 0);
if (::_waccess(pai->filename, 0) == 0)
return GAIR_SUCCESS;
debugLogA("No avatar");
return GAIR_NOAVATAR;
}
INT_PTR __cdecl CIcqProto::SetAvatar(WPARAM, LPARAM lParam)
{
wchar_t *pwszFileName = (wchar_t *)lParam;
wchar_t wszOldName[MAX_PATH];
GetAvatarFileName(0, wszOldName, _countof(wszOldName));
_wremove(wszOldName);
auto *pReq = new AsyncHttpRequest(CONN_MAIN, REQUEST_POST, "/expressions/upload");
pReq->m_szUrl.AppendFormat("?f=json&aimsid=%s&r=%s&type=largeBuddyIcon", mir_urlEncode(m_aimsid.c_str()).c_str(), pReq->m_reqId);
if (pwszFileName == nullptr)
delSetting("AvatarHash");
else {
int fileId = _wopen(pwszFileName, _O_RDONLY | _O_BINARY, _S_IREAD);
if (fileId < 0) {
delete pReq;
return 1;
}
unsigned dwSize = (unsigned)_filelengthi64(fileId);
pReq->m_szParam.Truncate(dwSize);
_read(fileId, pReq->m_szParam.GetBuffer(), dwSize);
_close(fileId);
int iAvatarType = ProtoGetBufferFormat(pReq->m_szParam);
if (iAvatarType == PA_FORMAT_UNKNOWN) {
delete pReq;
return 3;
}
pReq->AddHeader("Content-Type", ProtoGetAvatarMimeType(iAvatarType));
}
Push(pReq);
return 0; // TODO
}
|