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
|
/*
Copyright © 2016-17 Miranda NG team
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, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
CMStringW CDiscordProto::GetAvatarFilename(MCONTACT hContact)
{
CMStringW wszResult(FORMAT, L"%s\\%S", VARSW(L"%miranda_avatarcache%"), m_szModuleName);
DWORD dwAttributes = GetFileAttributes(wszResult);
if (dwAttributes == 0xffffffff || (dwAttributes & FILE_ATTRIBUTE_DIRECTORY) == 0)
CreateDirectoryTreeW(wszResult);
wszResult.AppendChar('\\');
const wchar_t* szFileType = ProtoGetAvatarExtension(getByte(hContact, "AvatarType", PA_FORMAT_PNG));
wszResult.AppendFormat(L"%lld%s", getId(hContact, DB_KEY_ID), szFileType);
return wszResult;
}
INT_PTR CDiscordProto::GetAvatarCaps(WPARAM wParam, LPARAM lParam)
{
int res = 0;
switch (wParam) {
case AF_MAXSIZE:
((POINT*)lParam)->x = ((POINT*)lParam)->y = 128;
break;
case AF_PROPORTION:
res = PIP_NONE;
break;
case AF_FORMATSUPPORTED:
res = lParam == PA_FORMAT_PNG || lParam == PA_FORMAT_GIF || lParam == PA_FORMAT_JPEG;
break;
case AF_ENABLED:
res = 1;
break;
}
return res;
}
/////////////////////////////////////////////////////////////////////////////////////////
void CDiscordProto::OnReceiveAvatar(NETLIBHTTPREQUEST *reply, AsyncHttpRequest *pReq)
{
PROTO_AVATAR_INFORMATION ai = { 0 };
ai.format = PA_FORMAT_UNKNOWN;
ai.hContact = (MCONTACT)pReq->pUserInfo;
if (reply->resultCode != 200) {
LBL_Error:
ProtoBroadcastAck(ai.hContact, ACKTYPE_AVATAR, ACKRESULT_FAILED, (HANDLE)&ai);
return;
}
const char *pszMimeType = NULL;
for (int i = 0; i < reply->headersCount; i++)
if (!mir_strcmp(reply->headers[i].szName, "Content-Type")) {
pszMimeType = reply->headers[i].szValue;
break;
}
if (!mir_strcmp(pszMimeType, "image/jpeg"))
ai.format = PA_FORMAT_JPEG;
else if (!mir_strcmp(pszMimeType, "image/png"))
ai.format = PA_FORMAT_PNG;
else if (!mir_strcmp(pszMimeType, "image/gif"))
ai.format = PA_FORMAT_GIF;
else if (!mir_strcmp(pszMimeType, "image/bmp"))
ai.format = PA_FORMAT_BMP;
else {
debugLogA("unknown avatar mime type: %s", pszMimeType);
goto LBL_Error;
}
mir_wstrncpy(ai.filename, GetAvatarFilename(ai.hContact), _countof(ai.filename));
FILE *out = _wfopen(ai.filename, L"wb");
if (out == NULL) {
debugLogA("cannot open avatar file %S for writing", ai.filename);
goto LBL_Error;
}
fwrite(reply->pData, 1, reply->dataLength, out);
fclose(out);
if (ai.hContact)
ProtoBroadcastAck(ai.hContact, ACKTYPE_AVATAR, ACKRESULT_SUCCESS, (HANDLE)&ai);
else
CallService(MS_AV_REPORTMYAVATARCHANGED, (WPARAM)m_szModuleName, 0);
}
bool CDiscordProto::RetrieveAvatar(MCONTACT hContact)
{
ptrA szAvatarHash(getStringA(hContact, DB_KEY_AVHASH));
SnowFlake id = getId(hContact, DB_KEY_ID);
if (id == 0 || szAvatarHash == NULL)
return false;
CMStringA szUrl(FORMAT, "https://cdn.discordapp.com/avatars/%lld/%s.jpg", id, szAvatarHash);
AsyncHttpRequest *pReq = new AsyncHttpRequest(this, REQUEST_GET, szUrl, &CDiscordProto::OnReceiveAvatar);
pReq->pUserInfo = (void*)hContact;
Push(pReq);
return true;
}
INT_PTR CDiscordProto::GetAvatarInfo(WPARAM flags, LPARAM lParam)
{
PROTO_AVATAR_INFORMATION *pai = (PROTO_AVATAR_INFORMATION *)lParam;
CMStringW wszFileName(GetAvatarFilename(pai->hContact));
if (!wszFileName.IsEmpty()) {
mir_wstrncpy(pai->filename, wszFileName, _countof(pai->filename));
bool bFileExist = _waccess(wszFileName, 0) == 0;
// if we still need to load an avatar
if ((flags & GAIF_FORCE) || !bFileExist) {
if (RetrieveAvatar(pai->hContact))
return GAIR_WAITFOR;
}
else if (bFileExist)
return GAIR_SUCCESS;
}
return GAIR_NOAVATAR;
}
/////////////////////////////////////////////////////////////////////////////////////////
INT_PTR CDiscordProto::GetMyAvatar(WPARAM wParam, LPARAM lParam)
{
if (!wParam || !lParam)
return -3;
wchar_t* buf = (wchar_t*)wParam;
int size = (int)lParam;
PROTO_AVATAR_INFORMATION ai = {};
switch (GetAvatarInfo(0, (LPARAM)&ai)) {
case GAIR_SUCCESS:
wcsncpy_s(buf, size, ai.filename, _TRUNCATE);
return 0;
case GAIR_WAITFOR:
return -1;
}
return -2;
}
/////////////////////////////////////////////////////////////////////////////////////////
INT_PTR CDiscordProto::SetMyAvatar(WPARAM, LPARAM lParam)
{
CMStringW wszFileName(GetAvatarFilename(NULL));
const wchar_t *pwszFilename = (const wchar_t*)lParam;
if (pwszFilename == NULL) { // remove my avatar file
delSetting(DB_KEY_AVHASH);
DeleteFile(wszFileName);
}
CMStringA szPayload("data:");
int iFormat = ProtoGetAvatarFileFormat(pwszFilename);
switch (iFormat) {
case PA_FORMAT_BMP: szPayload.Append("image/bmp"); break;
case PA_FORMAT_GIF: szPayload.Append("image/gif"); break;
case PA_FORMAT_PNG: szPayload.Append("image/png"); break;
case PA_FORMAT_JPEG: szPayload.Append("image/jpeg"); break;
default:
debugLogA("invalid file format for avatar %S: %d", pwszFilename, iFormat);
return 1;
}
szPayload.Append(";base64,");
FILE *in = _wfopen(pwszFilename, L"rb");
if (in == NULL) {
debugLogA("cannot open avatar file %S for reading", pwszFilename);
return 2;
}
int iFileLength = _filelength(_fileno(in));
ptrA szFileContents((char*)mir_alloc(iFileLength));
fread(szFileContents, 1, iFileLength, in);
fclose(in);
szPayload.Append(ptrA(mir_base64_encode((BYTE*)szFileContents.get(), iFileLength)));
JSONNode root; root << CHAR_PARAM("avatar", szPayload);
Push(new AsyncHttpRequest(this, REQUEST_PATCH, "/users/@me", NULL, &root));
return 0;
}
|