36 lines
591 B
C++
36 lines
591 B
C++
|
|
#include "Webserv.hpp"
|
|
|
|
void Webserv::_delete(Client *client, const std::string &path)
|
|
{
|
|
/*
|
|
WIP
|
|
https://www.rfc-editor.org/rfc/rfc9110.html#name-delete
|
|
*/
|
|
_delete_file(client, path);
|
|
}
|
|
|
|
void Webserv::_delete_file(Client *client, const std::string &path)
|
|
{
|
|
if (access(path.c_str(), F_OK) == -1)
|
|
{
|
|
std::perror("err access()");
|
|
client->status = 404;
|
|
return ;
|
|
}
|
|
|
|
if (access(path.c_str(), W_OK) == -1)
|
|
{
|
|
std::perror("err access()");
|
|
client->status = 403;
|
|
return ;
|
|
}
|
|
|
|
if (remove(path.c_str()) == -1)
|
|
{
|
|
std::perror("err remove()");
|
|
client->status = 500;
|
|
return ;
|
|
}
|
|
}
|