2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2017-08-23 23:10:28 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_ID_H
|
|
|
|
|
2017-09-07 13:07:58 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
2017-12-12 21:13:06 +01:00
|
|
|
struct id;
|
|
|
|
|
2017-09-07 13:07:58 +02:00
|
|
|
IRCD_M_EXCEPTION(error, INVALID_MXID, http::BAD_REQUEST)
|
|
|
|
IRCD_M_EXCEPTION(INVALID_MXID, BAD_SIGIL, http::BAD_REQUEST)
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
bool my(const id &);
|
2018-03-03 13:05:43 +01:00
|
|
|
bool is_sigil(const char &c) noexcept;
|
|
|
|
bool has_sigil(const string_view &) noexcept;
|
2017-08-23 23:10:28 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (Appendix 4.2) Common Identifier Format
|
|
|
|
///
|
|
|
|
/// The Matrix protocol uses a common format to assign unique identifiers to
|
|
|
|
/// a number of entities, including users, events and rooms. Each identifier
|
|
|
|
/// takes the form: `&localpart:domain` where & represents a 'sigil' character;
|
|
|
|
/// domain is the server name of the homeserver which allocated the identifier,
|
|
|
|
/// and localpart is an identifier allocated by that homeserver. The precise
|
|
|
|
/// grammar defining the allowable format of an identifier depends on the type
|
|
|
|
/// of identifier.
|
|
|
|
///
|
|
|
|
/// This structure is an interface to a string representing an mxid. The m::id
|
|
|
|
/// itself is just a string_view over some existing data. m::id::buf is an
|
|
|
|
/// m::id with an internal array providing the buffer.
|
|
|
|
///
|
2017-09-07 13:07:58 +02:00
|
|
|
struct ircd::m::id
|
|
|
|
:string_view
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2017-09-07 13:07:58 +02:00
|
|
|
struct event;
|
|
|
|
struct user;
|
|
|
|
struct room;
|
2017-12-12 21:13:06 +01:00
|
|
|
struct room_alias;
|
|
|
|
struct group;
|
2018-03-05 17:21:12 +01:00
|
|
|
struct node;
|
2018-02-15 22:01:07 +01:00
|
|
|
struct device;
|
2017-10-16 06:48:53 +02:00
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
enum sigil :char;
|
2018-04-25 04:18:50 +02:00
|
|
|
template<class T> struct buf;
|
2017-12-12 21:13:06 +01:00
|
|
|
template<class it> struct input;
|
|
|
|
template<class it> struct output;
|
2017-11-16 02:48:25 +01:00
|
|
|
struct parser;
|
2017-12-12 21:13:06 +01:00
|
|
|
struct printer;
|
|
|
|
struct validator;
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
struct parser static const parser;
|
2017-12-12 21:13:06 +01:00
|
|
|
struct printer static const printer;
|
|
|
|
struct validator static const validator;
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2018-05-02 01:51:35 +02:00
|
|
|
static constexpr const size_t &MAX_SIZE
|
2018-04-25 04:18:50 +02:00
|
|
|
{
|
|
|
|
255
|
|
|
|
};
|
|
|
|
|
2017-11-16 02:48:25 +01:00
|
|
|
public:
|
2017-09-07 13:07:58 +02:00
|
|
|
// Extract elements
|
2018-03-14 00:22:47 +01:00
|
|
|
string_view local() const; // The full localpart including sigil
|
|
|
|
string_view host() const; // The full server part including port
|
|
|
|
string_view localname() const; // The localpart not including sigil
|
|
|
|
string_view hostname() const; // The server part not including port
|
2018-04-04 22:03:13 +02:00
|
|
|
uint16_t port() const; // Just the port number or 0 if none
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-09-07 13:07:58 +02:00
|
|
|
IRCD_USING_OVERLOAD(generate, m::generate);
|
|
|
|
|
2017-10-16 06:48:53 +02:00
|
|
|
id(const enum sigil &, const mutable_buffer &, const generate_t &, const string_view &host);
|
2018-01-19 05:44:55 +01:00
|
|
|
id(const enum sigil &, const mutable_buffer &, const string_view &local, const string_view &host);
|
2017-10-16 06:48:53 +02:00
|
|
|
id(const enum sigil &, const mutable_buffer &, const string_view &id);
|
2017-10-03 13:07:10 +02:00
|
|
|
id(const enum sigil &, const string_view &id);
|
|
|
|
id(const string_view &id);
|
|
|
|
id() = default;
|
2017-09-07 13:07:58 +02:00
|
|
|
};
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (4.2) The sigil characters
|
2017-11-16 02:48:25 +01:00
|
|
|
enum ircd::m::id::sigil
|
|
|
|
:char
|
|
|
|
{
|
2017-12-12 21:13:06 +01:00
|
|
|
USER = '@', ///< User ID (4.2.1)
|
|
|
|
EVENT = '$', ///< Event ID (4.2.2)
|
|
|
|
ROOM = '!', ///< Room ID (4.2.2)
|
|
|
|
ROOM_ALIAS = '#', ///< Room alias (4.2.3)
|
|
|
|
GROUP = '+', ///< Group ID (experimental)
|
2018-03-05 17:21:12 +01:00
|
|
|
NODE = ':', ///< Node ID (experimental)
|
2018-02-15 22:01:07 +01:00
|
|
|
DEVICE = '%', ///< Device ID (experimental)
|
2017-11-16 02:48:25 +01:00
|
|
|
};
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (Appendix 4.2.1) User Identifiers
|
|
|
|
///
|
|
|
|
/// Users within Matrix are uniquely identified by their Matrix user ID. The
|
|
|
|
/// user ID is namespaced to the homeserver which allocated the account and
|
|
|
|
/// has the form: `@localpart:domain` The localpart of a user ID is an opaque
|
|
|
|
/// identifier for that user. It MUST NOT be empty, and MUST contain only the
|
|
|
|
/// characters a-z, 0-9, ., _, =, -, and /. The domain of a user ID is the
|
|
|
|
/// server name of the homeserver which allocated the account. The length of
|
|
|
|
/// a user ID, including the @ sigil and the domain, MUST NOT exceed 255
|
|
|
|
/// characters.
|
|
|
|
///
|
|
|
|
struct ircd::m::id::user
|
|
|
|
:ircd::m::id
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2017-12-12 21:13:06 +01:00
|
|
|
using buf = m::id::buf<user>;
|
|
|
|
template<class... args> user(args&&... a) :m::id{USER, std::forward<args>(a)...} {}
|
|
|
|
user() = default;
|
|
|
|
};
|
2017-10-28 21:26:47 +02:00
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (Appendix 4.2.2) Room IDs and Event IDs
|
|
|
|
///
|
|
|
|
/// An event has exactly one event ID. An event ID has the format:
|
|
|
|
/// `$opaque_id:domain` The domain of an event ID is the server name of the
|
|
|
|
/// homeserver which created the event. The domain is used only for namespacing
|
|
|
|
/// to avoid the risk of clashes of identifiers between different homeservers.
|
|
|
|
/// There is no implication that the event in question is still available at
|
|
|
|
/// the corresponding homeserver. Event IDs are case-sensitive. They are not
|
|
|
|
/// meant to be human readable.
|
|
|
|
///
|
2017-10-28 21:26:47 +02:00
|
|
|
struct ircd::m::id::event
|
|
|
|
:ircd::m::id
|
|
|
|
{
|
2018-02-10 07:13:18 +01:00
|
|
|
using closure = std::function<void (const id::event &)>;
|
|
|
|
using closure_bool = std::function<bool (const id::event &)>;
|
|
|
|
|
2017-10-28 21:26:47 +02:00
|
|
|
using buf = m::id::buf<event>;
|
|
|
|
template<class... args> event(args&&... a) :m::id{EVENT, std::forward<args>(a)...} {}
|
2017-11-16 02:48:25 +01:00
|
|
|
event() = default;
|
2017-10-28 21:26:47 +02:00
|
|
|
};
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (Appendix 4.2.2) Room IDs and Event IDs
|
|
|
|
///
|
|
|
|
/// A room has exactly one room ID. A room ID has the format:
|
|
|
|
/// `!opaque_id:domain` The domain of a room ID is the server name of the
|
|
|
|
/// homeserver which created the room. The domain is used only for namespacing
|
|
|
|
/// to avoid the risk of clashes of identifiers between different homeservers.
|
|
|
|
/// There is no implication that the room in question is still available at
|
|
|
|
/// the corresponding homeserver. Room IDs are case-sensitive. They are not
|
|
|
|
/// meant to be human readable.
|
|
|
|
///
|
2017-10-28 21:26:47 +02:00
|
|
|
struct ircd::m::id::room
|
|
|
|
:ircd::m::id
|
|
|
|
{
|
2018-02-10 07:13:18 +01:00
|
|
|
using closure = std::function<void (const id::room &)>;
|
|
|
|
using closure_bool = std::function<bool (const id::room &)>;
|
|
|
|
|
2017-10-28 21:26:47 +02:00
|
|
|
using buf = m::id::buf<room>;
|
|
|
|
template<class... args> room(args&&... a) :m::id{ROOM, std::forward<args>(a)...} {}
|
2017-11-16 02:48:25 +01:00
|
|
|
room() = default;
|
2017-10-28 21:26:47 +02:00
|
|
|
};
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
/// (Appendix 4.2.3) Room Aliases
|
|
|
|
/// A room may have zero or more aliases. A room alias has the format:
|
|
|
|
/// `#room_alias:domain` The domain of a room alias is the server name of the
|
|
|
|
/// homeserver which created the alias. Other servers may contact this
|
|
|
|
/// homeserver to look up the alias. Room aliases MUST NOT exceed 255 bytes
|
|
|
|
/// (including the # sigil and the domain).
|
|
|
|
///
|
|
|
|
struct ircd::m::id::room_alias
|
|
|
|
:ircd::m::id
|
|
|
|
{
|
|
|
|
using buf = m::id::buf<room_alias>;
|
|
|
|
template<class... args> room_alias(args&&... a) :m::id{ROOM_ALIAS, std::forward<args>(a)...} {}
|
|
|
|
room_alias() = default;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Group ID (EXPERIMENTAL)
|
|
|
|
///
|
|
|
|
struct ircd::m::id::group
|
2017-10-28 21:26:47 +02:00
|
|
|
:ircd::m::id
|
|
|
|
{
|
2017-12-12 21:13:06 +01:00
|
|
|
using buf = m::id::buf<group>;
|
|
|
|
template<class... args> group(args&&... a) :m::id{GROUP, std::forward<args>(a)...} {}
|
|
|
|
group() = default;
|
2017-10-28 21:26:47 +02:00
|
|
|
};
|
|
|
|
|
2018-03-05 17:21:12 +01:00
|
|
|
/// Node ID (EXPERIMENTAL)
|
2017-12-12 21:13:06 +01:00
|
|
|
///
|
2018-03-05 17:21:12 +01:00
|
|
|
struct ircd::m::id::node
|
2017-12-12 21:13:06 +01:00
|
|
|
:ircd::m::id
|
|
|
|
{
|
2018-03-05 17:21:12 +01:00
|
|
|
using buf = m::id::buf<node>;
|
|
|
|
template<class... args> node(args&&... a) :m::id{NODE, std::forward<args>(a)...} {}
|
|
|
|
node() = default;
|
2017-12-12 21:13:06 +01:00
|
|
|
};
|
|
|
|
|
2018-02-15 22:01:07 +01:00
|
|
|
/// Device ID (EXPERIMENTAL)
|
|
|
|
///
|
|
|
|
struct ircd::m::id::device
|
|
|
|
:ircd::m::id
|
|
|
|
{
|
|
|
|
using buf = m::id::buf<device>;
|
|
|
|
template<class... args> device(args&&... a) :m::id{DEVICE, std::forward<args>(a)...} {}
|
|
|
|
device() = default;
|
|
|
|
};
|
|
|
|
|
2017-12-12 21:13:06 +01:00
|
|
|
// Utilities
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
id::sigil sigil(const char &c);
|
|
|
|
id::sigil sigil(const string_view &id);
|
2018-02-17 01:27:33 +01:00
|
|
|
string_view reflect(const id::sigil &);
|
2017-12-12 21:13:06 +01:00
|
|
|
|
|
|
|
// Checks
|
|
|
|
bool valid(const id::sigil &, const string_view &) noexcept;
|
2018-03-03 13:05:43 +01:00
|
|
|
bool valid_local(const id::sigil &, const string_view &) noexcept; // Local part is valid
|
2018-03-03 11:34:42 +01:00
|
|
|
bool valid_local_only(const id::sigil &, const string_view &) noexcept; // No :host
|
2017-12-12 21:13:06 +01:00
|
|
|
void validate(const id::sigil &, const string_view &); // valid() | throws
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ID object backed by an internal buffer of default worst-case size.
|
2017-10-25 18:47:03 +02:00
|
|
|
///
|
2018-04-25 04:18:50 +02:00
|
|
|
template<class T>
|
2017-09-07 13:07:58 +02:00
|
|
|
struct ircd::m::id::buf
|
|
|
|
:T
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2017-09-25 03:05:42 +02:00
|
|
|
static constexpr const size_t SIZE
|
|
|
|
{
|
2018-04-25 04:18:50 +02:00
|
|
|
m::id::MAX_SIZE
|
2017-09-25 03:05:42 +02:00
|
|
|
};
|
2017-09-07 13:07:58 +02:00
|
|
|
|
|
|
|
private:
|
2018-04-25 04:18:50 +02:00
|
|
|
fixed_buffer<mutable_buffer, SIZE + 1> b;
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-09-07 13:07:58 +02:00
|
|
|
public:
|
2018-04-25 04:18:50 +02:00
|
|
|
operator const fixed_buffer<mutable_buffer, SIZE + 1> &() const
|
2017-10-01 09:16:05 +02:00
|
|
|
{
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
operator mutable_buffer()
|
|
|
|
{
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2018-03-05 09:52:24 +01:00
|
|
|
/// Due to the normal semantics of this object in relation to its parent,
|
|
|
|
/// if you write directly to this as a mutable_buffer you can call
|
|
|
|
/// assigned() to update this.
|
|
|
|
buf &assigned(const T &t)
|
|
|
|
{
|
|
|
|
assert(string_view{t}.data() == b.data());
|
|
|
|
static_cast<string_view &>(*this) = t;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2018-05-14 03:43:51 +02:00
|
|
|
// Universal reference with perfect forwarding will be too greedy here by
|
|
|
|
// overriding some of the other semantics. const reference pack is fine.
|
2017-09-07 13:07:58 +02:00
|
|
|
template<class... args>
|
2018-05-14 03:43:51 +02:00
|
|
|
buf(const args &...a)
|
|
|
|
:T{b, a...}
|
2017-08-23 23:10:28 +02:00
|
|
|
{}
|
|
|
|
|
2017-09-07 13:07:58 +02:00
|
|
|
buf() = default;
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-10-28 21:26:47 +02:00
|
|
|
buf(const buf &other)
|
2018-03-16 23:06:53 +01:00
|
|
|
:T{}
|
|
|
|
{
|
|
|
|
static_cast<string_view &>(*this) =
|
|
|
|
{
|
|
|
|
b.data(), buffer::copy(b, string_view{other})
|
|
|
|
};
|
|
|
|
}
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2018-03-16 23:06:53 +01:00
|
|
|
buf(buf &&other) noexcept
|
|
|
|
:T{}
|
2017-10-28 21:26:47 +02:00
|
|
|
{
|
2018-03-16 23:06:53 +01:00
|
|
|
static_cast<string_view &>(*this) =
|
|
|
|
{
|
|
|
|
b.data(), buffer::copy(b, string_view{other})
|
|
|
|
};
|
2017-10-28 21:26:47 +02:00
|
|
|
}
|
2017-09-07 13:07:58 +02:00
|
|
|
|
2018-03-16 23:06:53 +01:00
|
|
|
buf &operator=(const buf &other)
|
2017-10-28 21:26:47 +02:00
|
|
|
{
|
2018-03-16 23:06:53 +01:00
|
|
|
this->~buf();
|
|
|
|
static_cast<string_view &>(*this) =
|
|
|
|
{
|
|
|
|
b.data(), buffer::copy(b, string_view{other})
|
|
|
|
};
|
|
|
|
|
2017-10-28 21:26:47 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2017-09-07 13:07:58 +02:00
|
|
|
|
2018-03-16 23:06:53 +01:00
|
|
|
buf &operator=(buf &&other) noexcept
|
2017-10-28 21:26:47 +02:00
|
|
|
{
|
2018-03-16 23:06:53 +01:00
|
|
|
this->~buf();
|
|
|
|
static_cast<string_view &>(*this) =
|
|
|
|
{
|
|
|
|
b.data(), buffer::copy(b, string_view{other})
|
|
|
|
};
|
|
|
|
|
2017-10-28 21:26:47 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2017-09-07 13:07:58 +02:00
|
|
|
};
|