3#include <boost/asio.hpp>
5#include "crow/common.h"
6#include "crow/ci_map.h"
7#include "crow/query_string.h"
13 inline const std::string& get_header_value(
const T& headers,
const std::string& key)
15 if (headers.count(key))
17 return headers.find(key)->second;
19 static std::string empty;
36 void* middleware_context{};
37 boost::asio::io_service* io_service{};
41 : method(HTTPMethod::Get)
51 void add_header(std::string key, std::string value)
53 headers.emplace(std::move(key), std::move(value));
56 const std::string& get_header_value(
const std::string& key)
const
58 return crow::get_header_value(headers, key);
62 template<
typename CompletionHandler>
63 void post(CompletionHandler handler)
65 io_service->post(handler);
69 template<
typename CompletionHandler>
72 io_service->dispatch(handler);
A class to represent any data coming after the ? in the request URL into key-value pairs.
Definition: query_string.h:292
An HTTP request.
Definition: http_request.h:27
void post(CompletionHandler handler)
Send the request with a completion handler and return immediately.
Definition: http_request.h:63
request(HTTPMethod method, std::string raw_url, std::string url, query_string url_params, ci_map headers, std::string body)
Construct a request with all values assigned.
Definition: http_request.h:46
std::string raw_url
The full URL containing the ? and URL parameters.
Definition: http_request.h:29
query_string url_params
The parameters associated with the request. (everything after the ?)
Definition: http_request.h:31
request()
Construct an empty request. (sets the method to GET)
Definition: http_request.h:40
std::string url
The endpoint without any parameters.
Definition: http_request.h:30
void dispatch(CompletionHandler handler)
Send the request with a completion handler.
Definition: http_request.h:70
std::string remoteIpAddress
The IP address from which the request was sent.
Definition: http_request.h:34