mirror of https://github.com/bqv/weechat-xmpp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
236 lines
7.8 KiB
C++
236 lines
7.8 KiB
C++
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, version 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
#pragma once
|
|
|
|
#include <optional>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <fmt/core.h>
|
|
|
|
#include "node.hh"
|
|
#pragma GCC visibility push(default)
|
|
#include "ns.hh"
|
|
#pragma GCC visibility pop
|
|
|
|
namespace xml {
|
|
|
|
class xep0045 : virtual public node {
|
|
public:
|
|
enum class affiliation {
|
|
admin,
|
|
member,
|
|
none,
|
|
outcast,
|
|
owner,
|
|
};
|
|
|
|
enum class role {
|
|
moderator,
|
|
none,
|
|
participant,
|
|
visitor,
|
|
};
|
|
|
|
static affiliation parse_affiliation(std::string_view s) {
|
|
if (s == "admin")
|
|
return affiliation::admin;
|
|
else if (s == "member")
|
|
return affiliation::member;
|
|
else if (s == "none")
|
|
return affiliation::none;
|
|
else if (s == "outcast")
|
|
return affiliation::outcast;
|
|
else if (s == "owner")
|
|
return affiliation::owner;
|
|
throw std::invalid_argument(
|
|
fmt::format("Bad affiliation: {}", s));
|
|
}
|
|
|
|
static std::string_view format_affiliation(affiliation e) {
|
|
switch (e) {
|
|
case affiliation::admin:
|
|
return "admin";
|
|
case affiliation::member:
|
|
return "member";
|
|
case affiliation::none:
|
|
return "none";
|
|
case affiliation::outcast:
|
|
return "outcast";
|
|
case affiliation::owner:
|
|
return "owner";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
static role parse_role(std::string_view s) {
|
|
if (s == "moderator")
|
|
return role::moderator;
|
|
else if (s == "none")
|
|
return role::none;
|
|
else if (s == "participant")
|
|
return role::participant;
|
|
else if (s == "visitor")
|
|
return role::visitor;
|
|
throw std::invalid_argument(
|
|
fmt::format("Bad role: {}", s));
|
|
}
|
|
|
|
static std::string_view format_role(role e) {
|
|
switch (e) {
|
|
case role::moderator:
|
|
return "moderator";
|
|
case role::none:
|
|
return "none";
|
|
case role::participant:
|
|
return "participant";
|
|
case role::visitor:
|
|
return "visitor";
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
class x {
|
|
private:
|
|
struct decline {
|
|
decline(node& node) {
|
|
for (auto& child : node.get_children("reason"))
|
|
reason += child.get().text;
|
|
if (auto attr = node.get_attr("from"))
|
|
from = jid(node.context, *attr);
|
|
if (auto attr = node.get_attr("to"))
|
|
to = jid(node.context, *attr);
|
|
};
|
|
|
|
std::string reason;
|
|
std::optional<jid> from;
|
|
std::optional<jid> to;
|
|
};
|
|
|
|
struct destroy {
|
|
destroy(node& node) {
|
|
for (auto& child : node.get_children("reason"))
|
|
reason += child.get().text;
|
|
if (auto attr = node.get_attr("target"))
|
|
target = jid(node.context, *attr);
|
|
};
|
|
|
|
std::string reason;
|
|
std::optional<jid> target;
|
|
};
|
|
|
|
struct invite {
|
|
invite(node& node) {
|
|
for (auto& child : node.get_children("reason"))
|
|
reason += child.get().text;
|
|
if (auto attr = node.get_attr("from"))
|
|
from = jid(node.context, *attr);
|
|
if (auto attr = node.get_attr("to"))
|
|
to = jid(node.context, *attr);
|
|
};
|
|
|
|
std::string reason;
|
|
std::optional<jid> from;
|
|
std::optional<jid> to;
|
|
};
|
|
|
|
class item {
|
|
private:
|
|
struct actor {
|
|
actor(node& node) {
|
|
for (auto& child : node.get_children("reason"))
|
|
reason += child.get().text;
|
|
if (auto attr = node.get_attr("jid"))
|
|
target = jid(node.context, *attr);
|
|
if (auto attr = node.get_attr("nick"))
|
|
nick = *attr;
|
|
}
|
|
|
|
std::string reason;
|
|
std::optional<jid> target;
|
|
std::string nick;
|
|
};
|
|
|
|
struct continue_ {
|
|
continue_(node& node) {
|
|
if (auto attr = node.get_attr("thread"))
|
|
thread = *attr;
|
|
}
|
|
|
|
std::string thread;
|
|
};
|
|
|
|
public:
|
|
item(node& node) {
|
|
for (auto& child : node.get_children("actor"))
|
|
actors.emplace_back(child);
|
|
for (auto& child : node.get_children("continue"))
|
|
continues.emplace_back(child);
|
|
for (auto& child : node.get_children("reason"))
|
|
reason += child.get().text;
|
|
if (auto attr = node.get_attr("affiliation"))
|
|
affiliation = parse_affiliation(*attr);
|
|
if (auto attr = node.get_attr("jid"))
|
|
target = jid(node.context, *attr);
|
|
if (auto attr = node.get_attr("nick"))
|
|
nick = *attr;
|
|
if (auto attr = node.get_attr("role"))
|
|
role = parse_role(*attr);
|
|
};
|
|
|
|
std::vector<actor> actors;
|
|
std::vector<continue_> continues;
|
|
std::string reason;
|
|
std::optional<enum affiliation> affiliation;
|
|
std::optional<jid> target;
|
|
std::optional<std::string> nick;
|
|
std::optional<enum role> role;
|
|
};
|
|
|
|
public:
|
|
x(node& node) {
|
|
for (auto& child : node.get_children("decline"))
|
|
declines.emplace_back(child);
|
|
for (auto& child : node.get_children("destroy"))
|
|
destroys.emplace_back(child);
|
|
for (auto& child : node.get_children("invite"))
|
|
invites.emplace_back(child);
|
|
for (auto& child : node.get_children("item"))
|
|
items.emplace_back(child);
|
|
for (auto& child : node.get_children("password"))
|
|
passwords.emplace_back(child.get().text);
|
|
for (auto& child : node.get_children("status"))
|
|
if (auto code = child.get().get_attr("code"))
|
|
statuses.push_back(std::stoi(*code));
|
|
}
|
|
|
|
std::vector<decline> declines;
|
|
std::vector<destroy> destroys;
|
|
std::vector<invite> invites;
|
|
std::vector<item> items;
|
|
std::vector<std::string> passwords;
|
|
std::vector<int> statuses;
|
|
};
|
|
|
|
private:
|
|
std::optional<std::optional<x>> _muc_user;
|
|
public:
|
|
std::optional<x>& muc_user() {
|
|
if (!_muc_user)
|
|
{
|
|
auto child = get_children<jabber_org::protocol::muc::user>("x");
|
|
if (child.size() > 0)
|
|
_muc_user = child.front().get();
|
|
else
|
|
_muc_user.emplace(std::nullopt);
|
|
}
|
|
return *_muc_user;
|
|
}
|
|
};
|
|
|
|
}
|