handling the privet msg between the users

This commit is contained in:
mochaoui
2024-04-18 05:39:12 -05:00
parent db1e03ae5c
commit 8f6bb64ff4
3 changed files with 39 additions and 27 deletions

View File

@@ -176,6 +176,9 @@ bool startsWith(const std::string& str, const std::string& prefix) {
void Server::setUsernameoperators(int fd, const std::string& username) { void Server::setUsernameoperators(int fd, const std::string& username) {
usernamesoperators[fd] = username; // Associate the nickname with the client's socket descriptor usernamesoperators[fd] = username; // Associate the nickname with the client's socket descriptor
} }
void Server::setUsernames(int fd, const std::string& username) {
usernames[fd] = username; // Associate the nickname with the client's socket descriptor
}
void Server::setUsernameregular(int fd, const std::string& username) { void Server::setUsernameregular(int fd, const std::string& username) {
usernamesregulars[fd] = username; // Associate the nickname with the client's socket descriptor usernamesregulars[fd] = username; // Associate the nickname with the client's socket descriptor
} }
@@ -219,37 +222,40 @@ int findUserFd(const std::string& nickname, const std::map<int, std::string>& us
} }
///iterate to find the username with the fd
// std::string Server::findUsernameforsending(int fd) {
// std::map<int, std::string>::iterator it;
// for (it = usernames.begin(); it != usernames.end(); ++it) {
// if (it->first == fd) {
// return it->second; // Return the file descriptor if the nickname matches
// }
// }
// }
//forget it
//handling privet msg between users only //handling privet msg between users only
void Server::handlePrivateMessage(int senderFd, const std::string& recipient, const std::string& message) { void Server::handlePrivateMessage(int senderFd, const std::string& recipient, const std::string& message) {
// Find the recipient's connection (socket file descriptor) for operators // Find the recipient's connection (socket file descriptor)
int recipientFd = findUserFd(recipient, usernamesoperators); int recipientFd = findUserFd1(recipient);
// std::string sendernameuser = findUsernameforsending(senderFd);
if (recipientFd != -1) { if (recipientFd != -1) {
// Forward the private message to the recipient's client // Forward the private message to the recipient's client
std::string privateMessage = "PRIVATE " + usernamesoperators[senderFd] + ": " + message + "\n"; std::string privateMessage = ":" + usernames[senderFd] + " PRIVMSG " + recipient + " :" + message + "\r\n";
send(recipientFd, privateMessage.c_str(), privateMessage.length(), 0); send(recipientFd, privateMessage.c_str(), privateMessage.length(), 0);
return; // Exit the function to avoid executing the second block
}
// Find the recipient's connection (socket file descriptor) for regular users
int recipientFd1 = findUserFd(recipient, usernamesregulars);
if (recipientFd1 != -1) {
// Forward the private message to the recipient's client
std::string privateMessage = "PRIVATE " + usernamesregulars[senderFd] + ": " + message + "\n";
send(recipientFd1, privateMessage.c_str(), privateMessage.length(), 0);
} else { } else {
// Handle case where recipient is not found (e.g., user not online) // Handle case where recipient is not found (e.g., user not online)
std::string errorMessage = "Error: User '" + recipient + "' not found or offline\n"; std::string errorMessage = ":server.host NOTICE " + usernames[senderFd] + " :Error: User '" + recipient + "' not found or offline\r\n";
send(senderFd, errorMessage.c_str(), errorMessage.length(), 0); send(senderFd, errorMessage.c_str(), errorMessage.length(), 0);
} }
} }
//this find is for finding nickname of the users i need to brodcasting to //this find is for finding nickname of the users i need to brodcasting to
int Server::findUserFd1(const std::string& nickname) { int Server::findUserFd1(const std::string& username) {
std::map<int, std::string>::iterator it; std::map<int, std::string>::iterator it;
for (it = nicknames.begin(); it != nicknames.end(); ++it) { for (it = usernames.begin(); it != usernames.end(); ++it) {
if (it->second == nickname) { if (it->second == username) {
return it->first; // Return the file descriptor if the nickname matches return it->first; // Return the file descriptor if the nickname matches
} }
} }
@@ -414,6 +420,8 @@ void Server::handleClientData(int fd) {
dontworry1 = trim(dontworry1); dontworry1 = trim(dontworry1);
realname = trim(realname); realname = trim(realname);
setUsernames(fd, username);
for (size_t i = 0; i < _clients.size(); ++i) { for (size_t i = 0; i < _clients.size(); ++i) {
if (_clients[i].getFd() == fd) { if (_clients[i].getFd() == fd) {
_clients[i].setUser(username); _clients[i].setUser(username);
@@ -501,14 +509,14 @@ void Server::handleClientData(int fd) {
// std::string senderNickname = it->second.getNickname(fd); // std::string senderNickname = it->second.getNickname(fd);
broadcastMessage(recipient, niiick, message); broadcastMessage(recipient, niiick, message);
} }
// else else
// { {
handlePrivateMessage(fd, recipient, message);
// if (message[0] == ':') { // if (message[0] == ':') {
// message = message.substr(1); // message = message.substr(1);
// handlePrivateMessage(fd, recipient, message);
// } // }
// } }
// Remove the colon from the recipient if present // Remove the colon from the recipient if present
// if (!recipient.empty() && recipient[1] == ':') { // if (!recipient.empty() && recipient[1] == ':') {
// recipient = recipient.substr(1); // recipient = recipient.substr(1);

View File

@@ -31,6 +31,8 @@ class Server {
// THAT'S THA DATA OF TOOOP GGG START FROM THERE . // THAT'S THA DATA OF TOOOP GGG START FROM THERE .
std::map<int, std::string> nicknames; // Replace unordered_map with map std::map<int, std::string> nicknames; // Replace unordered_map with map
std::map<int, std::string> usernamesoperators; // Replace unordered_map with map std::map<int, std::string> usernamesoperators; // Replace unordered_map with map
std::map<int, std::string> usernames; // Replace unordered_map with map
std::map<int, std::string> usernamesregulars; std::map<int, std::string> usernamesregulars;
// std::map<std::string, std::vector<std::string> > channels; //here a chanel name and list of client in every chanel // std::map<std::string, std::vector<std::string> > channels; //here a chanel name and list of client in every chanel
std::map<std::string, Channel> channels; std::map<std::string, Channel> channels;
@@ -45,11 +47,14 @@ class Server {
std::string getPassowrd() const; std::string getPassowrd() const;
void setPassword(const std::string& password); void setPassword(const std::string& password);
void setUsernameoperators(int fd, const std::string& username); void setUsernameoperators(int fd, const std::string& username);
void setUsernames(int fd, const std::string& username);
void setUsernameregular(int fd, const std::string& username); void setUsernameregular(int fd, const std::string& username);
void createChannel(const std::string& channel, const std::string& nickname, int fd); void createChannel(const std::string& channel, const std::string& nickname, int fd);
void handlePrivateMessage(int senderFd, const std::string& recipient, const std::string& message); void handlePrivateMessage(int senderFd, const std::string& recipient, const std::string& message);
void broadcastMessage(const std::string& channel, const std::string& senderNickname, const std::string& msg); void broadcastMessage(const std::string& channel, const std::string& senderNickname, const std::string& msg);
int findUserFd1(const std::string& nickname); int findUserFd1(const std::string& username);
std::string findUsernameforsending(int fd);
bool isOperator(int fd); bool isOperator(int fd);
void kickUser(int fd); void kickUser(int fd);
int findUserFdforkickregulars(const std::string& username); int findUserFdforkickregulars(const std::string& username);

View File

@@ -25,9 +25,8 @@ private:
std::string topic; std::string topic;
std::string key; std::string key;
std::vector<std::string> users; std::vector<std::string> users;
std::map<int, std::string> nicknames; // Replace unordered_map with map // std::map<int, std::string> nicknames; // Replace unordered_map with map
std::map<std::string, int> userFdMap; // Mapping of usernames to file descriptors std::map<std::string, int> userFdMap; // Mapping of usernames to file descriptors
std::vector<std::string> invitedUsers; std::vector<std::string> invitedUsers;
std::vector<std::string> operators; std::vector<std::string> operators;