1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
#ifndef _SKYPE_REQUEST_CONTACTS_H_
#define _SKYPE_REQUEST_CONTACTS_H_
class GetContactListRequest : public HttpRequest
{
public:
GetContactListRequest(const char *token, const char *skypename = "self") :
HttpRequest(REQUEST_GET, "api.skype.com/users/%s/contacts?hideDetails=true", skypename)
{
flags |= NLHRF_SSL;
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
}
};
class GetContactsInfoRequest : public HttpRequest
{
public:
GetContactsInfoRequest(const char *token, const LIST<char> &skypenames, const char *skypename = "self") :
HttpRequest(REQUEST_POST, "api.skype.com/users/%s/contacts/profiles", skypename)
{
flags |= NLHRF_SSL;
CMStringA data;
for (size_t i = 0; i < skypenames.getCount(); i++)
{
data.AppendFormat("contacts[]=%s&", skypenames[i]);
}
data.Delete(data.GetLength() - 1);
SetData(data, data.GetLength());
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
AddHeader("Content-Type", "application/x-www-form-urlencoded");
}
};
class GetContactsAuthRequest : public HttpRequest
{
public:
GetContactsAuthRequest(const char *token, const char *skypename = "self") :
HttpRequest(REQUEST_GET, "api.skype.com/users/%s/contacts/auth-request", skypename)
{
flags |= NLHRF_SSL;
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
}
};
class AuthAcceptRequest : public HttpRequest
{
public:
AuthAcceptRequest(const char *token, const char *who, const char *skypename = "self") :
HttpRequest(REQUEST_GET, "api.skype.com/users/%s/contacts/auth-request/%s/accept", skypename, who)
{
flags |= NLHRF_SSL;
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
}
};
class AuthDeclineRequest : public HttpRequest
{
public:
AuthDeclineRequest(const char *token, const char *who, const char *skypename = "self") :
HttpRequest(REQUEST_GET, "api.skype.com/users/%s/contacts/auth-request/%s/decline", skypename)
{
flags |= NLHRF_SSL;
AddHeader("X-Skypetoken", token);
AddHeader("Accept", "application/json");
}
};
#endif //_SKYPE_REQUEST_CONTACTS_H_
|