summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/requests/contacts.h
blob: 62560875596d26e8c9af981f09241a7f63e596e3 (plain)
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
80
81
82
83
84
85
86
87
88
89
/*
Copyright (c) 2015-24 Miranda NG team (https://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_CONTACTS_H_
#define _SKYPE_REQUEST_CONTACTS_H_

struct GetContactListRequest : public AsyncHttpRequest
{
	GetContactListRequest() :
	  AsyncHttpRequest(REQUEST_GET, HOST_CONTACTS, "/users/SELF/contacts", &CSkypeProto::LoadContactList)
	{
	}
};

struct GetContactsAuthRequest : public AsyncHttpRequest
{
	GetContactsAuthRequest() :
		AsyncHttpRequest(REQUEST_GET, HOST_CONTACTS, "/users/SELF/invites", &CSkypeProto::LoadContactsAuth)
	{
	}
};

struct AddContactRequest : public AsyncHttpRequest
{
	AddContactRequest(const char *who, const char *greeting = "") :
		AsyncHttpRequest(REQUEST_PUT, HOST_CONTACTS, "/users/SELF/contacts")
	{
		JSONNode node;
		node << CHAR_PARAM("mri", who) << CHAR_PARAM("greeting", greeting);
		m_szParam = node.write().c_str();
	}
};

struct AuthAcceptRequest : public AsyncHttpRequest
{
	AuthAcceptRequest(const char *who) :
		AsyncHttpRequest(REQUEST_PUT, HOST_CONTACTS)
	{
		m_szUrl.AppendFormat("/users/SELF/invites/%s/accept", mir_urlEncode(who).c_str());
	}
};

struct AuthDeclineRequest : public AsyncHttpRequest
{
	AuthDeclineRequest(const char *who) :
		AsyncHttpRequest(REQUEST_PUT, HOST_CONTACTS)
	{
		m_szUrl.AppendFormat("/users/SELF/invites/%s/decline", mir_urlEncode(who).c_str());
	}
};

struct BlockContactRequest : public AsyncHttpRequest
{
	BlockContactRequest(CSkypeProto *ppro, MCONTACT hContact) :
		AsyncHttpRequest(REQUEST_PUT, HOST_CONTACTS, "/users/SELF/contacts/blocklist/" + ppro->getId(hContact), &CSkypeProto::OnBlockContact)
	{
		m_szParam = "{\"report_abuse\":\"false\",\"ui_version\":\"skype.com\"}";
		pUserInfo = (void *)hContact;
	}
};

struct UnblockContactRequest : public AsyncHttpRequest
{
	UnblockContactRequest(CSkypeProto *ppro, MCONTACT hContact) :
		AsyncHttpRequest(REQUEST_DELETE, HOST_CONTACTS, 0, &CSkypeProto::OnUnblockContact)
	{
		m_szUrl.AppendFormat("/users/SELF/contacts/blocklist/%s", ppro->getId(hContact).c_str());
		pUserInfo = (void *)hContact;

		// TODO: user ip address
		this << CHAR_PARAM("reporterIp", "123.123.123.123") << CHAR_PARAM("uiVersion", g_szMirVer);
	}
};

#endif //_SKYPE_REQUEST_CONTACTS_H_