mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 11:58:53 +01:00
59 lines
1.4 KiB
C++
59 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.
|
||
|
|
||
|
#include "user.h"
|
||
|
|
||
|
using namespace ircd;
|
||
|
|
||
|
static resource::response
|
||
|
post__openid__request_token(client &client,
|
||
|
const resource::request &request,
|
||
|
const m::user::id &user_id);
|
||
|
|
||
|
resource::response
|
||
|
post__openid(client &client,
|
||
|
const resource::request &request,
|
||
|
const m::user::id &user_id)
|
||
|
{
|
||
|
if(user_id != request.user_id)
|
||
|
throw m::FORBIDDEN
|
||
|
{
|
||
|
"Trying to post openid for `%s' but you are `%s'",
|
||
|
user_id,
|
||
|
request.user_id
|
||
|
};
|
||
|
|
||
|
// request.parv[0] = <user_id>
|
||
|
// request.parv[1] = "openid"
|
||
|
const string_view &cmd
|
||
|
{
|
||
|
request.parv[2]
|
||
|
};
|
||
|
|
||
|
if(cmd == "request_token")
|
||
|
return post__openid__request_token(client, request, user_id);
|
||
|
|
||
|
throw m::NOT_FOUND
|
||
|
{
|
||
|
"/user/openid command not found"
|
||
|
};
|
||
|
}
|
||
|
|
||
|
resource::response
|
||
|
post__openid__request_token(client &client,
|
||
|
const resource::request &request,
|
||
|
const m::user::id &user_id)
|
||
|
{
|
||
|
return resource::response
|
||
|
{
|
||
|
client, http::NOT_FOUND
|
||
|
};
|
||
|
}
|