-
Notifications
You must be signed in to change notification settings - Fork 0
/
TCPClient.java
105 lines (96 loc) · 3.99 KB
/
TCPClient.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
import java.io.*;
import java.net.*;
import java.util.List;
import java.util.Set;
public class TCPClient implements Runnable {
private Socket clientSocket;
private BufferedReader in;
protected PrintWriter out;
private String clientName;
private boolean loggedIn = false;
public TCPClient(Socket socket) {
this.clientSocket = socket;
try {
in = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));
out = new PrintWriter(clientSocket.getOutputStream(), true);
} catch (IOException e) {
System.out.println("Error: " + e.getMessage());
closeEverything();
}
}
@Override
public void run() {
try {
out.println("Hola! Para usar este chat, necesitas iniciar sesión.");
out.println("Para hacerlo, escribe 'LOGIN <Tu nombre de usuario>'");
String receivedMessage;
while ((receivedMessage = in.readLine()) != null) {
if (!loggedIn) {
if (receivedMessage.startsWith("LOGIN")) {
loggedIn = handleLogin(receivedMessage);
}
if (!loggedIn) {
out.println("Necesitas iniciar sesión. (LOGIN <Tu nombre de usuario>).");
}
} else {
if (receivedMessage.equals("adeu")) {
handleLogout();
break;
} else {
broadcastMessage(clientName + ": " + receivedMessage);
}
}
}
} catch (IOException e) {
System.out.println(clientName + " error reading: " + e.getMessage());
} finally {
closeEverything();
}
}
public boolean handleLogin(String message) {
String[] parts = message.split(" ", 2); // partimos el estring para recoger el nombre de usuario
if (parts.length > 1 && parts[1] != null && !parts[1].trim().isEmpty()) {
String proposedName = parts[1].trim();
Set<String> currentUsers = UserNameManager.loadUsers();
if (currentUsers.contains(proposedName)) {//si el nombre esta en el fichero, el usuario tendra que escoger otro
out.println("Este nombre de usuario ya está en uso. Por favor, elija otro.");
return false;
}
clientName = proposedName;
UserNameManager.addUser(clientName);
out.println("Hola " + clientName + ", ahora mismo hay " + (TCPServer.getClients().size() - 1) + " usuarios en linea. Escribe 'adeu' para desconectarte.");
broadcastMessage("El cliente " + clientName + " se ha conectado al chat!");
return true;
} else {
out.println("Login no válido, escriba 'LOGIN <Tu nombre de usuario>'.");
return false;
}
}
private void handleLogout() {
broadcastMessage("El cliente " + clientName + " se ha desconectado.");
UserNameManager.removeUser(clientName);
closeEverything();
}
private void broadcastMessage(String message) {
List<TCPClient> clients = TCPServer.getClients();
for (TCPClient client : clients) {
if (!client.equals(this) && client.loggedIn) { //para que al mismo usuario no le salga su mensaje y para que el usuario no loggeado no vea los mensajes
client.out.println(message);
}
}
}
private void closeEverything() {
removeClient();
try {
if (in != null) in.close();
if (out != null) out.close();
if (clientSocket != null) clientSocket.close();
} catch (IOException e) {
System.out.println("Error closing resources: " + e.getMessage());
}
}
private void removeClient() {
TCPServer.getClients().remove(this);
System.out.println("Número de clientes " + TCPServer.getClients().size());
}
}