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
|
#ifndef _CLOUD_SERVICE_H_
#define _CLOUD_SERVICE_H_
enum OnConflict
{
NONE,
RENAME,
REPLACE,
};
class CCloudService : public PROTO<CCloudService>
{
protected:
int m_hLangpack;
HNETLIBUSER m_hConnection;
INT_PTR __cdecl OnAccountManagerInit(WPARAM, LPARAM);
// utils
std::string PreparePath(const std::string &path) const;
virtual char* HttpStatusToError(int status = 0);
virtual void HttpResponseToError(NETLIBHTTPREQUEST *response);
virtual void HandleHttpError(NETLIBHTTPREQUEST *response);
virtual void HandleJsonError(JSONNode &node) = 0;
void OnModulesLoaded() override;
JSONNode GetJsonResponse(NETLIBHTTPREQUEST *response);
virtual void Upload(FileTransferParam *ftp) = 0;
public:
std::map<MCONTACT, HWND> InterceptedContacts;
CCloudService(const char *protoName, const wchar_t *userName);
virtual ~CCloudService();
INT_PTR GetCaps(int type, MCONTACT) override;
int OnEvent(PROTOEVENTTYPE iEventType, WPARAM, LPARAM) override;
int FileCancel(MCONTACT hContact, HANDLE hTransfer) override;
HANDLE SendFile(MCONTACT hContact, const wchar_t *msg, wchar_t **ppszFiles) override;
int GetId() const;
virtual const char* GetModuleName() const = 0;
const char* GetAccountName() const;
const wchar_t* GetUserName() const;
virtual int GetIconId() const = 0;
virtual bool IsLoggedIn() = 0;
virtual void Login(HWND owner = nullptr) = 0;
virtual void Logout() = 0;
void OpenUploadDialog(MCONTACT hContact);
static UINT Upload(CCloudService *service, FileTransferParam *ftp);
};
#endif //_CLOUD_SERVICE_H_
|