diff options
Diffstat (limited to 'plugins/CloudFile/src/Services/yandex_service.h')
-rw-r--r-- | plugins/CloudFile/src/Services/yandex_service.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/plugins/CloudFile/src/Services/yandex_service.h b/plugins/CloudFile/src/Services/yandex_service.h new file mode 100644 index 0000000000..a3a84735c4 --- /dev/null +++ b/plugins/CloudFile/src/Services/yandex_service.h @@ -0,0 +1,31 @@ +#ifndef _CLOUDFILE_YANDEX_H_ +#define _CLOUDFILE_YANDEX_H_ + +class CYandexService : public CCloudService +{ +private: + static unsigned RequestAccessTokenThread(void *owner, void *param); + static unsigned __stdcall RevokeAccessTokenThread(void *param); + + void HandleJsonError(JSONNode &node); + + void GetUploadUrl(char *path, char *url); + void UploadFile(const char *url, const char *data, size_t size); + void CreateFolder(const char *path); + void CreateSharedLink(const char *path, char *url); + +public: + CYandexService(HNETLIBUSER hConnection); + + const char* GetModule() const; + const wchar_t* GetText() const; + HANDLE GetIcon() const; + + bool IsLoggedIn(); + void Login(); + void Logout(); + + UINT Upload(FileTransferParam *ftp); +}; + +#endif //_CLOUDFILE_YANDEX_H_
\ No newline at end of file |