fix(core/error_code): now commands use the correct error code

This commit is contained in:
Raphael 2025-06-05 22:56:28 +02:00
parent 8ea4da3b82
commit bc8410a21d
19 changed files with 81 additions and 77 deletions

View file

@ -6,40 +6,41 @@
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */
/* Updated: 2025/06/02 00:55:56 by rparodi ### ########.fr */
/* Updated: 2025/06/05 22:50:21 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "part.hpp"
#include "commands.hpp"
#include "core.hpp"
#include "logs.hpp"
using namespace cmd;
bool Part::checkArgs() {
e_code Part::checkArgs() {
if (_args.size() < 2) {
WARNING_MSG("Not enough arguments for PART command");
return false;
return ERR_NEEDMOREPARAMS;
}
if (_args.at(1).at(0) != '#') {
WARNING_MSG("Invalid channel name for PART command");
INFO_MSG("Channel names must start with a '#' character");
return false;
return ERR_NOSUCHCHANNEL;
} else
_args.at(1).erase(0, 1);
_cTarget = searchList(_channels, _args.at(1));
if (_cTarget == NULL) {
WARNING_MSG("Channel not found for PART command");
INFO_MSG("You can only Part users to channels you are in");
return false;
return ERR_NOSUCHCHANNEL;
} else
_args.at(1).erase(0, 1);
if (searchList(this->_cTarget->getUsers(), this->_uTarget->getName())) {
WARNING_MSG("User is not in the channel he wants to leave");
INFO_MSG("You cannot leave a channel where ur not a member");
return false;
return ERR_USERNOTINCHANNEL;
}
return true;
return _PARSING_OK;
}
/**
@ -47,7 +48,7 @@ bool Part::checkArgs() {
* @note To leave a channel givent in parameter
*/
void Part::execute() {
if (checkArgs() == false) {
if (checkArgs() == _PARSING_OK) {
ERROR_MSG("Invalid arguments for Part command (see warning message)");
return;
}