-
Notifications
You must be signed in to change notification settings - Fork 1
/
FTP_server.java
288 lines (256 loc) · 8.64 KB
/
FTP_server.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
import java.awt.print.PrinterException;
import java.io.*;
import java.net.*;
import java.util.*;
import java.text.SimpleDateFormat;
import java.lang.Thread;
import autenticacion.*;
class NuevoHilo extends Thread {
Thread t;
Autenticar_Usuario usuario;
static String mensaje;
String log;
String clave;
static String existe;
//static String entrada;
static String[] palabra;
bitacora reg = new bitacora();
static directorio_server listar = new directorio_server();
private Socket cliente;
static String nombre_archivo_subir;
static String nombre_archivo_bajar;
static int archivo_len;
InputStream flujoentrada;
BufferedReader entrada;
OutputStream flujosalida;
PrintStream salida;
manejo_flujos flujos;
boolean finalizar = false;
NuevoHilo(Socket socket_cliente) {
this.cliente = socket_cliente;
Thread t;
t = new Thread(this);
System.out.println("Cliente: " + t);
System.out.println("Accepted connection : " + socket_cliente);
try{
this.flujoentrada = cliente.getInputStream();
this.entrada = new BufferedReader(new InputStreamReader(this.flujoentrada));
this.flujosalida = cliente.getOutputStream();
this.salida = new PrintStream (this.flujosalida);
this.flujos = new manejo_flujos();
} catch (Exception e) {e.printStackTrace();}
t.start();
}
public void run() {
try{
do{
flujos.enviar_mensaje("conexion aceptada", salida);
mensaje = entrada.readLine();
palabra = mensaje.split(" ");
this.log = palabra[1];
this.clave = palabra[2];
usuario = new Autenticar_Usuario(this.log, this.clave);
existe = this.usuario.Autenticar(this.log, this.clave);
if(palabra[0].equals("1")){
if(existe.equals("si")){ // EL USUARIO SI EXISTE
this.reg.crear_bitacora(this.log);
this.reg.escribir_bitacora(this.log, "autenticado");
flujos.enviar_mensaje("Usuario Autenticado. Hola " + this.log, salida);
while(!finalizar){
System.out.println("esperando comando");
mensaje = entrada.readLine();
while(true){
if(mensaje.equals("ds")){
System.out.println("listando directorio");
this.reg.escribir_bitacora(this.log, "listar directorio servidor");
flujos.enviar_mensaje(listar.listar_directorio(), salida);
break;
}
else if (mensaje.equals("ba")){ // ENVIAR ARCHIVO
nombre_archivo_subir = entrada.readLine(); // espera el nombre del archivo
this.reg.escribir_bitacora(this.log, "bajando archivo: " + nombre_archivo_subir);
System.out.println("enviando archivo...");
this.flujos.send(cliente, nombre_archivo_subir, salida);
break;
}
else if (mensaje.equals("sa")){ //RECIBIR ARCHIVO
nombre_archivo_bajar = entrada.readLine(); // espera el nombre del archivo
reg.escribir_bitacora(this.log, "subiendo archivo: " + nombre_archivo_bajar);
System.out.println("bajando archivo...");
mensaje = entrada.readLine();
archivo_len = Integer.parseInt(mensaje);
System.out.println("tamaño archivo: " + mensaje);
flujos.receiveFile(cliente, archivo_len, nombre_archivo_bajar);
break;
}
else if (mensaje.equals("fin")){ //RECIBIR ARCHIVO
System.out.println("cerrando socket del cliente");
finalizar = true;
break;
}
}
}
} else {
flujos.enviar_mensaje("Usuario no existente", salida);
break;
}
} else {
if(existe.equals("no")){
flujos.enviar_mensaje("registrando usuario " + this.log, salida);
usuario.Registrar(this.log, this.clave);
} else {
flujos.enviar_mensaje("Usuario ya existente. Hola " + this.log, salida); // registrando usuario ya existente
}
}
System.out.println("finalizando");
this.flujosalida.close();
this.salida.close();
this.flujoentrada.close();
this.entrada.close();
this.cliente.close();
} while(true);
} catch (Exception e){e.printStackTrace();}
System.out.println("Sale de hilo");
Thread.currentThread().interrupt();//preserve the message
return;
} // FIN RUN
} // FIN HILO
// CLASE PRINCIPAL //
public class FTP_server {
static String direccion;
static ServerSocket socket_servidor;
Socket socket_cliente;
public static void main (String[] arg) throws IOException {
try{
direccion = "localhost";
int puerto = 5972;
ServerSocket socket_servidor = new ServerSocket(puerto);
do {
Socket socket_cliente = socket_servidor.accept();
new NuevoHilo(socket_cliente);
}while(true);
} catch (Exception e) {
System.out.println("Interrupcion del hilo principal");
}
}
}
// CLASES FLUJOS, BITACORA Y DIRECTORIO
class manejo_flujos{
public void enviar_mensaje(String mensaje, PrintStream salida) {
salida.println(mensaje);
salida.flush();
}
@SuppressWarnings("resource")
public void send(Socket socket_cliente, String archivo, PrintStream salida) throws Exception {
int archivo_len = 0;
FileInputStream fis = null;
BufferedInputStream bis = null;
OutputStream os = null;
os = socket_cliente.getOutputStream();
try {
File myFile = new File("./FTP/Servidor/" + archivo); // ENVIAR ARCHIVO
byte[] mybytearray = new byte[(int) myFile.length()];
fis = new FileInputStream(myFile);
bis = new BufferedInputStream(fis);
bis.read(mybytearray, 0, mybytearray.length);
os = socket_cliente.getOutputStream();
System.out.println("Sending...");
System.out.println("Sending " + "./FTP/Servidor/ArchivoServidor.txt" + "(" + mybytearray.length + " bytes)");
archivo_len = mybytearray.length;
salida.println(archivo_len);
salida.flush();
os.write(mybytearray, 0, mybytearray.length);
os.flush();
} finally {
if (bis != null) bis.close();
if (os != null) os.close();
}
//os.close();
System.out.println("Done.");
}
@SuppressWarnings("resource")
public void receiveFile(Socket socket_cliente, int filesize, String nombre_archivo) throws Exception {
int bytesRead;
int current = 0;
FileOutputStream fos = null;
BufferedOutputStream bos = null;
byte[] mybytearray = new byte[filesize];
InputStream is = socket_cliente.getInputStream();
fos = new FileOutputStream("./FTP/Servidor/" + nombre_archivo);
bos = new BufferedOutputStream(fos);
bytesRead = is.read(mybytearray, 0, mybytearray.length);
current = bytesRead;
do {
bytesRead =
is.read(mybytearray, current, (mybytearray.length-current));
if(bytesRead >= 0) current += bytesRead;
} while(current < filesize);
bos.write(mybytearray, 0 , current);
bos.flush();
//bos.close();
System.out.println("File " + "prueba.txt" + " downloaded (" + current + " bytes read)");
}
}
class bitacora {
String bitacoranombre;
public void crear_bitacora(String log){
Formatter archivo = null;
try {
System.out.println("creando bitacora");
SimpleDateFormat sdf = new SimpleDateFormat("ddMMyyyy_hhmmss");
Date curDate = new Date();
String strDate = sdf.format(curDate);
bitacoranombre = "./bitacora/" + log + "_bitacora_" + strDate + ".txt";
archivo = new Formatter(new BufferedWriter(new FileWriter(bitacoranombre, true)));
}
catch (IOException ioException){
ioException.printStackTrace();
}
finally{
if(archivo != null){
archivo.close();
}
}
}
public void escribir_bitacora(String log, String operacion) {
Formatter archivo = null;
try{
archivo = new Formatter(new BufferedWriter(new FileWriter(bitacoranombre, true)));
try {
SimpleDateFormat sdf = new SimpleDateFormat("ddMMyyyy_hhmmss");
Date curDate = new Date();
archivo.format("%s %s %s\n", log, operacion, curDate);
}
catch (FormatterClosedException formatterClosedException) {
System.err.println("error escribiendo en el archivo");
return;
}
catch (NoSuchElementException elementException){
System.err.println("entrada invalida");
}
}
catch (IOException ioException){
ioException.printStackTrace();
}
finally{
if(archivo != null){
archivo.close();
//System.out.println("cerrando...");
}
}
}
} // fin bitacora
class directorio_server {
public String listar_directorio () {
File folder = new File("./FTP/Servidor");
File[] listOfFiles = folder.listFiles();
String str = "";
for (File file : listOfFiles) {
if (file.isFile()) {
//System.out.println(file.getName());
str = str + file.getName() + "&";
}
}
return str;
}
} // fin directorio_server