2016-11-29 16:23:38 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 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.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_RESOURCE_H
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
struct resource;
|
|
|
|
}
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::resource
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
|
|
|
IRCD_EXCEPTION(ircd::error, error)
|
|
|
|
|
|
|
|
struct method;
|
|
|
|
struct request;
|
|
|
|
struct response;
|
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
enum flag
|
|
|
|
{
|
|
|
|
DIRECTORY = 0x01,
|
|
|
|
};
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
struct opts
|
|
|
|
{
|
|
|
|
flag flags{flag(0)};
|
|
|
|
string_view description;
|
|
|
|
};
|
|
|
|
|
|
|
|
static std::map<string_view, resource *, iless> resources;
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
string_view path;
|
|
|
|
string_view description;
|
|
|
|
flag flags;
|
|
|
|
std::map<string_view, method *> methods;
|
|
|
|
unique_const_iterator<decltype(resources)> resources_it;
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
private:
|
|
|
|
virtual void handle_request(client &, method &, resource::request &);
|
2017-03-21 03:30:07 +01:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
public:
|
2017-08-23 23:06:14 +02:00
|
|
|
method &operator[](const string_view &path);
|
2017-03-21 03:30:07 +01:00
|
|
|
void operator()(client &, parse::capstan &, const http::request::head &);
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
resource(const string_view &path, const string_view &description, opts = {{}});
|
|
|
|
resource(const string_view &path, opts = {{}});
|
|
|
|
resource() = default;
|
2016-11-29 16:23:38 +01:00
|
|
|
virtual ~resource() noexcept;
|
2017-08-23 23:06:14 +02:00
|
|
|
|
|
|
|
static resource &find(string_view path);
|
2016-11-29 16:23:38 +01:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::resource::request
|
2017-08-23 23:47:21 +02:00
|
|
|
:json::object
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
2017-09-21 11:11:07 +02:00
|
|
|
template<class> struct object;
|
2017-08-28 23:51:22 +02:00
|
|
|
|
2016-11-29 16:23:38 +01:00
|
|
|
const http::request::head &head;
|
2017-03-13 22:07:58 +01:00
|
|
|
http::request::content &content;
|
2017-08-23 23:06:14 +02:00
|
|
|
http::query::string query;
|
2017-09-25 05:47:13 +02:00
|
|
|
m::user::id::buf user_id;
|
2017-10-12 05:52:33 +02:00
|
|
|
vector_view<string_view> parv;
|
2017-03-21 03:30:07 +01:00
|
|
|
|
2017-10-12 05:52:33 +02:00
|
|
|
request(const http::request::head &head, http::request::content &content, http::query::string query, const vector_view<string_view> &parv);
|
2017-03-21 03:30:07 +01:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
template<class tuple>
|
2017-09-21 11:11:07 +02:00
|
|
|
struct ircd::resource::request::object
|
2017-08-28 23:51:22 +02:00
|
|
|
:tuple
|
|
|
|
{
|
2017-09-21 11:11:07 +02:00
|
|
|
resource::request &r;
|
|
|
|
const http::request::head &head;
|
|
|
|
const http::request::content &content;
|
|
|
|
const http::query::string &query;
|
2017-10-12 05:52:33 +02:00
|
|
|
const vector_view<string_view> &parv;
|
2017-09-21 11:11:07 +02:00
|
|
|
const json::object &body;
|
|
|
|
|
|
|
|
object(resource::request &r)
|
|
|
|
:tuple{r}
|
|
|
|
,r{r}
|
|
|
|
,head{r.head}
|
|
|
|
,content{r.content}
|
|
|
|
,query{r.query}
|
2017-10-12 05:52:33 +02:00
|
|
|
,parv{r.parv}
|
2017-09-21 11:11:07 +02:00
|
|
|
,body{r}
|
|
|
|
{}
|
2017-08-28 23:51:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ircd::resource::response
|
2017-03-21 03:30:07 +01:00
|
|
|
{
|
2017-08-23 23:06:14 +02:00
|
|
|
response(client &, const string_view &str, const string_view &ct = "text/plain; charset=utf8", const http::code & = http::OK);
|
2017-09-15 21:07:07 +02:00
|
|
|
response(client &, const json::object &str, const http::code & = http::OK);
|
2017-09-25 02:00:05 +02:00
|
|
|
response(client &, const json::array &str, const http::code & = http::OK);
|
2017-09-15 21:07:07 +02:00
|
|
|
response(client &, const json::members & = {}, const http::code & = http::OK);
|
2017-09-25 02:00:05 +02:00
|
|
|
response(client &, const json::value &, const http::code & = http::OK);
|
2017-09-09 21:20:00 +02:00
|
|
|
response(client &, const json::iov &, const http::code & = http::OK);
|
2017-09-12 22:34:21 +02:00
|
|
|
response(client &, const http::code &, const json::members &);
|
2017-09-25 02:00:05 +02:00
|
|
|
response(client &, const http::code &, const json::value &);
|
2017-09-09 21:20:00 +02:00
|
|
|
response(client &, const http::code &, const json::iov &);
|
|
|
|
response(client &, const http::code &);
|
2017-03-21 03:30:07 +01:00
|
|
|
response() = default;
|
2016-11-29 16:23:38 +01:00
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::resource::method
|
2016-11-29 16:23:38 +01:00
|
|
|
{
|
2017-08-23 23:06:14 +02:00
|
|
|
enum flag
|
|
|
|
{
|
|
|
|
REQUIRES_AUTH = 0x01,
|
|
|
|
RATE_LIMITED = 0x02,
|
2017-10-16 06:29:38 +02:00
|
|
|
VERIFY_ORIGIN = 0x04,
|
2017-08-23 23:06:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct opts
|
|
|
|
{
|
|
|
|
flag flags{flag(0)};
|
|
|
|
};
|
|
|
|
|
2017-03-11 04:31:20 +01:00
|
|
|
using handler = std::function<response (client &, request &)>;
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
string_view name;
|
2016-11-29 16:23:38 +01:00
|
|
|
struct resource *resource;
|
2017-08-23 23:06:14 +02:00
|
|
|
handler function;
|
|
|
|
flag flags;
|
|
|
|
unique_const_iterator<decltype(resource::methods)> methods_it;
|
2016-11-29 16:23:38 +01:00
|
|
|
|
|
|
|
public:
|
2017-08-23 23:06:14 +02:00
|
|
|
virtual response operator()(client &, request &);
|
2016-11-29 16:23:38 +01:00
|
|
|
|
2017-08-23 23:06:14 +02:00
|
|
|
method(struct resource &, const string_view &name, const handler &, opts = {{}});
|
|
|
|
virtual ~method() noexcept;
|
2016-11-29 16:23:38 +01:00
|
|
|
};
|