blob: 5fc13351e92dbd12274f1130da08b6fd3ea6fe88 (
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
|
/*
* Copyright (c) 2011-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <memory>
#include <boost/signals2.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Client/BlockList.h>
#include <Swiften/Client/BlockListImpl.h>
#include <Swiften/Elements/BlockListPayload.h>
#include <Swiften/Elements/BlockPayload.h>
#include <Swiften/Elements/DiscoInfo.h>
#include <Swiften/Elements/UnblockPayload.h>
#include <Swiften/Queries/GenericRequest.h>
#include <Swiften/Queries/SetResponder.h>
namespace Swift {
class IQRouter;
class SWIFTEN_API ClientBlockListManager {
public:
ClientBlockListManager(IQRouter *iqRouter);
~ClientBlockListManager();
/**
* Returns the blocklist.
*/
std::shared_ptr<BlockList> getBlockList();
/**
* Get the blocklist from the server.
*/
std::shared_ptr<BlockList> requestBlockList();
GenericRequest<BlockPayload>::ref createBlockJIDRequest(const JID& jid);
GenericRequest<BlockPayload>::ref createBlockJIDsRequest(const std::vector<JID>& jids);
GenericRequest<UnblockPayload>::ref createUnblockJIDRequest(const JID& jid);
GenericRequest<UnblockPayload>::ref createUnblockJIDsRequest(const std::vector<JID>& jids);
GenericRequest<UnblockPayload>::ref createUnblockAllRequest();
private:
void handleBlockListReceived(std::shared_ptr<BlockListPayload> payload, ErrorPayload::ref);
private:
IQRouter* iqRouter;
std::shared_ptr<SetResponder<BlockPayload> > blockResponder;
std::shared_ptr<SetResponder<UnblockPayload> > unblockResponder;
std::shared_ptr<BlockListImpl> blockList;
};
}
|