summaryrefslogtreecommitdiff
path: root/crow/include/crow/http_request.h
blob: e66ad4be27d3ff4620ee4ced686e0e3400304396 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#pragma once

#include <boost/asio/io_service.hpp>
#include <boost/beast/http.hpp>
#include <boost/beast/websocket.hpp>

#include "crow/common.h"
#include "crow/query_string.h"

namespace crow
{

struct Request
{
    boost::string_view url{};
    QueryString urlParams{};
    bool isSecure{false};

    const std::string& body;

    void* middlewareContext{};
    boost::asio::io_service* ioService{};

    Request(boost::beast::http::request<boost::beast::http::string_body>& req) :
        req(req), body(req.body())
    {
    }

    const boost::beast::http::verb method() const
    {
        return req.method();
    }

    const boost::string_view getHeaderValue(boost::string_view key) const
    {
        return req[key];
    }

    const boost::string_view getHeaderValue(boost::beast::http::field key) const
    {
        return req[key];
    }

    const boost::string_view methodString() const
    {
        return req.method_string();
    }

    const boost::string_view target() const
    {
        return req.target();
    }

    unsigned version()
    {
        return req.version();
    }

    bool isUpgrade()
    {
        return boost::beast::websocket::is_upgrade(req);
    }

    bool keepAlive()
    {
        return req.keep_alive();
    }

    boost::beast::http::request<boost::beast::http::string_body>& req;
};

} // namespace crow