0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 21:28:53 +02:00

modules/client/account: 3.6.1 GET whoami

This commit is contained in:
Jason Volk 2018-02-14 12:59:42 -08:00
parent 575820d993
commit 3dd792033b
2 changed files with 45 additions and 0 deletions

View file

@ -143,6 +143,7 @@ client_module_LTLIBRARIES += client/client_user.la
#
client_client_account_la_SOURCES = \
client/account/whoami.cc \
client/account/password.cc \
client/account/deactivate.cc \
client/account/account.cc \

View file

@ -0,0 +1,44 @@
// 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;
resource
account_whoami
{
"/_matrix/client/r0/account/whoami",
{
"(3.6.1) Gets information about the owner of a given access token."
}
};
resource::response
get__whoami(client &client,
const resource::request &request)
{
return resource::response
{
client, json::members
{
{ "user_id", request.user_id }
}
};
}
resource::method
get_whoami
{
account_whoami, "GET", get__whoami,
{
get_whoami.REQUIRES_AUTH
}
};