summaryrefslogtreecommitdiffstats
blob: 872d901a2ae40094cf279e0ee93983121a01d378 (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
#include <boost/bind.hpp>

#include "Swiften/Client/Client.h"
#include "Swiften/Client/ClientXMLTracer.h"
#include "Swiften/EventLoop/SimpleEventLoop.h"
#include "Swiften/Queries/Requests/GetRosterRequest.h"

using namespace Swift;
using namespace boost;

class EchoBot {
	public:
		EchoBot(const JID& jid, const String& pass) : tracer(0) {
			client = new Client(jid, pass);
			tracer = new ClientXMLTracer(client);
			client->onConnected.connect(bind(&EchoBot::handleConnected, this));
			client->onMessageReceived.connect(bind(&EchoBot::handleMessageReceived, this, _1));
			client->connect();
		}

		~EchoBot() {
			delete tracer;
			delete client;
		}

	private:
		void handleConnected() {
			shared_ptr<GetRosterRequest> rosterRequest(new GetRosterRequest(client));
			rosterRequest->onResponse.connect(bind(&EchoBot::handleRosterReceived, this, _2));
			rosterRequest->send();
		}

		void handleRosterReceived(const optional<Error>& error) {
			if (error) {
				std::cerr << "Error receiving roster. Continuing anyway.";
			}
			client->sendPresence(shared_ptr<Presence>(new Presence("Send me a message")));
		}

		void handleMessageReceived(shared_ptr<Message> message) {
			message->setTo(message->getFrom());
			message->setFrom(JID());
			client->sendMessage(message);
		}

	private:
		Client* client;
		ClientXMLTracer* tracer;
};

int main(int, char**) {
	SimpleEventLoop eventLoop;
	EchoBot bot(JID("echobot@wonderland.lit"), "mypass");
	eventLoop.run();
	return 0;
}