mirror of
https://github.com/matrix-construct/construct
synced 2024-11-01 03:18:54 +01:00
45 lines
980 B
C++
45 lines
980 B
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.
|
|
|
|
#include "account.h"
|
|
|
|
using namespace ircd;
|
|
|
|
m::resource
|
|
account_whoami
|
|
{
|
|
"/_matrix/client/r0/account/whoami",
|
|
{
|
|
"(3.6.1) Gets information about the owner of a given access token."
|
|
}
|
|
};
|
|
|
|
m::resource::response
|
|
get__whoami(client &client,
|
|
const m::resource::request &request)
|
|
{
|
|
return m::resource::response
|
|
{
|
|
client, json::members
|
|
{
|
|
{ "user_id", request.user_id }
|
|
}
|
|
};
|
|
}
|
|
|
|
m::resource::method
|
|
get_whoami
|
|
{
|
|
account_whoami, "GET", get__whoami,
|
|
{
|
|
get_whoami.REQUIRES_AUTH |
|
|
get_whoami.RATE_LIMITED
|
|
}
|
|
};
|