7#include "crow/http_request.h"
8#include "crow/returnable.h"
15 const std::string dd =
"--";
16 const std::string crlf =
"\r\n";
21 std::pair<std::string, std::string>
value;
22 std::unordered_map<std::string, std::string>
params;
42 const std::string& get_header_value(
const std::string& key)
const
44 return crow::get_header_value(headers, key);
48 std::string
dump()
const override
50 std::stringstream str;
51 std::string delimiter = dd +
boundary;
53 for (
unsigned i=0 ; i<
parts.size(); i++)
55 str << delimiter << crlf;
58 str << delimiter << dd << crlf;
63 std::string
dump(
int part_)
const
65 std::stringstream str;
69 str << item_h.
value.first <<
": " << item_h.
value.second;
70 for (
auto& it: item_h.
params)
72 str <<
"; " << it.first <<
'=' << pad(it.second);
77 str << item.
body << crlf;
82 message(
const ci_map& headers,
const std::string&
boundary,
const std::vector<part>& sections)
89 boundary(get_boundary(get_header_value(
"Content-Type"))),
90 parts(parse_body(req.body))
95 std::string get_boundary(
const std::string&
header)
const
97 size_t found =
header.find(
"boundary=");
99 return header.substr(found+9);
100 return std::string();
103 std::vector<part> parse_body(std::string body)
106 std::vector<part> sections;
108 std::string delimiter = dd +
boundary;
110 while(body != (crlf))
112 size_t found = body.find(delimiter);
113 std::string section = body.substr(0, found);
118 body.erase(0, found + delimiter.length() + 2);
119 if (!section.empty())
121 sections.emplace_back(parse_section(section));
127 part parse_section(std::string& section)
129 struct part to_return;
131 size_t found = section.find(crlf+crlf);
132 std::string head_line = section.substr(0, found+2);
133 section.erase(0, found + 4);
135 parse_section_head(head_line, to_return);
136 to_return.body = section.substr(0, section.length()-2);
140 void parse_section_head(std::string& lines, part& part)
142 while (!lines.empty())
146 size_t found = lines.find(crlf);
147 std::string line = lines.substr(0, found);
148 lines.erase(0, found+2);
152 size_t found = line.find(
"; ");
153 std::string header = line.substr(0, found);
154 if (found != std::string::npos)
155 line.erase(0, found+2);
157 line = std::string();
159 size_t header_split = header.find(
": ");
161 to_add.value = std::pair<std::string, std::string>(header.substr(0, header_split), header.substr(header_split+2));
165 while (!line.empty())
167 size_t found = line.find(
"; ");
168 std::string param = line.substr(0, found);
169 if (found != std::string::npos)
170 line.erase(0, found+2);
172 line = std::string();
174 size_t param_split = param.find(
'=');
176 std::string value = param.substr(param_split+1);
178 to_add.params.emplace(param.substr(0, param_split), trim(value));
180 part.headers.emplace_back(to_add);
184 inline std::string trim (std::string&
string,
const char& excess =
'"')
const
186 if (
string.length() > 1 &&
string[0] == excess &&
string[
string.length()-1] == excess)
187 return string.substr(1,
string.length()-2);
191 inline std::string pad (std::string&
string,
const char& padding =
'"')
const
193 return (padding +
string + padding);
The parsed multipart request/response.
Definition: multipart.h:37
message(const ci_map &headers, const std::string &boundary, const std::vector< part > §ions)
Default constructor using default values.
Definition: multipart.h:82
std::vector< part > parts
The individual parts of the message.
Definition: multipart.h:40
message(const request &req)
Create a multipart message from a request data.
Definition: multipart.h:86
std::string boundary
The text boundary that separates different parts
Definition: multipart.h:39
std::string dump(int part_) const
Represent an individual part as a string.
Definition: multipart.h:63
std::string dump() const override
Represent all parts as a string (does not include message headers)
Definition: multipart.h:48
One part of the multipart message.
Definition: multipart.h:30
std::string body
The actual data in the part.
Definition: multipart.h:32
std::vector< header > headers
(optional) The first part before the data, Contains information regarding the type of data and encodi...
Definition: multipart.h:31
An HTTP request.
Definition: http_request.h:27
An abstract class that allows any other class to be returned by a handler.
Definition: returnable.h:9