feat(cmd/nick): adding nick commands

This commit is contained in:
Raphael 2025-06-02 01:02:25 +02:00
parent 10ee877451
commit ede2219ba4
2 changed files with 69 additions and 0 deletions

22
include/commands/nick.hpp Normal file
View file

@ -0,0 +1,22 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* nick.hpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:17:31 by rparodi #+# #+# */
/* Updated: 2025/06/02 00:40:18 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#pragma once
#include "commands.hpp"
class cmd::Nick : public ACommand {
public:
Nick(User *user, Channel *channel, Server *server, const std::string &line) : ACommand(user, channel, server, line) {}
virtual void execute(void);
virtual bool checkArgs();
};

47
sources/commands/nick.cpp Normal file
View file

@ -0,0 +1,47 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* nick.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rparodi <rparodi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */
/* Updated: 2025/06/02 00:55:45 by rparodi ### ########.fr */
/* */
/* ************************************************************************** */
#include "nick.hpp"
#include "commands.hpp"
#include "logs.hpp"
using namespace cmd;
bool Nick::checkArgs() {
if (this->_uTarget->isRegistered() == false) {
WARNING_MSG("User is not registered for Nick command");
INFO_MSG("You can only Nick registered users");
return false;
}
if (_args.size() < 2) {
WARNING_MSG("Not enough arguments for Nick command");
return false;
}
_uTarget = searchList(this->_users, _args.at(1));
if (this->_uTarget != NULL) {
WARNING_MSG(_uTarget->getName() << " is already taken")
return false;
}
return true;
}
/**
* @brief Execute the Nick command
* @note To change the nickname of the user
*/
void Nick::execute() {
if (checkArgs() == false) {
ERROR_MSG("Invalid arguments for Nick command (see warning message)");
return;
}
// check how the com
}