Auto add content-length header
This commit is contained in:
parent
4f518f4658
commit
3f9d492540
14
lib/http.hpp
14
lib/http.hpp
@ -15,6 +15,7 @@ class api;
|
|||||||
|
|
||||||
class http_request {
|
class http_request {
|
||||||
public:
|
public:
|
||||||
|
string protocol;
|
||||||
string method;
|
string method;
|
||||||
string url;
|
string url;
|
||||||
map<string, string> headers;
|
map<string, string> headers;
|
||||||
@ -23,19 +24,21 @@ class http_request {
|
|||||||
|
|
||||||
// konstruktori zahtjeva
|
// konstruktori zahtjeva
|
||||||
// odlazni
|
// odlazni
|
||||||
http_request(const http_method _method, const string _url, const string _body = "");
|
http_request(const http_method _method, const string _url, const string _body = "", const string _protocol = "1.1");
|
||||||
http_request(const api *_api);
|
http_request(const api *_api, const string _protocol = "1.1");
|
||||||
//dolazni
|
//dolazni
|
||||||
http_request(const string _raw);
|
http_request(const string _raw);
|
||||||
|
|
||||||
//bool validate();
|
//bool validate();
|
||||||
void putheader(const string _key, const string _value);
|
void header(const string _key, const string _value);
|
||||||
void setheaders(const map<string, string> _headers);
|
void header(const map<string, string> _headers);
|
||||||
|
private:
|
||||||
void parse();
|
void parse();
|
||||||
void mold();
|
void mold();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static string get_protocol(const string _protocol);
|
||||||
|
|
||||||
class http_response {
|
class http_response {
|
||||||
public:
|
public:
|
||||||
@ -47,7 +50,7 @@ class http_response {
|
|||||||
|
|
||||||
//konstruktor odgovora
|
//konstruktor odgovora
|
||||||
// odlazni
|
// odlazni
|
||||||
http_response(const http_response_code _status, const string _body, const string _protocol = "1.1");
|
http_response(const http_response_code _status, const string _body = "", const string _protocol = "1.1");
|
||||||
// dolaznih
|
// dolaznih
|
||||||
http_response(const string _raw);
|
http_response(const string _raw);
|
||||||
|
|
||||||
@ -55,6 +58,7 @@ class http_response {
|
|||||||
// void putheader(const string _key, const string _value);
|
// void putheader(const string _key, const string _value);
|
||||||
// void putheaders(const map<string, string> _headers);
|
// void putheaders(const map<string, string> _headers);
|
||||||
|
|
||||||
|
private:
|
||||||
void mold(); // za slanje
|
void mold(); // za slanje
|
||||||
void parse(); // čitaj http
|
void parse(); // čitaj http
|
||||||
};
|
};
|
||||||
|
31
src/http.cpp
31
src/http.cpp
@ -1,16 +1,24 @@
|
|||||||
#include "../lib/http.hpp"
|
#include "../lib/http.hpp"
|
||||||
|
|
||||||
http_request::http_request(const http_method _method, const string _url, const string _body) {
|
http_request::http_request(const http_method _method, const string _url, const string _body, const string _protocol) {
|
||||||
method = http_method_to_str(_method);
|
method = http_method_to_str(_method);
|
||||||
url = _url;
|
url = _url;
|
||||||
|
protocol = get_protocol(_protocol);
|
||||||
|
if (!_body.empty()) {
|
||||||
body = _body;
|
body = _body;
|
||||||
|
this->header("Content-Length", to_string(body.length()));
|
||||||
|
}
|
||||||
mold();
|
mold();
|
||||||
}
|
}
|
||||||
|
|
||||||
http_request::http_request(const api *_api) {
|
http_request::http_request(const api *_api, const string _protocol) {
|
||||||
method = _api->method;
|
method = _api->method;
|
||||||
url = _api->url;
|
url = _api->url;
|
||||||
|
protocol = get_protocol(_protocol);
|
||||||
|
if (!_api->body.empty()) {
|
||||||
body = _api->body;
|
body = _api->body;
|
||||||
|
this->header("Content-Length", to_string(body.length()));
|
||||||
|
}
|
||||||
mold();
|
mold();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,12 +54,12 @@ void http_request::parse() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void http_request::putheader(const string _key, const string _value) {
|
void http_request::header(const string _key, const string _value) {
|
||||||
headers[_key] = _value;
|
headers[_key] = _value;
|
||||||
mold();
|
mold();
|
||||||
}
|
}
|
||||||
|
|
||||||
void http_request::setheaders(const map<string, string> _headers) {
|
void http_request::header(const map<string, string> _headers) {
|
||||||
headers = _headers;
|
headers = _headers;
|
||||||
mold();
|
mold();
|
||||||
}
|
}
|
||||||
@ -63,7 +71,7 @@ void http_request::setheaders(const map<string, string> _headers) {
|
|||||||
void http_request::mold() {
|
void http_request::mold() {
|
||||||
|
|
||||||
raw = method.empty() ? "GET" : method;
|
raw = method.empty() ? "GET" : method;
|
||||||
raw += " " + url + " HTTP/1.1\r\n";
|
raw += " " + url + " " + protocol + "\r\n";
|
||||||
|
|
||||||
if (!headers.empty()) {
|
if (!headers.empty()) {
|
||||||
for (auto i : headers) {
|
for (auto i : headers) {
|
||||||
@ -76,14 +84,25 @@ void http_request::mold() {
|
|||||||
|
|
||||||
http_response::http_response(const http_response_code _status, const string _body, const string _protocol) {
|
http_response::http_response(const http_response_code _status, const string _body, const string _protocol) {
|
||||||
status = to_string(_status) + " " + http_response_code_txt(_status);
|
status = to_string(_status) + " " + http_response_code_txt(_status);
|
||||||
|
if (!_body.empty()) {
|
||||||
body = _body;
|
body = _body;
|
||||||
|
// kad merge s header-response branch možeš omogućit ovu liniju
|
||||||
|
// this->header("Content-Length", to_string(body.length()));
|
||||||
|
}
|
||||||
|
protocol = get_protocol(_protocol);
|
||||||
|
mold();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static string get_protocol(const string _protocol) {
|
||||||
|
string protocol;
|
||||||
if (_protocol == "1.0" || _protocol == "1.1" || _protocol == "2.0") {
|
if (_protocol == "1.0" || _protocol == "1.1" || _protocol == "2.0") {
|
||||||
protocol = "HTTP/" + _protocol;
|
protocol = "HTTP/" + _protocol;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
protocol = "HTTP/1.1";
|
protocol = "HTTP/1.1";
|
||||||
}
|
}
|
||||||
mold();
|
return protocol;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,23 +14,23 @@ int main() {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
api uf(&myApi, GET, "delete", {make_pair("id", "4")}, "bay");
|
// api uf(&myApi, GET, "/delete", {make_pair("id", "4")}, "bay");
|
||||||
http_request myreq(&uf);
|
// http_request myreq(&uf);
|
||||||
myreq.putheader("Content-type", "text/plain");
|
// myreq.header("Content-type", "text/plain");
|
||||||
|
|
||||||
cout << myreq.raw << endl;
|
// cout << myreq.raw << endl;
|
||||||
|
|
||||||
http_response myres("HTTP/1.1 200 OK\r\n\r\nnotauth");
|
// cout << myreq.protocol << endl;
|
||||||
cout << myres.protocol << endl;
|
// // cout << myreq.status << endl;
|
||||||
cout << myres.status << endl;
|
// for(auto i : myreq.headers)
|
||||||
// cout << myres.headers << endl;
|
// cout << i.first << " " << i.second << endl;
|
||||||
cout << myres.body << endl;
|
// cout << myreq.body << endl;
|
||||||
|
|
||||||
|
|
||||||
http_response myres2(OK, "nnotauth" );
|
http_response myres2(OK, "nnotauth" );
|
||||||
cout << myres2.protocol << endl;
|
cout << myres2.protocol << endl;
|
||||||
cout << myres2.status << endl;
|
cout << myres2.status << endl;
|
||||||
// cout << myres2.headers << endl;
|
cout << myres2.headers["Content-Length"] << endl;
|
||||||
cout << myres2.body << endl;
|
cout << myres2.body << endl;
|
||||||
|
|
||||||
|
|
||||||
|
BIN
test/test.o
BIN
test/test.o
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user