mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
78 lines
1.4 KiB
C++
78 lines
1.4 KiB
C++
|
// 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.
|
||
|
|
||
|
using namespace ircd;
|
||
|
|
||
|
mapi::header
|
||
|
IRCD_MODULE
|
||
|
{
|
||
|
"Identity Service 7 :Key management"
|
||
|
};
|
||
|
|
||
|
resource
|
||
|
pubkey_resource
|
||
|
{
|
||
|
"/_matrix/identity/api/v1/pubkey/",
|
||
|
{
|
||
|
"7.1 Get the public key for the passed key ID.",
|
||
|
resource::DIRECTORY
|
||
|
}
|
||
|
};
|
||
|
|
||
|
static resource::response
|
||
|
handle_get(client &,
|
||
|
const resource::request &);
|
||
|
|
||
|
resource::method
|
||
|
method_get
|
||
|
{
|
||
|
pubkey_resource, "GET", handle_get
|
||
|
};
|
||
|
|
||
|
resource::response
|
||
|
handle_get(client &client,
|
||
|
const resource::request &request)
|
||
|
{
|
||
|
if(request.parv.size() < 1)
|
||
|
throw m::NEED_MORE_PARAMS
|
||
|
{
|
||
|
"keyId path parameter required"
|
||
|
};
|
||
|
|
||
|
char buf[256];
|
||
|
const string_view keyid
|
||
|
{
|
||
|
url::decode(buf, request.parv[0])
|
||
|
};
|
||
|
|
||
|
const string_view algorithm
|
||
|
{
|
||
|
split(keyid, ':').first
|
||
|
};
|
||
|
|
||
|
const string_view identifier
|
||
|
{
|
||
|
split(keyid, ':').second
|
||
|
};
|
||
|
|
||
|
const string_view public_key
|
||
|
{
|
||
|
|
||
|
};
|
||
|
|
||
|
return resource::response
|
||
|
{
|
||
|
client, http::NOT_FOUND, json::members
|
||
|
{
|
||
|
{ "public_key", public_key }
|
||
|
}
|
||
|
};
|
||
|
}
|