diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-14 12:36:29 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-04-14 12:36:29 +0000 |
commit | 1ebc2454ff0f474d05a6b4f634f51993a9fe740f (patch) | |
tree | 2fa8e2253c51f01e6985d6d4b9623652e3baa924 /protocols/SkypeWeb | |
parent | fff952e50f44761fa85ca90819ac97c47e77b553 (diff) |
SkypeWeb: Ooops.
git-svn-id: http://svn.miranda-ng.org/main/trunk@12803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb')
-rw-r--r-- | protocols/SkypeWeb/src/requests/history.h | 58 |
1 files changed, 58 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
+*/
+#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 |