2018-02-25 08:53:32 +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.
|
|
|
|
|
|
|
|
#pragma once
|
2020-03-06 04:35:20 +01:00
|
|
|
#define HAVE_IRCD_M_FED_QUERY_H
|
2018-02-25 08:53:32 +01:00
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
namespace ircd::m::fed
|
2018-02-25 08:53:32 +01:00
|
|
|
{
|
|
|
|
struct query;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::query
|
2020-03-08 02:15:58 +01:00
|
|
|
:request
|
2018-02-25 08:53:32 +01:00
|
|
|
{
|
|
|
|
struct profile;
|
|
|
|
struct directory;
|
2018-03-09 18:39:56 +01:00
|
|
|
struct user_devices;
|
2018-03-09 18:40:47 +01:00
|
|
|
struct client_keys;
|
2018-02-25 08:53:32 +01:00
|
|
|
|
|
|
|
explicit operator json::object() const
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
return json::object
|
|
|
|
{
|
|
|
|
in.content
|
|
|
|
};
|
2018-02-25 08:53:32 +01:00
|
|
|
}
|
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
query(const string_view &type,
|
|
|
|
const string_view &args,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
2019-03-07 02:26:25 +01:00
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
query() = default;
|
2018-02-25 08:53:32 +01:00
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::query::profile
|
2018-02-25 08:53:32 +01:00
|
|
|
:query
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
profile(const id::user &user_id,
|
|
|
|
const string_view &field,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
|
|
|
profile(const id::user &user_id,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
|
|
|
profile() = default;
|
2018-02-25 08:53:32 +01:00
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::query::directory
|
2018-02-25 08:53:32 +01:00
|
|
|
:query
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
directory(const id::room_alias &room_alias,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
|
|
|
directory() = default;
|
2018-02-25 08:53:32 +01:00
|
|
|
};
|