From 1ebc2454ff0f474d05a6b4f634f51993a9fe740f Mon Sep 17 00:00:00 2001 From: MikalaiR Date: Tue, 14 Apr 2015 12:36:29 +0000 Subject: SkypeWeb: Ooops. git-svn-id: http://svn.miranda-ng.org/main/trunk@12803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/SkypeWeb/src/requests/history.h | 58 +++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 protocols/SkypeWeb/src/requests/history.h (limited to 'protocols') diff --git a/protocols/SkypeWeb/src/requests/history.h b/protocols/SkypeWeb/src/requests/history.h new file mode 100644 index 0000000000..36b97509c9 --- /dev/null +++ b/protocols/SkypeWeb/src/requests/history.h @@ -0,0 +1,58 @@ +/* +Copyright (c) 2015 Miranda NG project (http://miranda-ng.org) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation version 2 +of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ +#ifndef _SKYPE_REQUEST_HISTORY_H_ +#define _SKYPE_REQUEST_HISTORY_H_ + +class SyncHistoryFirstRequest : public HttpRequest +{ +public: + SyncHistoryFirstRequest(const char *regToken, const char *server = SKYPE_ENDPOINTS_HOST) : + HttpRequest(REQUEST_GET, FORMAT, "%s/v1/users/ME/conversations", server) + { + Url + << INT_VALUE("startTime", 0) + << INT_VALUE("pageSize", 100) + << CHAR_VALUE("view", "msnp24Equivalent") + << CHAR_VALUE("targetType", "Passport|Skype|Lync|Thread"); + + Headers + << CHAR_VALUE("Accept", "application/json, text/javascript") + << FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken) + << CHAR_VALUE("Content-Type", "application/json; charset = UTF-8"); + } +}; + +class GetHistoryRequest : public HttpRequest +{ +public: + GetHistoryRequest(const char *regToken, const char *username, LONGLONG timestamp = 0, const char *server = SKYPE_ENDPOINTS_HOST) : + HttpRequest(REQUEST_GET, FORMAT, "%s/v1/users/ME/conversations/8:%s/messages", server, ptrA(mir_urlEncode(username))) + { + Url + << INT_VALUE("startTime", timestamp) + << INT_VALUE("pageSize", 100) + << CHAR_VALUE("view", "msnp24Equivalent") + << CHAR_VALUE("targetType", "Passport|Skype|Lync|Thread"); + + Headers + << CHAR_VALUE("Accept", "application/json, text/javascript") + << FORMAT_VALUE("RegistrationToken", "registrationToken=%s", regToken) + << CHAR_VALUE("Content-Type", "application/json; charset = UTF-8"); + } +}; + +#endif //_SKYPE_REQUEST_HISTORY_H_ \ No newline at end of file -- cgit v1.2.3