c est metaphysique

This commit is contained in:
Kbz-8
2024-01-30 20:17:08 +01:00
parent 6a4f2adb1f
commit 79b3a8ed26
4 changed files with 32 additions and 27 deletions

View File

@@ -6,7 +6,7 @@
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/21 10:36:21 by maldavid #+# #+# */
/* Updated: 2024/01/30 18:48:32 by vvaas ### ########.fr */
/* Updated: 2024/01/30 20:15:29 by maldavid ### ########.fr */
/* */
/******************************************************************************/
@@ -71,16 +71,22 @@ namespace irc
client->sendCode(ERR_USERNOTINCHANNEL, "User not in channel");
}
bool Channel::removeClient(unstd::SharedPtr<Client> client)
bool Channel::removeClient(unstd::SharedPtr<Client> client, std::string reason)
{
if(!_clients.erase(client))
return (false);
return false;
if(isOp(client))
_operators.erase(client);
for(client_it it = _clients.begin(); it != _clients.end(); ++it)
const_cast<unstd::SharedPtr<irc::Client>&>(*it)->sendMsg(client->getNickName(), "PART", _name);
client->sendMsg(client->getNickName(), "PART", _name);
return (true);
{
if(reason.empty())
const_cast<unstd::SharedPtr<irc::Client>&>(*it)->sendMsg(client->getNickName(), "PART", _name);
else
const_cast<unstd::SharedPtr<irc::Client>&>(*it)->sendMsg(client->getNickName(), "QUIT", reason);
}
if(reason.empty())
client->sendMsg(client->getNickName(), "PART", _name);
return true;
}
void Channel::sendWho(unstd::SharedPtr<Client> client)

View File

@@ -6,7 +6,7 @@
/* By: vvaas <vvaas@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/01/22 17:31:06 by maldavid #+# #+# */
/* Updated: 2024/01/30 18:50:47 by maldavid ### ########.fr */
/* Updated: 2024/01/30 20:13:48 by maldavid ### ########.fr */
/* */
/******************************************************************************/
@@ -119,9 +119,8 @@ namespace irc
void Server::handleQuit(unstd::SharedPtr<class Client> client, const Message& msg)
{
(void)msg;
for(channel_it it = _channels.begin(); it != _channels.end(); ++it)
it->removeClient(client);
it->removeClient(client, msg.getReason());
client->printUserHeader();
std::cout << "quit" << std::endl;
}