-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinvite.cpp
74 lines (65 loc) · 3.26 KB
/
invite.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* invite.cpp :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cnascime <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/01/15 19:47:56 by cnascime #+# #+# */
/* Updated: 2025/02/11 13:36:38 by cnascime ### ########.fr */
/* */
/* ************************************************************************** */
#include "server.hpp"
#include "channel.hpp"
#include <vector>
void Server::invite_utils(std::string &command, int &fd) {
// Splits the command in individual parts. If less than 3, sends error 461.
std::vector<std::string> kintsugi = split_command(command);
if (kintsugi.size() < 3) {
respond(ERR_NEEDMOREPARAMS(get_client_by_fd(fd)->get_displayname()), fd);
return ;
};
// If the channel does not exist, sends error 403.
std::string channel = kintsugi[2].substr(1);
if (kintsugi[2][0] != '#' || get_channel_by_name(channel) == NULL) {
respond(ERR_NOSUCHCHANNEL(get_client_by_fd(fd)->get_displayname(), channel), fd);
return ;
};
// If the inviter is not a member of the channel, sends error 442.
if (!(get_channel_by_name(channel)->get_client_by_fd(fd))
&& !(get_channel_by_name(channel)->get_admin_by_fd(fd))) {
respond(ERR_NOTONCHANNEL(get_client_by_fd(fd)->get_displayname(), channel), fd);
return ;
};
// If the invited user does not exist, sends error 401.
Client *client = get_client_by_name(kintsugi[1]);
if (!client) {
respond(ERR_NOSUCHNICK(channel, kintsugi[1]), fd);
return ;
};
// If the invitated user is already a member, sends error 443.
if (get_channel_by_name(channel)->get_client_by_name(client->get_displayname())) {
respond(ERR_USERONCHANNEL(get_client_by_fd(fd)->get_displayname(), channel), fd);
return ;
};
// If the channel is private, but the inviter is not an operator, error 482.
if (get_channel_by_name(channel)->isprivate() == true
&& !get_channel_by_name(channel)->get_admin_by_fd(fd)) {
respond(ERR_CHANOPRIVSNEEDED(get_client_by_fd(fd)->get_displayname(), channel), fd);
//TODO UM OU OUTRO, TESTAR O DE CIMA
//senderror(482, " :You're not channel operator\r\n", channel, fd);
return ;
};
// If the channel is already full, sends error 471.
if (get_channel_by_name(channel)->get_max_population()
&& get_channel_by_name(channel)->get_population() >= get_channel_by_name(channel)->get_max_population()) {
respond(ERR_CHANNELISFULL(get_client_by_fd(fd)->get_displayname(), channel), fd);
//TODO UM OU OUTRO, TESTAR O DE CIMA
//senderror(471, " :Cannot join channel (+l)\r\n", channel, fd);
return ;
};
//TODO COMPARAR SE RESULTADO ESTÁ SATISFATÓRIO
// Sends invitation after all the checks, and responds 341.
client->invite_to_channel(channel);
respond(RPL_INVITING(get_client_by_fd(fd)->get_displayname(), kintsugi[1], channel), fd);
};