2018-01-22 12:32:15 +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.
|
|
|
|
|
2018-03-28 10:00:08 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/groups.h
|
|
|
|
//
|
|
|
|
|
2019-05-27 02:44:12 +02:00
|
|
|
ircd::m::v1::groups::publicised::publicised(const string_view &node,
|
2018-04-03 03:12:59 +02:00
|
|
|
const vector_view<const id::user> &user_ids,
|
2018-03-28 10:00:08 +02:00
|
|
|
const mutable_buffer &buf_,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
2019-05-27 02:44:12 +02:00
|
|
|
opts.remote = node;
|
2018-03-28 10:00:08 +02:00
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
2019-05-27 02:44:12 +02:00
|
|
|
json::get<"destination"_>(opts.request) = node;
|
2018-03-28 10:00:08 +02:00
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
json::get<"uri"_>(opts.request) = "/_matrix/federation/v1/get_groups_publicised";
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
|
|
|
|
mutable_buffer buf{buf_};
|
|
|
|
const string_view user_ids_
|
|
|
|
{
|
|
|
|
json::stringify(buf, user_ids.data(), user_ids.data() + user_ids.size())
|
|
|
|
};
|
|
|
|
|
|
|
|
assert(!defined(json::get<"content"_>(opts.request)));
|
|
|
|
json::get<"content"_>(opts.request) = stringify(buf, json::members
|
|
|
|
{
|
|
|
|
{ "user_ids", user_ids_ }
|
|
|
|
});
|
|
|
|
|
|
|
|
// (front of buf was advanced by stringify)
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.out.head = opts.request(buf);
|
2018-03-28 10:00:08 +02:00
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
consume(buf, size(opts.out.head));
|
|
|
|
opts.in.head = buf;
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-03-28 10:00:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:05:45 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/send.h
|
|
|
|
//
|
|
|
|
|
2018-01-23 20:43:04 +01:00
|
|
|
void
|
|
|
|
ircd::m::v1::send::response::for_each_pdu(const pdus_closure &closure)
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const json::object &pdus
|
|
|
|
{
|
|
|
|
this->get("pdus")
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &member : pdus)
|
|
|
|
{
|
|
|
|
const id::event &event_id{member.first};
|
|
|
|
const json::object &error{member.second};
|
|
|
|
closure(event_id, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:05:45 +01:00
|
|
|
ircd::m::v1::send::send(const string_view &txnid,
|
|
|
|
const const_buffer &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
assert(!size(opts.out.content));
|
|
|
|
opts.out.content = content;
|
|
|
|
|
|
|
|
assert(!defined(json::get<"content"_>(opts.request)));
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[1024], txnidbuf[512];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 19:05:45 +01:00
|
|
|
{
|
2018-01-26 21:20:02 +01:00
|
|
|
urlbuf, "/_matrix/federation/v1/send/%s/",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(txnidbuf, txnid),
|
2018-01-22 19:05:45 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "PUT";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 19:05:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-08 22:27:18 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/public_rooms.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::public_rooms::public_rooms(const net::hostport &remote,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = remote;
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[3072], query[2048], since[1024], tpid[1024];
|
|
|
|
std::stringstream qss;
|
|
|
|
pubsetbuf(qss, query);
|
|
|
|
|
|
|
|
if(opts.since)
|
|
|
|
qss << "&since="
|
2018-12-07 01:41:47 +01:00
|
|
|
<< url::encode(since, opts.since);
|
2018-04-08 22:27:18 +02:00
|
|
|
|
|
|
|
if(opts.third_party_instance_id)
|
|
|
|
qss << "&third_party_instance_id="
|
2018-12-07 01:41:47 +01:00
|
|
|
<< url::encode(tpid, opts.third_party_instance_id);
|
2018-04-08 22:27:18 +02:00
|
|
|
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/publicRooms?limit=%zu%s%s",
|
|
|
|
opts.limit,
|
|
|
|
opts.include_all_networks? "&include_all_networks=true" : "",
|
|
|
|
view(qss, query)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-04 03:43:17 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/frontfill.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::frontfill::frontfill(const room::id &room_id,
|
|
|
|
const span &span,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:frontfill
|
|
|
|
{
|
|
|
|
room_id,
|
|
|
|
ranges { vector(&span.first, 1), vector(&span.second, 1) },
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::frontfill::frontfill(const room::id &room_id,
|
|
|
|
const ranges &pair,
|
|
|
|
const mutable_buffer &buf_,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[1024], ridbuf[768];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/get_missing_events/%s/",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id)
|
2018-06-04 03:43:17 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
window_buffer buf{buf_};
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
{
|
|
|
|
buf([&pair, &opts](const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
return make_content(buf, pair, opts);
|
|
|
|
});
|
|
|
|
|
|
|
|
json::get<"content"_>(opts.request) = json::object{buf.completed()};
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::const_buffer
|
|
|
|
ircd::m::v1::frontfill::make_content(const mutable_buffer &buf,
|
|
|
|
const ranges &pair,
|
|
|
|
const opts &opts)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
|
|
|
{
|
|
|
|
// note: This object must be in abc order
|
|
|
|
json::stack::object top{out};
|
|
|
|
{
|
|
|
|
json::stack::member earliest{top, "earliest_events"};
|
|
|
|
json::stack::array array{earliest};
|
|
|
|
for(const auto &id : pair.first)
|
|
|
|
array.append(id);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
json::stack::member latest{top, "latest_events"};
|
|
|
|
json::stack::array array{latest};
|
|
|
|
for(const auto &id : pair.second)
|
|
|
|
array.append(id);
|
|
|
|
}
|
|
|
|
json::stack::member{top, "limit", json::value(int64_t(opts.limit))};
|
|
|
|
json::stack::member{top, "min_depth", json::value(int64_t(opts.min_depth))};
|
|
|
|
}
|
|
|
|
|
|
|
|
return out.completed();
|
|
|
|
}
|
|
|
|
|
2018-01-22 12:32:15 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/backfill.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::backfill::backfill(const room::id &room_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
2018-04-06 07:11:46 +02:00
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = room_id.host();
|
|
|
|
|
2018-04-06 11:30:26 +02:00
|
|
|
m::event::id::buf event_id_buf;
|
2018-01-22 12:32:15 +01:00
|
|
|
if(!opts.event_id)
|
|
|
|
{
|
2018-04-06 11:30:26 +02:00
|
|
|
event_id_buf = fetch_head(room_id, opts.remote);
|
|
|
|
opts.event_id = event_id_buf;
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
2018-01-22 19:05:45 +01:00
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
2018-01-26 21:20:02 +01:00
|
|
|
urlbuf, "/_matrix/federation/v1/backfill/%s/?limit=%zu&v=%s",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id),
|
2018-01-26 21:20:02 +01:00
|
|
|
opts.limit,
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(eidbuf, opts.event_id),
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/state.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::state::state(const room::id &room_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
2018-04-06 07:11:46 +02:00
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = room_id.host();
|
|
|
|
|
2018-04-06 11:30:26 +02:00
|
|
|
m::event::id::buf event_id_buf;
|
2018-01-22 12:32:15 +01:00
|
|
|
if(!opts.event_id)
|
|
|
|
{
|
2018-04-06 11:30:26 +02:00
|
|
|
event_id_buf = fetch_head(room_id, opts.remote);
|
|
|
|
opts.event_id = event_id_buf;
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
2018-01-22 19:05:45 +01:00
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
2019-04-25 02:23:28 +02:00
|
|
|
urlbuf, "/_matrix/federation/v1/%s/%s/?event_id=%s%s",
|
2018-04-03 02:38:35 +02:00
|
|
|
opts.ids_only? "state_ids" : "state",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, opts.event_id),
|
2019-04-25 02:23:28 +02:00
|
|
|
opts.ids_only? "&auth_chain_ids=0"_sv : ""_sv,
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-16 23:24:56 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/query_auth.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::query_auth::query_auth(const m::room::id &room_id,
|
|
|
|
const m::event::id &event_id,
|
|
|
|
const json::object &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = event_id.host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = content;
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/query_auth/%s/%s",
|
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, event_id),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-08 20:27:59 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/event_auth.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::event_auth::event_auth(const m::room::id &room_id,
|
|
|
|
const m::event::id &event_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = event_id.host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
2019-04-25 02:23:28 +02:00
|
|
|
|
|
|
|
if(opts.ids_only)
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/state_ids/%s/?event_id=%s&pdu_ids=0",
|
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, event_id),
|
|
|
|
};
|
|
|
|
else
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/event_auth/%s/%s",
|
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, event_id),
|
|
|
|
};
|
2018-04-08 20:27:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-22 12:32:15 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/event.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::event::event(const m::event::id &event_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = event_id.host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[1024], eidbuf[768];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
2018-01-26 21:20:02 +01:00
|
|
|
urlbuf, "/_matrix/federation/v1/event/%s/",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(eidbuf, event_id),
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
2018-01-22 19:05:45 +01:00
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-03 21:58:18 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/invite.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::invite::invite(const room::id &room_id,
|
|
|
|
const id::event &event_id,
|
|
|
|
const json::object &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
assert(!size(opts.out.content));
|
|
|
|
opts.out.content = content;
|
|
|
|
|
|
|
|
assert(!defined(json::get<"content"_>(opts.request)));
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/invite/%s/%s",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, event_id)
|
2018-04-03 21:58:18 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "PUT";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
2019-07-12 05:32:32 +02:00
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v2/invite.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v2::invite::invite(const room::id &room_id,
|
|
|
|
const id::event &event_id,
|
|
|
|
const json::object &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
assert(!size(opts.out.content));
|
|
|
|
opts.out.content = content;
|
|
|
|
|
|
|
|
assert(!defined(json::get<"content"_>(opts.request)));
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], eidbuf[768];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v2/invite/%s/%s",
|
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(eidbuf, event_id)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "PUT";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
2018-04-03 21:58:18 +02:00
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-04-03 21:58:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-01-22 19:05:45 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/send_join.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::send_join::send_join(const room::id &room_id,
|
2018-03-09 00:55:02 +01:00
|
|
|
const id::event &event_id,
|
2018-01-22 19:05:45 +01:00
|
|
|
const const_buffer &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
assert(!size(opts.out.content));
|
|
|
|
opts.out.content = content;
|
|
|
|
|
|
|
|
assert(!defined(json::get<"content"_>(opts.request)));
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], uidbuf[768];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 19:05:45 +01:00
|
|
|
{
|
2018-01-26 21:20:02 +01:00
|
|
|
urlbuf, "/_matrix/federation/v1/send_join/%s/%s",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(uidbuf, event_id)
|
2018-01-22 19:05:45 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "PUT";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 19:05:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/make_join.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::make_join::make_join(const room::id &room_id,
|
2019-04-11 14:14:44 +02:00
|
|
|
const id::user &user_id_,
|
2018-01-22 12:32:15 +01:00
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = room_id.host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
2019-04-11 14:14:44 +02:00
|
|
|
id::user::buf user_id_buf;
|
|
|
|
const id::user &user_id
|
|
|
|
{
|
|
|
|
user_id_?: id::user
|
|
|
|
{
|
|
|
|
user_id_buf, id::generate, json::get<"origin"_>(opts.request)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-01-22 12:32:15 +01:00
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], ridbuf[768], uidbuf[768];
|
2018-01-26 21:20:02 +01:00
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
2019-07-10 16:31:03 +02:00
|
|
|
urlbuf, "/_matrix/federation/v1/make_join/%s/%s"
|
|
|
|
"?ver=1&ver=2&ver=3&ver=4&ver=5",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(ridbuf, room_id),
|
|
|
|
url::encode(uidbuf, user_id)
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
2018-04-03 03:24:57 +02:00
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-04-03 03:24:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2019-02-08 06:04:52 +01:00
|
|
|
// v1/user_keys.h
|
2018-04-03 03:24:57 +02:00
|
|
|
//
|
|
|
|
|
2019-02-08 06:40:32 +01:00
|
|
|
//
|
|
|
|
// query
|
|
|
|
//
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
ircd::m::v1::user::keys::query::query(const m::user::id &user_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
user_id,
|
|
|
|
string_view{},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::query::query(const m::user::id &user_id,
|
|
|
|
const string_view &device_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
user_devices
|
|
|
|
{
|
|
|
|
user_id, vector_view<const string_view>
|
|
|
|
{
|
|
|
|
&device_id, !empty(device_id)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::query::query(const user_devices &v,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
vector_view<const user_devices>
|
|
|
|
{
|
|
|
|
&v, 1
|
|
|
|
},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::query::query(const vector_view<const user_devices> &v,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
|
|
|
{
|
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::object device_keys
|
|
|
|
{
|
|
|
|
top, "device_keys"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const user_devices &ud : v)
|
|
|
|
{
|
|
|
|
json::stack::member user
|
|
|
|
{
|
|
|
|
device_keys, ud.first
|
|
|
|
};
|
|
|
|
|
|
|
|
json::stack::array devices{user};
|
|
|
|
for(const string_view &device_id : ud.second)
|
|
|
|
devices.append(device_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 06:40:32 +01:00
|
|
|
const json::object &content
|
|
|
|
{
|
|
|
|
out.completed()
|
|
|
|
};
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
new (this) query
|
|
|
|
{
|
2019-02-08 06:40:32 +01:00
|
|
|
content, buf + size(string_view(content)), std::move(opts)
|
2019-02-07 09:11:03 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-21 23:57:45 +01:00
|
|
|
ircd::m::v1::user::keys::query::query(const user_devices_map &map,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
|
|
|
{
|
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::object device_keys
|
|
|
|
{
|
|
|
|
top, "device_keys"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &p : map)
|
|
|
|
json::stack::member user
|
|
|
|
{
|
|
|
|
device_keys, p.first, p.second
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
const json::object &content
|
|
|
|
{
|
|
|
|
out.completed()
|
|
|
|
};
|
|
|
|
|
|
|
|
new (this) query
|
|
|
|
{
|
|
|
|
content, buf + size(string_view(content)), std::move(opts)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-07 08:16:35 +01:00
|
|
|
ircd::m::v1::user::keys::query::query(const json::object &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
json::get<"uri"_>(opts.request) = "/_matrix/federation/v1/user/keys/query";
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = content;
|
2019-02-07 08:16:35 +01:00
|
|
|
|
|
|
|
if(!defined(json::get<"method"_>(opts.request)))
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
2019-02-07 08:16:35 +01:00
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-08 06:40:32 +01:00
|
|
|
//
|
|
|
|
// claim
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::claim::claim(const m::user::id &user_id,
|
|
|
|
const string_view &device_id,
|
|
|
|
const string_view &algorithm,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:claim
|
|
|
|
{
|
|
|
|
user_id,
|
|
|
|
device
|
|
|
|
{
|
|
|
|
device_id, algorithm
|
|
|
|
},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::claim::claim(const m::user::id &user_id,
|
|
|
|
const device &device,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:claim
|
|
|
|
{
|
|
|
|
user_devices
|
|
|
|
{
|
|
|
|
user_id, { &device, 1 }
|
|
|
|
},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::claim::claim(const user_devices &ud,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:claim
|
|
|
|
{
|
|
|
|
vector_view<const user_devices>
|
|
|
|
{
|
|
|
|
&ud, 1
|
|
|
|
},
|
|
|
|
buf,
|
|
|
|
std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::claim::claim(const vector_view<const user_devices> &v,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
|
|
|
{
|
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::object one_time_keys
|
|
|
|
{
|
|
|
|
top, "one_time_keys"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &ud : v)
|
|
|
|
{
|
|
|
|
json::stack::object user
|
|
|
|
{
|
|
|
|
one_time_keys, ud.first
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &device : ud.second)
|
|
|
|
{
|
|
|
|
const auto &device_id(device.first);
|
|
|
|
const auto &algorithm_name(device.second);
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
user, device_id, algorithm_name
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-22 01:46:23 +01:00
|
|
|
const json::object &content
|
|
|
|
{
|
|
|
|
out.completed()
|
|
|
|
};
|
|
|
|
|
|
|
|
new (this) claim
|
|
|
|
{
|
|
|
|
content, buf + size(string_view(content)), std::move(opts)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::user::keys::claim::claim(const user_devices_map &map,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
|
|
|
{
|
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::object one_time_keys
|
|
|
|
{
|
|
|
|
top, "one_time_keys"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &p : map)
|
|
|
|
{
|
|
|
|
const m::user::id &user_id(p.first);
|
|
|
|
const json::object &devices(p.second);
|
|
|
|
json::stack::member user
|
|
|
|
{
|
|
|
|
one_time_keys, user_id, devices
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 06:40:32 +01:00
|
|
|
const json::object &content
|
|
|
|
{
|
|
|
|
out.completed()
|
|
|
|
};
|
|
|
|
|
|
|
|
new (this) claim
|
|
|
|
{
|
|
|
|
content, buf + size(string_view(content)), std::move(opts)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-07 08:16:35 +01:00
|
|
|
ircd::m::v1::user::keys::claim::claim(const json::object &content,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
json::get<"uri"_>(opts.request) = "/_matrix/federation/v1/user/keys/claim";
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = content;
|
2019-02-07 08:16:35 +01:00
|
|
|
|
|
|
|
if(!defined(json::get<"method"_>(opts.request)))
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
|
2019-02-07 09:11:03 +01:00
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
2019-02-07 08:16:35 +01:00
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-02-08 06:04:52 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/user.h
|
|
|
|
//
|
|
|
|
|
2018-04-03 03:24:57 +02:00
|
|
|
ircd::m::v1::user::devices::devices(const id::user &user_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = user_id.host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048], uidbuf[768];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
urlbuf, "/_matrix/federation/v1/user/devices/%s",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(uidbuf, user_id)
|
2018-04-03 03:24:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"method"_>(opts.request)))
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
2018-01-22 12:32:15 +01:00
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
2018-02-19 23:34:34 +01:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-02-25 08:53:32 +01:00
|
|
|
//
|
|
|
|
// v1/query.h
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace ircd::m::v1
|
|
|
|
{
|
|
|
|
thread_local char query_arg_buf[1024];
|
2018-03-09 18:39:56 +01:00
|
|
|
thread_local char query_url_buf[1024];
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:53:32 +01:00
|
|
|
ircd::m::v1::query::directory::directory(const id::room_alias &room_alias,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
"directory",
|
|
|
|
fmt::sprintf
|
|
|
|
{
|
2018-12-07 01:41:47 +01:00
|
|
|
query_arg_buf, "room_alias=%s", url::encode(query_url_buf, room_alias)
|
2018-02-25 08:53:32 +01:00
|
|
|
},
|
|
|
|
buf,
|
2018-02-27 06:43:02 +01:00
|
|
|
std::move(opts)
|
2018-02-25 08:53:32 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::query::profile::profile(const id::user &user_id,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
"profile",
|
|
|
|
fmt::sprintf
|
|
|
|
{
|
2018-12-07 01:41:47 +01:00
|
|
|
query_arg_buf, "user_id=%s", url::encode(query_url_buf, user_id)
|
2018-02-25 08:53:32 +01:00
|
|
|
},
|
|
|
|
buf,
|
2018-02-27 06:43:02 +01:00
|
|
|
std::move(opts)
|
2018-02-25 08:53:32 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-25 09:28:55 +01:00
|
|
|
ircd::m::v1::query::profile::profile(const id::user &user_id,
|
|
|
|
const string_view &field,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:query
|
|
|
|
{
|
|
|
|
"profile",
|
|
|
|
fmt::sprintf
|
|
|
|
{
|
|
|
|
query_arg_buf, "user_id=%s%s%s",
|
2018-12-07 01:41:47 +01:00
|
|
|
url::encode(query_url_buf, string_view{user_id}),
|
2018-02-25 09:28:55 +01:00
|
|
|
!empty(field)? "&field=" : "",
|
|
|
|
field
|
|
|
|
},
|
|
|
|
buf,
|
2018-02-27 06:43:02 +01:00
|
|
|
std::move(opts)
|
2018-02-25 09:28:55 +01:00
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:53:32 +01:00
|
|
|
ircd::m::v1::query::query(const string_view &type,
|
|
|
|
const string_view &args,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
{
|
|
|
|
thread_local char urlbuf[2048];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
2018-03-09 18:40:47 +01:00
|
|
|
urlbuf, "/_matrix/federation/v1/query/%s%s%s",
|
2018-02-25 08:53:32 +01:00
|
|
|
type,
|
2018-03-09 18:40:47 +01:00
|
|
|
args? "?"_sv : ""_sv,
|
2018-02-25 08:53:32 +01:00
|
|
|
args
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-03-09 18:40:47 +01:00
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"method"_>(opts.request)))
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
|
2018-02-25 08:53:32 +01:00
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-02-25 08:53:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-07 23:46:53 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/key.h
|
|
|
|
//
|
|
|
|
|
2018-05-08 00:28:58 +02:00
|
|
|
ircd::m::v1::key::keys::keys(const string_view &server_name,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
2018-05-11 11:02:46 +02:00
|
|
|
:keys
|
|
|
|
{
|
|
|
|
server_key{server_name, ""}, buf, std::move(opts)
|
|
|
|
}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::v1::key::keys::keys(const server_key &server_key,
|
|
|
|
const mutable_buffer &buf,
|
|
|
|
opts opts)
|
2018-05-08 00:28:58 +02:00
|
|
|
:server::request{[&]
|
|
|
|
{
|
2018-05-11 11:02:46 +02:00
|
|
|
const auto &server_name{server_key.first};
|
|
|
|
const auto &key_id{server_key.second};
|
|
|
|
|
2018-05-08 00:28:58 +02:00
|
|
|
if(!opts.remote)
|
|
|
|
opts.remote = net::hostport{server_name};
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
2018-05-11 11:02:46 +02:00
|
|
|
{
|
|
|
|
if(!empty(key_id))
|
|
|
|
{
|
|
|
|
thread_local char uribuf[512];
|
|
|
|
json::get<"uri"_>(opts.request) = fmt::sprintf
|
|
|
|
{
|
|
|
|
uribuf, "/_matrix/key/v2/server/%s/", key_id
|
|
|
|
};
|
|
|
|
}
|
|
|
|
else json::get<"uri"_>(opts.request) = "/_matrix/key/v2/server/";
|
|
|
|
}
|
2018-05-08 00:28:58 +02:00
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-07 23:46:53 +02:00
|
|
|
namespace ircd::m::v1
|
|
|
|
{
|
|
|
|
static const_buffer
|
|
|
|
_make_server_keys(const vector_view<const key::server_key> &,
|
|
|
|
const mutable_buffer &);
|
|
|
|
}
|
|
|
|
|
2018-05-08 00:28:58 +02:00
|
|
|
ircd::m::v1::key::query::query(const vector_view<const server_key> &keys,
|
|
|
|
const mutable_buffer &buf_,
|
|
|
|
opts opts)
|
2018-05-07 23:46:53 +02:00
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(defined(json::get<"content"_>(opts.request)))
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
json::get<"content"_>(opts.request) = json::object{opts.out.content};
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
json::get<"uri"_>(opts.request) = "/_matrix/key/v2/query";
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "POST";
|
|
|
|
|
|
|
|
window_buffer buf{buf_};
|
|
|
|
if(!defined(json::get<"content"_>(opts.request)))
|
|
|
|
{
|
|
|
|
buf([&keys](const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
return _make_server_keys(keys, buf);
|
|
|
|
});
|
|
|
|
|
|
|
|
json::get<"content"_>(opts.request) = json::object{buf.completed()};
|
|
|
|
opts.out.content = json::get<"content"_>(opts.request);
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
|
|
|
opts.in.head = buf + size(opts.out.head);
|
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static ircd::const_buffer
|
|
|
|
ircd::m::v1::_make_server_keys(const vector_view<const key::server_key> &keys,
|
|
|
|
const mutable_buffer &buf)
|
|
|
|
{
|
|
|
|
json::stack out{buf};
|
2019-05-09 02:36:13 +02:00
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::object server_keys
|
2018-05-07 23:46:53 +02:00
|
|
|
{
|
2019-05-09 02:36:13 +02:00
|
|
|
top, "server_keys"
|
|
|
|
};
|
|
|
|
|
|
|
|
for(const auto &[server_name, key_id] : keys)
|
|
|
|
{
|
|
|
|
json::stack::object server_object
|
2018-05-07 23:46:53 +02:00
|
|
|
{
|
2019-05-09 02:36:13 +02:00
|
|
|
server_keys, server_name
|
|
|
|
};
|
|
|
|
|
|
|
|
if(key_id)
|
|
|
|
{
|
|
|
|
json::stack::object key_object
|
2018-05-07 23:46:53 +02:00
|
|
|
{
|
2019-05-09 02:36:13 +02:00
|
|
|
server_object, key_id
|
2018-05-08 00:28:58 +02:00
|
|
|
};
|
2019-05-09 02:36:13 +02:00
|
|
|
|
|
|
|
//json::stack::member mvut
|
|
|
|
//{
|
|
|
|
// key_object, "minimum_valid_until_ts", json::value(0L)
|
|
|
|
//};
|
2018-05-07 23:46:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-09 02:36:13 +02:00
|
|
|
server_keys.~object();
|
|
|
|
top.~object();
|
2018-05-07 23:46:53 +02:00
|
|
|
return out.completed();
|
|
|
|
}
|
|
|
|
|
2018-02-25 08:53:32 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2018-02-19 23:34:34 +01:00
|
|
|
//
|
|
|
|
// v1/version.h
|
|
|
|
//
|
|
|
|
|
|
|
|
ircd::m::v1::version::version(const mutable_buffer &buf,
|
|
|
|
opts opts)
|
|
|
|
:server::request{[&]
|
|
|
|
{
|
|
|
|
assert(!!opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"origin"_>(opts.request)))
|
|
|
|
json::get<"origin"_>(opts.request) = my_host();
|
|
|
|
|
|
|
|
if(!defined(json::get<"destination"_>(opts.request)))
|
|
|
|
json::get<"destination"_>(opts.request) = host(opts.remote);
|
|
|
|
|
|
|
|
if(!defined(json::get<"uri"_>(opts.request)))
|
|
|
|
json::get<"uri"_>(opts.request) = "/_matrix/federation/v1/version";
|
|
|
|
|
|
|
|
json::get<"method"_>(opts.request) = "GET";
|
|
|
|
opts.out.head = opts.request(buf);
|
|
|
|
|
|
|
|
if(!size(opts.in))
|
|
|
|
{
|
2018-04-06 07:45:04 +02:00
|
|
|
opts.in.head = buf + size(opts.out.head);
|
2018-04-06 09:21:32 +02:00
|
|
|
opts.in.content = opts.dynamic?
|
|
|
|
mutable_buffer{}: // server::request will allocate new mem
|
|
|
|
opts.in.head; // server::request will auto partition
|
2018-02-19 23:34:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return server::request
|
|
|
|
{
|
|
|
|
opts.remote, std::move(opts.out), std::move(opts.in), opts.sopts
|
|
|
|
};
|
|
|
|
}()}
|
|
|
|
{
|
|
|
|
}
|
2018-04-06 07:11:46 +02:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// v1/v1.h
|
|
|
|
//
|
|
|
|
|
2018-04-10 22:20:31 +02:00
|
|
|
ircd::conf::item<ircd::milliseconds>
|
|
|
|
fetch_head_timeout
|
|
|
|
{
|
|
|
|
{ "name", "ircd.m.v1.fetch_head.timeout" },
|
|
|
|
{ "default", 30 * 1000L },
|
|
|
|
};
|
|
|
|
|
2018-04-06 07:11:46 +02:00
|
|
|
ircd::m::event::id::buf
|
|
|
|
ircd::m::v1::fetch_head(const id::room &room_id,
|
|
|
|
const net::hostport &remote)
|
|
|
|
{
|
2019-04-25 00:24:39 +02:00
|
|
|
const m::room room
|
|
|
|
{
|
|
|
|
room_id
|
|
|
|
};
|
|
|
|
|
|
|
|
// When no user_id is supplied and the room exists locally we attempt
|
|
|
|
// to find the user_id of one of our users with membership in the room.
|
|
|
|
// This satisfies synapse's requirements for whether we have access
|
|
|
|
// to the response. If user_id remains blank then make_join will later
|
|
|
|
// generate a random one from our host as well.
|
|
|
|
m::user::id::buf user_id
|
|
|
|
{
|
|
|
|
room.any_user(my_host(), "join")
|
|
|
|
};
|
|
|
|
|
|
|
|
// Make another attempt to find an invited user because that carries some
|
|
|
|
// value (this query is not as fast as querying join memberships).
|
|
|
|
if(!user_id)
|
|
|
|
user_id = room.any_user(my_host(), "invite");
|
|
|
|
|
|
|
|
return fetch_head(room_id, remote, user_id);
|
2018-04-06 07:11:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ircd::m::event::id::buf
|
|
|
|
ircd::m::v1::fetch_head(const id::room &room_id,
|
|
|
|
const net::hostport &remote,
|
|
|
|
const id::user &user_id)
|
|
|
|
{
|
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
16_KiB
|
|
|
|
};
|
|
|
|
|
|
|
|
make_join::opts opts;
|
|
|
|
opts.remote = remote;
|
|
|
|
make_join request
|
|
|
|
{
|
2019-04-25 00:24:39 +02:00
|
|
|
room_id, user_id, buf, std::move(opts)
|
2018-04-06 07:11:46 +02:00
|
|
|
};
|
|
|
|
|
2018-04-10 22:20:31 +02:00
|
|
|
request.wait(milliseconds(fetch_head_timeout));
|
2018-04-06 07:11:46 +02:00
|
|
|
request.get();
|
|
|
|
|
|
|
|
const json::object proto
|
|
|
|
{
|
|
|
|
request.in.content
|
|
|
|
};
|
|
|
|
|
2019-01-13 01:32:17 +01:00
|
|
|
const json::object event
|
|
|
|
{
|
|
|
|
proto.at("event")
|
|
|
|
};
|
|
|
|
|
2019-07-10 16:38:19 +02:00
|
|
|
const m::event::prev prev
|
2018-04-06 07:11:46 +02:00
|
|
|
{
|
2019-07-10 16:38:19 +02:00
|
|
|
event
|
2018-04-06 07:11:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const auto &prev_event_id
|
|
|
|
{
|
2019-07-10 16:38:19 +02:00
|
|
|
prev.prev_event(0)
|
2018-04-06 07:11:46 +02:00
|
|
|
};
|
|
|
|
|
2019-07-10 16:38:19 +02:00
|
|
|
return prev_event_id;
|
2018-04-06 07:11:46 +02:00
|
|
|
}
|