Fixed source information for channels.

master
Tomasz Półgrabia 2017-09-23 10:33:03 +02:00
parent 43297fa76e
commit dfae4f7638
2 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ public class JoinCommandHandler implements SessionCommandHandler {
sendMessage(user.getSession(), globalCtx,
destination,
"PRIVMSG " + channelCtx.getName() + " "
+ user.getNick() + " has "
+ userCtx.getNick() + " has "
+ " joined the channel");
} catch (RuntimeException e) {
lg.error("Error while sending a message", e);

View File

@ -13,27 +13,27 @@ public class PrivMessageHandler implements SessionCommandHandler {
public boolean handleCommand(GlobalCtx globalCtx, WebSocketSession session, String payload, String command, String data) throws IOException {
StringTokenizer tokenizer = new StringTokenizer(data);
String destination = tokenizer.nextToken();
UserCtx userCtx = globalCtx.getUserSessions().get(session);
if (destination.startsWith("#")) {
// channel
ChannelCtx channel = globalCtx.getChannels().get(destination);
if (channel == null) {
sendMessage(session,
globalCtx, destination,"MSG invalid destination");
globalCtx, userCtx.getNick(),"MSG invalid destination");
return true;
}
UserCtx userCtx = globalCtx.getUserSessions().get(session);
if (!channel.getUsers().contains(userCtx)) {
sendMessage(session, globalCtx, destination, "MSG You are not the member of this channel");
sendMessage(session, globalCtx, userCtx.getNick(), "MSG You are not the member of this channel");
return true;
}
// sending to other users
for (UserCtx user : channel.getUsers()) {
sendMessage(user.getSession(), globalCtx, destination, payload);
sendMessage(user.getSession(), globalCtx, userCtx.getNick(), payload);
}
return true;
@ -42,15 +42,15 @@ public class PrivMessageHandler implements SessionCommandHandler {
// user
UserCtx userCtx = globalCtx.getUserSessions().get(globalCtx.getUserNameSessions().get(destination));
UserCtx destUserCtx = globalCtx.getUserSessions().get(globalCtx.getUserNameSessions().get(destination));
UserCtx sourceUserCtx = globalCtx.getUserSessions().get(session);
if (userCtx == null) {
if (destUserCtx == null) {
sendMessage(session,
globalCtx, destination,"MSG invalid destination");
return true;
}
sendMessage(userCtx.getSession(),
sendMessage(destUserCtx.getSession(),
globalCtx, sourceUserCtx.getNick(), payload); // destination and source
sendMessage(session,
globalCtx, sourceUserCtx.getNick(), payload); // destination and source