diff options
Diffstat (limited to 'protocols/SkypeWeb/src/requests/asm/files.h')
-rw-r--r-- | protocols/SkypeWeb/src/requests/asm/files.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/requests/asm/files.h b/protocols/SkypeWeb/src/requests/asm/files.h new file mode 100644 index 0000000000..7d13524945 --- /dev/null +++ b/protocols/SkypeWeb/src/requests/asm/files.h @@ -0,0 +1,46 @@ +#pragma once
+
+class ASMObjectCreateRequest : public HttpRequest
+{
+public:
+ ASMObjectCreateRequest(LoginInfo &li, const char *szContact, const char *szFileName) :
+ HttpRequest(REQUEST_POST, "api.asm.skype.com/v1/objects")
+ {
+ flags &= (~NLHRF_DUMPASTEXT);
+ Headers
+ << CHAR_VALUE("Authorization", CMStringA(::FORMAT, "skype_token %s", li.api.szToken))
+ << CHAR_VALUE("Content-Type", "text/json");
+
+ JSONNode node, jPermissions, jPermission(JSON_ARRAY);
+ jPermissions.set_name("permissions");
+ jPermission.set_name(szContact);
+ //jPermission << JSONNode("read");
+ jPermissions << jPermission;
+ node << JSONNode("type", "sharing/file") << JSONNode("filename", szFileName) << jPermissions;
+
+ Body << VALUE(node.write().c_str());
+
+ }// {"id":"0-neu-d1-d0649c1fb4e4c60f2d2d1f2165a99f60"}
+};
+
+class ASMObjectUploadRequest : public HttpRequest
+{
+public:
+ ASMObjectUploadRequest(LoginInfo &li, const char *szObject, const PBYTE data, const size_t size) :
+ HttpRequest(REQUEST_PUT, FORMAT, "api.asm.skype.com/v1/objects/%s/content/original", szObject)
+ {
+ Headers
+ << CHAR_VALUE("Authorization", CMStringA(::FORMAT, "skype_token %s", li.api.szToken))
+ << CHAR_VALUE("Content-Type", "application/octet-stream");
+
+ pData = (char*)mir_alloc(size);
+ memcpy(pData, data, size);
+ dataLength = (int)size;
+
+ }
+ ~ASMObjectUploadRequest()
+ {
+ mir_free(pData);
+ HttpRequest::~HttpRequest();
+ }
+};
\ No newline at end of file |