mirror of
https://github.com/KeyZox71/webserv.git
synced 2025-05-11 22:58:47 +02:00
「🏗️」 wip: Started cgi handling but no clue what i am doing
This commit is contained in:
50
src/requests_handling/Cgi.cpp
Normal file
50
src/requests_handling/Cgi.cpp
Normal file
@ -0,0 +1,50 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* Cgi.cpp :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/04/24 13:46:34 by adjoly #+# #+# */
|
||||
/* Updated: 2025/04/24 14:38:20 by adjoly ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "requests/HttpIMessage.hpp"
|
||||
#include "requests/HttpRequest.hpp"
|
||||
#include "requests/HttpResponse.hpp"
|
||||
#include "requests/default.hpp"
|
||||
|
||||
Cgi::Cgi(http::IRequest *req, config::Server *conf) : _conf(conf), _request(req) {
|
||||
_initEnvp();
|
||||
}
|
||||
|
||||
void Cgi::_initEnvp(void) {
|
||||
_envp[] = "";
|
||||
}
|
||||
|
||||
std::string Cgi::getEnv(std::string &key) {
|
||||
auto it = _envp.find(key);
|
||||
if (it != _envp.end()) {
|
||||
return it->second;
|
||||
}
|
||||
return "";
|
||||
}
|
||||
|
||||
void Cgi::setEnv(std::string &key, std::string value) {
|
||||
_envp[key] = value;
|
||||
}
|
||||
|
||||
void Cgi::process() {
|
||||
int pipefd[2];
|
||||
int forkPid;
|
||||
|
||||
if (pipe(pipefd) <= -1) {
|
||||
//throw error
|
||||
}
|
||||
|
||||
forkPid = fork();
|
||||
if (forkPid == 0) {
|
||||
// in fork
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user