mirror of
https://github.com/matrix-construct/construct
synced 2024-11-19 08:21:09 +01:00
modules/client/account: 3.6.1 GET whoami
This commit is contained in:
parent
575820d993
commit
3dd792033b
2 changed files with 45 additions and 0 deletions
|
@ -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 \
|
||||
|
|
44
modules/client/account/whoami.cc
Normal file
44
modules/client/account/whoami.cc
Normal 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
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue