From babe62f61852bb292c4eef1e64c316f21b789ef6 Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Sat, 25 Apr 2015 18:43:32 +0000 Subject: SkypeWeb: "/me" in chats. git-svn-id: http://svn.miranda-ng.org/main/trunk@13144 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/requests/chatrooms.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'protocols/SkypeWeb/src/requests') diff --git a/protocols/SkypeWeb/src/requests/chatrooms.h b/protocols/SkypeWeb/src/requests/chatrooms.h index 49a3ef9892..8ef23481ce 100644 --- a/protocols/SkypeWeb/src/requests/chatrooms.h +++ b/protocols/SkypeWeb/src/requests/chatrooms.h @@ -42,6 +42,31 @@ public: } }; +class SendChatActionRequest : public HttpRequest +{ +public: + SendChatActionRequest(const char *regToken, const char *id, time_t timestamp, const char *message, const char *server = SKYPE_ENDPOINTS_HOST) : + HttpRequest(REQUEST_POST, FORMAT, "%s/v1/users/ME/conversations/19:%s/messages", server, id) + { + Headers + << CHAR_VALUE("Accept", "application/json, text/javascript") + << FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken) + << CHAR_VALUE("Content-Type", "application/json; charset=UTF-8"); + + JSONNODE *node = json_new(5); + json_push_back(node, json_new_i("clientmessageid", timestamp)); + json_push_back(node, json_new_a("messagetype", "RichText")); + json_push_back(node, json_new_a("contenttype", "text")); + json_push_back(node, json_new_a("content", message)); + json_push_back(node, json_new_i("skypeemoteoffset", 4)); + + ptrA data(mir_utf8encodeT(ptrT(json_write(node)))); + Body << VALUE(data); + + json_delete(node); + } +}; + class CreateChatroomRequest : public HttpRequest { public: -- cgit v1.2.3