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
|
#include "common.h"
HANDLE CDropbox::CreateProtoServiceFunctionObj(const char *szService, MIRANDASERVICEOBJ serviceProc, void *obj)
{
char str[MAXMODULELABELLENGTH];
mir_snprintf(str, sizeof(str), "%s%s", MODULE, szService);
str[MAXMODULELABELLENGTH - 1] = 0;
return CreateServiceFunctionObj(str, serviceProc, obj);
}
wchar_t *CDropbox::HttpStatusToText(HTTP_STATUS status)
{
switch (status)
{
case HTTP_STATUS_OK:
return TranslateT("Ok");
case HTTP_STATUS_BAD_REQUEST:
return TranslateT("Bad input parameter. Error message should indicate which one and why");
case HTTP_STATUS_UNAUTHORIZED:
return TranslateT("Bad or expired token. This can happen if the user or Dropbox revoked or expired an access token. To fix, you should re-authenticate the user");
case HTTP_STATUS_FORBIDDEN:
return TranslateT("Bad OAuth request (wrong consumer key, bad nonce, expired timestamp...). Unfortunately, re-authenticating the user won't help here");
case HTTP_STATUS_NOT_FOUND:
return TranslateT("File or folder not found at the specified path");
case HTTP_STATUS_METHOD_NOT_ALLOWED:
return TranslateT("Request method not expected (generally should be GET or POST)");
case HTTP_STATUS_TOO_MANY_REQUESTS:
return TranslateT("Your app is making too many requests and is being rate limited. 429s can trigger on a per-app or per-user basis");
case HTTP_STATUS_SERVICE_UNAVAILABLE:
return TranslateT("If the response includes the Retry-After header, this means your OAuth 1.0 app is being rate limited. Otherwise, this indicates a transient server error, and your app should retry its request.");
case HTTP_STATUS_INSUFICIENTE_STORAGE:
return TranslateT("User is over Dropbox storage quota");
}
return TranslateT("Unknown");
}
void CDropbox::ShowNotification(const wchar_t *caption, const wchar_t *message, int flags, MCONTACT hContact)
{
if (Miranda_Terminated()) return;
if (ServiceExists(MS_POPUP_ADDPOPUPT) && db_get_b(NULL, "Popup", "ModuleIsEnabled", 1))
{
POPUPDATAW ppd = {0};
ppd.lchContact = hContact;
wcsncpy(ppd.lpwzContactName, caption, MAX_CONTACTNAME);
wcsncpy(ppd.lpwzText, message, MAX_SECONDLINE);
ppd.lchIcon = Skin_GetIcon("Skype_main");
if (!PUAddPopupW(&ppd))
return;
}
MessageBox(NULL, message, caption, MB_OK | flags);
}
void CDropbox::ShowNotification(const wchar_t *message, int flags, MCONTACT hContact)
{
ShowNotification(TranslateT(MODULE), message, flags, hContact);
}
|