/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include <boost/optional.hpp> #include <string> #include "Swiften/JID/JID.h" #include "Swiften/Elements/Storage.h" namespace Swift { class MUCBookmark { public: MUCBookmark(const Storage::Room& room) { name_ = room.name; room_ = room.jid; nick_ = room.nick; password_ = room.password; autojoin_ = room.autoJoin; } MUCBookmark(const JID& room, const std::string& bookmarkName) : room_(room), name_(bookmarkName), autojoin_(false) { } void setAutojoin(bool enabled) { autojoin_ = enabled; } bool getAutojoin() const { return autojoin_; } void setNick(const boost::optional<std::string>& nick) { nick_ = nick; } void setPassword(const boost::optional<std::string>& password) { password_ = password; } const boost::optional<std::string>& getNick() const { return nick_; } const boost::optional<std::string>& getPassword() const { return password_; } const std::string& getName() const { return name_; } const JID& getRoom() const { return room_; } bool operator==(const MUCBookmark& rhs) const { return rhs.room_ == room_ && rhs.name_ == name_ && rhs.nick_ == nick_ && rhs.password_ == password_ && rhs.autojoin_ == autojoin_; } Storage::Room toStorage() const { Storage::Room room; room.name = name_; room.jid = room_; if (nick_) { room.nick = *nick_; } if (password_) { room.password = *password_; } room.autoJoin = autojoin_; return room; } private: JID room_; std::string name_; boost::optional<std::string> nick_; boost::optional<std::string> password_; bool autojoin_; }; }