/* * Copyright (c) 2011 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include #include namespace Swift { class Client; class MUC; } class Storage; using namespace Swift; class MUCs { public: MUCs(Client* client, Storage* storage); void join(const JID& room, boost::signal::slot_type successCallback, boost::function failureCallback); void part(const JID& room); bool contains(const JID& room); MUC::ref getMUC(const JID& room); const std::string& getDefaultNick() const {return defaultNick_;} bool setDefaultNick(const std::string& nick); private: void handleConnected(); void handleJoinFailed(const JID& room, ErrorPayload::ref error, boost::function failureCallback); void handleInitialJoinSuccess(); void handleInitialJoinFailure(const std::string&); void save(); private: MUCRegistry registry_; std::map mucs_; Client* client_; Storage* storage_; std::string defaultNick_; };