-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChatServer.java
487 lines (450 loc) · 14.3 KB
/
ChatServer.java
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.File;
import java.net.*;
import java.nio.*;
import java.nio.channels.SelectionKey;
import java.nio.channels.Selector;
import java.nio.channels.SocketChannel;
import java.nio.channels.ServerSocketChannel;
import java.util.*;
import java.lang.Exception;
/*
ChatServer.java
HoosierChat server program
Written by: Yonjae Lee (yonjlee@indiana.edu)
**/
class User {
String username;
SocketChannel conn;
public User(String username, SocketChannel conn)
{
this.username = username;
this.conn = conn;
}
public String getUsername() {
return this.username;
}
public SocketChannel getConn() {
return this.conn;
}
}
public class ChatServer {
private Selector selector;
private InetSocketAddress listenAddress;
public File appdata;
public ArrayList<User> userList; // Lists of Users
public ArrayList<SocketChannel> conns; // List of all connections
public ChatServer(int port) throws IOException {
listenAddress = new InetSocketAddress(port);
this.userList = new ArrayList<User>();
this.conns = new ArrayList<SocketChannel>();
}
public static void main(String[] args) throws Exception {
/* ChatServer [Port Number] [Max connection]*/
int portNo = 6001; // default Port is 6001
try {
portNo = Integer.parseInt(args[0]);
new ChatServer(portNo).start();
} catch (IOException e) {
e.printStackTrace();
}
}
// Start Server
public void start() {
try {
this.selector = Selector.open();
ServerSocketChannel serverChannel = ServerSocketChannel.open();
serverChannel.configureBlocking(false); // Non-blocking
serverChannel.socket().bind(listenAddress);
serverChannel.register(this.selector, SelectionKey.OP_ACCEPT);
System.out.println("[HoosierChat Server Started]");
this.appdata = new File("appdata.txt");
if (!this.appdata.exists()) {
this.appdata.createNewFile();
}
while(true) {
this.selector.select();
Iterator keys = this.selector.selectedKeys().iterator();
while (keys.hasNext()) {
SelectionKey key = (SelectionKey) keys.next();
keys.remove();
if (!key.isValid()) {
continue;
}
if (key.isAcceptable()) {
this.accept(key);
}
else if (key.isReadable()) {
this.read(key);
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
private void accept(SelectionKey key) throws IOException {
ServerSocketChannel serverChannel = (ServerSocketChannel) key.channel();
SocketChannel channel = serverChannel.accept();
channel.configureBlocking(false); // Non-blocking
Socket socket = channel.socket();
SocketAddress remoteAddr = socket.getRemoteSocketAddress();
System.out.println("Connected to a client from: " + remoteAddr);
try {
channel.register(this.selector, SelectionKey.OP_READ);
conns.add(channel); // Add channel to the connections
} catch (IOException e) {
e.printStackTrace();
}
}
private void read(SelectionKey key) throws IOException {
try {
SocketChannel channel = (SocketChannel) key.channel();
ByteBuffer buffer = ByteBuffer.allocate(4096);
int numread = -1;
numread = channel.read(buffer);
// termination process
if (numread == -1) {
//Socket socket = channel.socket();
SocketAddress remoteAddr = channel.socket().getRemoteSocketAddress();
System.out.println("Connection closed by client: " + remoteAddr);
this.conns.remove(channel);
Iterator<User> i = userList.iterator();
while (i.hasNext()) {
User u = i.next();
if (u.getConn().equals(channel)) {
userList.remove(u);
break;
}
}
channel.close();
key.cancel();
return;
}
byte[] data = new byte[numread];
System.arraycopy(buffer.array(), 0, data, 0, numread);
String input = new String(data);
//System.out.println(input); test purpose; remove later
processInput(input, channel); // process input and execute appropriate command
} catch (IOException e) {
e.printStackTrace();
}
}
public void send(SocketChannel sendto, String msgs) {
try {
byte [] msgbyte = msgs.getBytes();
ByteBuffer msgbuf = ByteBuffer.wrap(msgbyte);
sendto.write(msgbuf);
msgbuf.clear();
} catch (Exception e) {
e.printStackTrace();
}
}
public boolean isOnline (String username) {
boolean is = false;
Iterator<User> i = userList.iterator();
while (i.hasNext()) {
User u = i.next();
if (u.getUsername().equals(username)){
is = true;
}
}
return is;
}
/* Chatting Functions
* REGISTER [username] [password] - userReg
* LOGIN [username] [password] - auth
* LOGOUT - terminate
* SEND [msg] - sendMsg
* SENDTO [username] [msg] - sendPvtMsg
* SENDA [msg] - sendMsgAnon
* SENDATO [username] [msg] - sendPMAnon
* LIST - showUserList
* */
public void processInput(String input, SocketChannel client) {
// Filter out commands from regular chat contents
String[] inputSplit = input.split("\\s");
String command = inputSplit[0]; // command
if (command.equalsIgnoreCase("REGISTER")) {
if (inputSplit.length == 3) {
try {
register(inputSplit[1], inputSplit[2], client, this.appdata);
} catch (IOException e) {
e.printStackTrace();
}
}
else {
send(client, "REGISTER [username] [password]");
}
} else if (command.equalsIgnoreCase("LOGIN") && inputSplit.length == 3) {
if (inputSplit.length == 3) {
try {
auth(inputSplit[1], inputSplit[2], client, this.appdata);
} catch (IOException e) {
e.printStackTrace();
}
}
else {
send(client, "LOGIN [username] [password]");
}
} else if (command.equalsIgnoreCase("LOGOUT")) {
Iterator<User> users = userList.iterator();
while(users.hasNext()) {
User u = users.next();
if (u.getConn().equals(client)) {
terminate(u);
break;
}
}
} else if (command.equalsIgnoreCase("SEND") && inputSplit.length >= 2) {
boolean login = false;
Iterator<User> users = userList.iterator();
while(users.hasNext()) {
User u = users.next();
if (u.getConn().equals(client)) {
login = true;
String msg = "";
for (int i = 1; i < inputSplit.length; i++) {
msg = msg.concat(inputSplit[i] + " ");
}
sendMsg(u, msg);
return;
}
}
if (!login) {
send(client, "ERROR: Please log in first.");
}
} else if (command.equalsIgnoreCase("SENDTO") && inputSplit.length >= 3) {
boolean login = false;
Iterator<User> users = userList.iterator();
while(users.hasNext()) {
User u = users.next();
if (u.getConn().equals(client)) {
login = true;
String recipient = inputSplit[1];
if (isOnline(recipient)) {
String msg = "";
for (int i = 2; i < inputSplit.length; i++) {
msg = msg.concat(inputSplit[i] + " ");
}
Iterator<User> users2 = userList.iterator();
while(users2.hasNext()) {
User u2 = users2.next();
if (u2.getUsername().equals(recipient)) {
sendPvtMsg(u, u2, msg);
return;
}
}
}
else {
send(client, "[SENDTO] ERROR: The user you are messaging is not online.");
}
}
}
if (!login) {
send(client, "ERROR: Please log in first.");
}
} else if (command.equalsIgnoreCase("SENDA") && inputSplit.length >= 2) {
boolean login = false;
Iterator<User> users = userList.iterator();
while (users.hasNext()) {
User u = users.next();
if (u.getConn().equals(client)) {
login = true;
String aMsg = "[Anonymous]: ";
for (int i = 1; i < inputSplit.length; i++) {
aMsg = aMsg.concat(inputSplit[i] + " ");
}
sendMsgAnon(aMsg);
}
}
if (!login) {
send(client, "ERROR: Please log in first.");
}
} else if (command.equalsIgnoreCase("SENDATO") && inputSplit.length >= 3) {
boolean login = false;
Iterator<User> users = userList.iterator();
while (users.hasNext()) {
User u = users.next();
if (u.getConn().equals(client)) {
login = true;
String recipient = inputSplit[1];
if (isOnline(recipient)) {
String aMsg = "[(Private)Anonymous]: ";
Iterator<User> users2 = userList.iterator();
while(users2.hasNext()) {
User u2 = users2.next();
if (u2.getUsername().equals(recipient)) {
for (int i = 2; i < inputSplit.length; i++) {
aMsg = aMsg.concat(inputSplit[i] + " ");
}
sendPMAnon(u2, aMsg);
return;
}
}
}
else {
send(client, "[SENDATO] ERROR: The user you are messaging is not online.");
}
}
}
if (!login) {
send(client, "ERROR: Please log in first.");
}
} else if (command.equalsIgnoreCase("LIST")) {
showUserList(client);
} else if (command.equalsIgnoreCase("HELP")) {
showHelp(client);
} else {
System.out.println("Error occurred while processing user request");
send(client, "ERROR: Please enter a valid command");
}
}
public void register(String username, String password, SocketChannel client, File appdata) throws IOException {
// each line consists of:
// "(username) (password)"
try {
FileReader reader = new FileReader(appdata);
BufferedReader br = new BufferedReader(reader);
String entry;
String temp;
while ((entry = br.readLine()) != null) {
temp = entry.split("\\s")[0];
if (temp.equals(username)) {
send(client, "[REGISTER] ERROR: The username already exists");
br.close();
reader.close();
return;
}
}
temp = username + " " + password;
FileWriter appwrite = new FileWriter(appdata,true);
BufferedWriter bw = new BufferedWriter(appwrite);
bw.write(temp);
bw.newLine();
bw.close();
appwrite.close();
send(client, "Account [" + username + "] successfully registered!");
System.out.println("[Log] Username [" + username + "] successfully registered");
br.close();
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void auth(String username, String password, SocketChannel client, File appdata) throws IOException {
boolean loggedin = false;
boolean dupe = false;
try {
FileReader reader = new FileReader(appdata);
BufferedReader br = new BufferedReader(reader);
String entry;
while ((entry = br.readLine()) != null) {
String[] temp = entry.split("\\s");
if (temp[0].equalsIgnoreCase(username)) {
if (isOnline(username)) {
// duplicate check
send(client, "[LOGIN] ERROR: Authentication failed");
System.out.println("[Redundant login attempt detected]");
dupe = true;
break;
} else if (temp[1].equalsIgnoreCase(password)) {
// auth success
User u = new User(username, client);
send(client, "[LOGIN] Authentication successful. Welcome, " + username);
System.out.println("[Log] User [" + username + "] logged in");
userList.add(u);
loggedin = true;
} else {
// auth failure
send(client, "[LOGIN] ERROR: Authentication failed");
}
break;
}
}
if (!loggedin & !dupe) {
// user not found
send(client, "[LOGIN] ERROR: Authentication failed");
//client.close();
}
reader.close();
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
public void terminate(User u) {
// Terminate a user's session
try {
this.conns.remove(u.getConn());
u.getConn().close();
userList.remove(u);
System.out.println("[Log] User [" + u.getUsername() + "] logged out");
} catch (IOException e) {
e.printStackTrace();
}
}
public void sendMsg(User from, String msg) {
String msgFormatted = "" + from.getUsername() + ": " + msg;
Iterator<User> allUsers = userList.iterator();
while(allUsers.hasNext()) {
send(allUsers.next().getConn(), msgFormatted);
}
System.out.println(msgFormatted);
}
public void sendPvtMsg(User from, User to, String msg) {
String msgFormatted = "(Private) " + from.getUsername() + ": " + msg;
send(to.getConn(), msgFormatted);
System.out.println("[" + from.getUsername() + " sent a private message to " + to.getUsername() + "]");
}
public void sendMsgAnon(String msg) {
Iterator<User> allUsers = userList.iterator();
while(allUsers.hasNext()) {
send(allUsers.next().getConn(), msg);
}
System.out.println(msg);
}
public void sendPMAnon(User to, String msg) {
send(to.getConn(), msg);
System.out.println("[An anonymous user sent a private message to: " + to.getUsername() + "]");
}
public void showUserList(SocketChannel client) {
System.out.println("[someone requested the user list]");
String start = "==CURRENT USERS LIST==";
String end = "=======END LIST=======";
Iterator<User> ulistIter = userList.iterator();
send(client, start);
while (ulistIter.hasNext()) {
String name = ulistIter.next().getUsername() + "\n";
send(client, name);
}
send(client, end);
}
public void showHelp(SocketChannel client) {
System.out.println("[a user requested manual]");
send(client, "========================HoosierChat HELP========================\n");
send(client, "REGISTER [username] [password]\n");
send(client, "\tRegisters new account [username] with password [password]\n");
send(client, "LOGIN [username] [password]\n");
send(client, "\tAccount login with [username] and [password]\n");
send(client, "LOGOUT\n");
send(client, "\tLogs out and disconnects from server\n");
send(client, "SEND [message...]\n");
send(client, "\tSends a message to everyone\n");
send(client, "SENDTO [username] [message...]\n");
send(client, "\tSends a private message to [username]\n");
send(client, "SENDA [message...]\n");
send(client, "\tSends an anonymous message to everyone\n");
send(client, "SENDATO [username] [message...]\n");
send(client, "\tSends an anonymous private message to [username]\n");
send(client, "LIST\n");
send(client, "\tShows the list of all online users\n");
send(client, "HELP\n");
send(client, "\tShows the list of available commands\n");
send(client, "===========================END OF HELP===========================\n");
}
}