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.

139 lines
3.5 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 <map>
#include <memory>
#include <optional>
#include <stdexcept>
#include <string>
#include <string_view>
#include <vector>
#include <chrono>
#include <sstream>
#include <locale>
#include <iomanip>
#include <fmt/core.h>
#include <strophe.h>
std::string get_name(xmpp_stanza_t *stanza);
std::optional<std::string> get_attribute(xmpp_stanza_t *stanza, const char *name);
std::string get_text(xmpp_stanza_t *stanza);
std::chrono::system_clock::time_point get_time(const std::string& text);
class jid {
public:
std::optional<std::string> local;
std::string domain;
std::optional<std::string> resource;
jid(xmpp_ctx_t *context, std::string s);
std::string full() const;
std::string bare() const;
bool is_bare() const;
};
namespace xml {
class node {
protected:
explicit node();
public:
inline node(xmpp_ctx_t *context, xmpp_stanza_t *stanza) {
bind(context, stanza);
}
std::optional<std::string> name;
std::optional<std::string> id;
std::optional<std::string> ns;
std::map<std::string, std::string> attributes;
std::vector<node> children;
std::string text;
virtual void bind(xmpp_ctx_t *context, xmpp_stanza_t *stanza);
template<typename xmlns>
inline std::vector<std::reference_wrapper<node>>
get_children(std::string_view name) {
std::vector<std::reference_wrapper<node>> list;
std::copy_if(children.begin(), children.end(),
std::back_inserter(list),
[&](node& x) {
return x.name == name
&& x.ns == std::string_view(xmlns());
});
return list;
}
inline std::vector<std::reference_wrapper<node>>
get_children(std::string_view name) {
std::vector<std::reference_wrapper<node>> list;
std::copy_if(children.begin(), children.end(),
std::back_inserter(list),
[&](node& x) {
return x.name == name;
});
return list;
}
};
}
#include "xep-0027.inl"
#include "xep-0045.inl"
#include "xep-0115.inl"
#include "xep-0319.inl"
namespace xml {
class message : virtual public node, public xep0027 {
public:
using node::node;
std::optional<jid> from;
std::optional<jid> to;
std::optional<std::string> type;
void bind(xmpp_ctx_t *context, xmpp_stanza_t *stanza) override;
};
class presence : virtual public node, public xep0045, public xep0115, public xep0319 {
public:
using node::node;
std::optional<jid> from;
std::optional<jid> to;
std::optional<std::string> type;
std::optional<std::string> show();
std::optional<std::string> status();
void bind(xmpp_ctx_t *context, xmpp_stanza_t *stanza) override;
};
class iq : virtual public node {
public:
using node::node;
std::optional<jid> from;
std::optional<jid> to;
std::optional<std::string> type;
void bind(xmpp_ctx_t *context, xmpp_stanza_t *stanza) override;
};
}