rcpp_framework/web/http/request.cpp

379 lines
7.1 KiB
C++
Raw Normal View History

2020-11-25 00:20:41 +01:00
#include "request.h"
#include "web/http/cookie.h"
#include "web_server.h"
2021-08-04 20:33:21 +02:00
#include "http_session.h"
2022-01-08 11:42:57 +01:00
#include "session_manager.h"
#include "web/http/web_root.h"
#include "web_permission.h"
Ref<HTTPSession> Request::get_or_create_session() {
if (session.is_valid()) {
return session;
}
session = SessionManager::get_singleton()->create_session();
return session;
}
bool Request::can_view() const {
return (permissions & WebPermission::WEB_PERMISSION_VIEW) != 0;
}
bool Request::can_create() const {
return (permissions & WebPermission::WEB_PERMISSION_CREATE) != 0;
}
bool Request::can_edit() const {
return (permissions & WebPermission::WEB_PERMISSION_EDIT) != 0;
}
bool Request::can_delete() const {
return (permissions & WebPermission::WEB_PERMISSION_DELETE) != 0;
}
2022-01-09 15:00:59 +01:00
bool Request::has_csrf_token() {
if (!session.is_valid()) {
return false;
}
return session->has("csrf_token");
}
2022-01-09 14:51:04 +01:00
String Request::get_csrf_token() {
if (!session.is_valid()) {
return "";
}
const Variant &val = session->get_const("csrf_token");
if (val.is_simple_type()) {
return val.to_string();
}
return "";
}
2022-01-09 15:25:55 +01:00
void Request::set_csrf_token(const String &value) {
if (session.is_valid()) {
session->add("csrf_token", value);
SessionManager::get_singleton()->save_session(session);
2022-01-09 15:25:55 +01:00
}
}
bool Request::validate_csrf_token() {
String param_token = get_parameter("csrf_token");
param_token.trim();
if (param_token == "") {
return false;
}
String token = get_csrf_token();
if (token == "") {
return false;
}
return param_token == token;
}
const String Request::get_cookie(const String &key) {
static String str(0);
2021-08-22 23:01:39 +02:00
return str;
}
void Request::add_cookie(const ::Cookie &cookie) {
}
void Request::remove_cookie(const String &key) {
}
HTTPMethod Request::get_method() const {
return HTTP_METHOD_GET;
}
void Request::parse_files() {
}
int Request::get_file_count() const {
return 0;
}
int Request::get_file_length(const int index) const {
return 0;
}
const uint8_t *Request::get_file_data(const int index) const {
return nullptr;
}
const String Request::get_parameter(const String &key) const {
static String str(0);
return str;
2021-08-05 18:24:55 +02:00
}
2022-01-08 11:42:57 +01:00
HTTPStatusCode Request::get_status_code() const {
return _status_code;
}
void Request::set_status_code(const HTTPStatusCode status_code) {
_status_code = status_code;
}
void Request::send_redirect(const String &location, const HTTPStatusCode status_code) {
2021-10-31 02:50:06 +02:00
}
void Request::compile_body() {
compiled_body.ensure_capacity(body.size() + head.size() + 15 + 13 + 14 + 15 + 1);
2021-10-30 23:32:06 +02:00
2022-01-08 11:42:57 +01:00
// 15
2021-10-30 23:32:06 +02:00
compiled_body += "<!DOCTYPE html>";
2022-01-08 11:42:57 +01:00
// 13
compiled_body += "<html>"
"<head>";
compiled_body += head;
2022-01-08 11:42:57 +01:00
// 14
compiled_body += "</head>"
"<body>";
compiled_body += body;
2020-12-26 00:17:36 +01:00
compiled_body += footer;
2022-01-08 11:42:57 +01:00
// 15
compiled_body += "</body>"
"</html>";
2022-01-08 11:42:57 +01:00
// response->setBody(compiled_body);
}
void Request::compile_and_send_body() {
compile_body();
send();
}
void Request::send() {
2022-01-08 11:42:57 +01:00
// if (connection_closed) {
// RequestPool::return_request(this);
// return;
2022-01-08 11:42:57 +01:00
// }
2022-01-08 11:42:57 +01:00
// RequestPool::return_request(this);
}
void Request::send_file(const String &p_file_path) {
2022-01-08 11:42:57 +01:00
// RequestPool::return_request(this);
}
void Request::send_error(int error_code) {
2022-01-08 11:47:39 +01:00
server->get_web_root()->handle_error_send_request(this, error_code);
}
2020-11-25 00:20:41 +01:00
void Request::reset() {
2021-08-04 20:33:21 +02:00
session = nullptr;
server = nullptr;
_path_stack.clear();
_path_stack_pointer = 0;
file_size = 0;
current_file_progress = 0;
connection_closed = false;
2021-07-06 20:23:13 +02:00
_full_path = "";
2022-01-08 11:42:57 +01:00
_status_code = HTTP_STATUS_CODE_200_OK;
// Maybe set NONE or only VIEW as default?
permissions = WebPermission::WEB_PERMISSION_ALL;
2022-02-10 16:18:23 +01:00
active_permission.unref();
2020-11-25 00:20:41 +01:00
head.clear();
body.clear();
2020-12-26 00:17:36 +01:00
footer.clear();
compiled_body.clear();
data.clear();
reference_data.clear();
}
String Request::parser_get_path() {
return "";
2020-11-25 00:20:41 +01:00
}
void Request::setup_url_stack() {
_full_path = parser_get_path();
String path = parser_get_path();
size_t pos = 0;
String st;
while ((pos = path.find('/')) != -1) {
st = path.substr(0, pos);
if (st.size() != 0) {
_path_stack.push_back(st);
}
path.erase(0, pos + 1);
}
if (path.size() != 0) {
_path_stack.push_back(path);
}
}
String Request::get_path(const bool beginning_slash, const bool end_slash) const {
String path;
if (beginning_slash) {
path += '/';
}
for (uint32_t i = _path_stack_pointer; i < _path_stack.size(); ++i) {
path += _path_stack[i];
path += '/';
}
if (!end_slash && path.size() > 1) {
path.pop_back();
}
return path;
}
const String &Request::get_path_full() const {
return _full_path;
}
const String &Request::get_path_segment(const uint32_t i) const {
return _path_stack[i];
}
const String &Request::get_current_path_segment() const {
if (_path_stack_pointer >= _path_stack.size()) {
2022-01-08 11:42:57 +01:00
// for convenience
static const String e_str = "";
return e_str;
}
return _path_stack[_path_stack_pointer];
}
const String &Request::get_next_path_segment() const {
int pst = _path_stack_pointer + 1;
if (pst >= _path_stack.size()) {
2022-01-08 11:42:57 +01:00
// for convenience
static const String e_str = "";
return e_str;
}
return _path_stack[pst];
}
uint32_t Request::get_path_segment_count() const {
return _path_stack.size();
}
uint32_t Request::get_current_segment_index() const {
return _path_stack_pointer;
}
uint32_t Request::get_remaining_segment_count() const {
if (_path_stack_pointer > _path_stack.size()) {
return 0;
}
return _path_stack.size() - _path_stack_pointer;
}
void Request::pop_path() {
_path_stack_pointer -= 1;
}
void Request::push_path() {
_path_stack_pointer += 1;
}
String Request::get_url_root_parent(const int parent) const {
String path = "/";
for (uint32_t i = 0; i < _path_stack_pointer - parent; ++i) {
path += _path_stack[i];
path += "/";
}
return path;
}
String Request::get_url_root() const {
int pst = _path_stack_pointer + 1;
if (pst > _path_stack.size()) {
pst = _path_stack.size();
}
String path = "/";
2021-11-01 00:38:26 +01:00
for (uint32_t i = 0; i < _path_stack_pointer; ++i) {
path += _path_stack[i];
path += "/";
}
return path;
}
String Request::get_url_root_current() const {
int pst = _path_stack_pointer + 1;
if (pst > _path_stack.size()) {
pst = _path_stack.size();
}
String path = "/";
for (uint32_t i = 0; i < pst; ++i) {
path += _path_stack[i];
path += "/";
}
return path;
}
String Request::get_url_site() const {
String path = get_host();
2021-11-01 00:38:26 +01:00
for (uint32_t i = _path_stack_pointer; i < _path_stack.size(); ++i) {
path += _path_stack[i];
path += "/";
}
return path;
}
2021-11-01 21:20:42 +01:00
String Request::get_url_root_parent(const String &add) const {
return get_url_root_parent() + add;
}
String Request::get_url_root(const String &add) const {
return get_url_root() + add;
}
String Request::get_url_site(const String &add) const {
return get_url_site() + add;
}
String Request::get_host() const {
2021-11-01 00:38:26 +01:00
return "";
}
void Request::update() {
}
void Request::pool() {
}
Request::Request() {
2022-01-08 11:42:57 +01:00
// This value will need benchmarks, 2 MB seems to be just as fast for me as 4 MB, but 1MB is slower
// It is a tradeoff on server memory though, as every active download will consume this amount of memory
// where the file is bigger than this number
file_chunk_size = 1 << 21; // 2MB
2020-11-25 00:20:41 +01:00
}
Request::~Request() {
}