0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 19:18:35 +02:00
construct/modules/client/user/account_data.cc
2019-10-04 20:23:59 -07:00

76 lines
1.6 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.
#include "user.h"
using namespace ircd;
m::resource::response
put__account_data(client &client,
const m::resource::request &request,
const m::user &user)
{
if(request.parv.size() < 3)
throw m::NEED_MORE_PARAMS
{
"type path parameter required"
};
char typebuf[m::event::TYPE_MAX_SIZE];
const string_view type
{
url::decode(typebuf, request.parv[2])
};
const json::object value
{
request
};
const auto event_id
{
m::user::account_data{user}.set(type, value)
};
return m::resource::response
{
client, http::OK
};
}
m::resource::response
get__account_data(client &client,
const m::resource::request &request,
const m::user &user)
{
if(request.parv.size() < 3)
throw m::NEED_MORE_PARAMS
{
"type path parameter required"
};
char typebuf[m::event::TYPE_MAX_SIZE];
const string_view type
{
url::decode(typebuf, request.parv[2])
};
m::user::account_data{user}.get(type, [&client]
(const string_view &type, const json::object &value)
{
resource::response
{
client, value
};
});
return {}; // responded from closure
}