blob: c16036830c58be04713df4ea2348742ef284cb9c [file] [log] [blame]
Ed Tanous7045c8d2017-04-03 10:04:37 -07001#pragma once
2
Gunnar Mills1214b7e2020-06-04 10:11:30 -05003#include "common.h"
Gunnar Mills1214b7e2020-06-04 10:11:30 -05004
Ratan Gupta6f359562019-04-03 10:39:08 +05305#include "sessions.hpp"
6
Ed Tanous8f626352018-12-19 14:51:54 -08007#include <boost/asio/io_context.hpp>
Ed Tanousd43cd0c2020-09-30 20:46:53 -07008#include <boost/beast/http/message.hpp>
9#include <boost/beast/http/string_body.hpp>
Manojkiran Eda44250442020-06-16 12:51:38 +053010#include <boost/beast/websocket.hpp>
James Feist5a7e8772020-07-22 09:08:38 -070011#include <boost/url/url_view.hpp>
raviteja-b4722efe2020-02-03 12:23:18 -060012
Ed Tanous1abe55e2018-09-05 08:30:59 -070013namespace crow
14{
Ed Tanous7045c8d2017-04-03 10:04:37 -070015
Ed Tanous1abe55e2018-09-05 08:30:59 -070016struct Request
17{
Ed Tanous43b761d2019-02-13 20:10:56 -080018 boost::beast::http::request<boost::beast::http::string_body>& req;
James Feistfe306722020-03-12 16:32:08 -070019 boost::beast::http::fields& fields;
Ed Tanous39e77502019-03-04 17:35:53 -080020 std::string_view url{};
James Feist5a7e8772020-07-22 09:08:38 -070021 boost::urls::url_view urlView{};
22 boost::urls::url_view::params_type urlParams{};
Ed Tanous1abe55e2018-09-05 08:30:59 -070023 bool isSecure{false};
Ed Tanous7045c8d2017-04-03 10:04:37 -070024
Ed Tanous1abe55e2018-09-05 08:30:59 -070025 const std::string& body;
Ed Tanouse0d918b2018-03-27 17:41:04 -070026
Ed Tanous8f626352018-12-19 14:51:54 -080027 boost::asio::io_context* ioService{};
Ed Tanous7045c8d2017-04-03 10:04:37 -070028
Ed Tanous52cc1122020-07-18 13:51:21 -070029 std::shared_ptr<persistent_data::UserSession> session;
Ratan Gupta6f359562019-04-03 10:39:08 +053030
RAJESWARAN THILLAIGOVINDAN61dbeef2019-12-13 04:26:54 -060031 std::string userRole{};
Ed Tanous271584a2019-07-09 16:24:22 -070032 Request(
33 boost::beast::http::request<boost::beast::http::string_body>& reqIn) :
34 req(reqIn),
James Feistfe306722020-03-12 16:32:08 -070035 fields(reqIn.base()), body(reqIn.body())
Gunnar Mills1214b7e2020-06-04 10:11:30 -050036 {}
Ed Tanous7045c8d2017-04-03 10:04:37 -070037
Ed Tanous271584a2019-07-09 16:24:22 -070038 boost::beast::http::verb method() const
Ed Tanous1abe55e2018-09-05 08:30:59 -070039 {
40 return req.method();
41 }
Ed Tanous7045c8d2017-04-03 10:04:37 -070042
Ed Tanous39e77502019-03-04 17:35:53 -080043 const std::string_view getHeaderValue(std::string_view key) const
Ed Tanous1abe55e2018-09-05 08:30:59 -070044 {
45 return req[key];
46 }
Ed Tanous7045c8d2017-04-03 10:04:37 -070047
Ed Tanous39e77502019-03-04 17:35:53 -080048 const std::string_view getHeaderValue(boost::beast::http::field key) const
Ed Tanous1abe55e2018-09-05 08:30:59 -070049 {
50 return req[key];
51 }
Ed Tanouse0d918b2018-03-27 17:41:04 -070052
Ed Tanous39e77502019-03-04 17:35:53 -080053 const std::string_view methodString() const
Ed Tanous1abe55e2018-09-05 08:30:59 -070054 {
55 return req.method_string();
56 }
Ed Tanouse0d918b2018-03-27 17:41:04 -070057
Ed Tanous39e77502019-03-04 17:35:53 -080058 const std::string_view target() const
Ed Tanous1abe55e2018-09-05 08:30:59 -070059 {
60 return req.target();
61 }
Ed Tanouse0d918b2018-03-27 17:41:04 -070062
Ed Tanous1abe55e2018-09-05 08:30:59 -070063 unsigned version()
64 {
65 return req.version();
66 }
Ed Tanouse0d918b2018-03-27 17:41:04 -070067
Ed Tanous1abe55e2018-09-05 08:30:59 -070068 bool isUpgrade()
69 {
70 return boost::beast::websocket::is_upgrade(req);
71 }
Ed Tanouse0d918b2018-03-27 17:41:04 -070072
Ed Tanous1abe55e2018-09-05 08:30:59 -070073 bool keepAlive()
74 {
75 return req.keep_alive();
76 }
Ed Tanous7045c8d2017-04-03 10:04:37 -070077};
Ed Tanouse0d918b2018-03-27 17:41:04 -070078
Ed Tanous1abe55e2018-09-05 08:30:59 -070079} // namespace crow