From 7cdbc12587ab752787d22698f46636b0ce13c828 Mon Sep 17 00:00:00 2001 From: Raphael Date: Sat, 24 May 2025 18:27:39 +0200 Subject: [PATCH] init(cmd/invite): starting to work on invite command --- include/commands/invite.hpp | 21 +++++++++++++++++++ sources/commands/invite.cpp | 40 +++++++++++++++++++++++++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 include/commands/invite.hpp create mode 100644 sources/commands/invite.cpp diff --git a/include/commands/invite.hpp b/include/commands/invite.hpp new file mode 100644 index 0000000..e2eb1ed --- /dev/null +++ b/include/commands/invite.hpp @@ -0,0 +1,21 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* invite.hpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rparodi +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2025/05/24 17:17:31 by rparodi #+# #+# */ +/* Updated: 2025/05/24 17:32:43 by rparodi ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#pragma once + +#include "commands.hpp" + +class cmd::Invite : public ACommand { + public: + virtual void execute(Server &server, User &client, const std::vector &args); + virtual bool checkArgs(); +}; diff --git a/sources/commands/invite.cpp b/sources/commands/invite.cpp new file mode 100644 index 0000000..cdfacd2 --- /dev/null +++ b/sources/commands/invite.cpp @@ -0,0 +1,40 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* invite.cpp :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: rparodi +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2025/05/24 17:29:48 by rparodi #+# #+# */ +/* Updated: 2025/05/24 17:58:36 by rparodi ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include "invite.hpp" +#include "commands.hpp" +#include "logs.hpp" + +using namespace cmd; + +bool Invite::checkArgs() { + if (_args.size() < 2) { + WARNING_MSG("Not enough arguments for INVITE command"); + return false; + } + if (_args.at(1).at(0) != '#') { + WARNING_MSG("Invalid channel name for INVITE command"); + INFO_MSG("Channel names must start with a '#' character"); + return false; + } + _cTarget = searchList(_channels, _args.at(1)); + if (_cTarget == nullptr) { + WARNING_MSG("Channel not found for INVITE command"); + INFO_MSG("You can only invite users to channels you are in"); + return false; + } + if (searchList(_cTarget->getOperators(), _sender->getName()) != nullptr) { + WARNING_MSG("You are not an operator in the channel for INVITE command"); + return false; + } + return (true); +}