-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathServerNode.java
451 lines (430 loc) · 13.4 KB
/
ServerNode.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
//////////
import java.awt.*;
import java.net.*;
import java.util.*;
import java.sql.*;
import javax.imageio.*;
import javax.swing.*;
import java.io.*;
import java.awt.image.*;
import javax.swing.filechooser.*;
import java.io.*;
class Client
{
String name;
String contact;
String email;
String password;
Socket clientSocket;
Client(String name,String contact,String email,String password)
{
this.name=name;
this.contact=contact;
this.email=email;
this.password=password;
}
Client(String name,String contact,String password)
{
this.name=name;
this.contact=contact;
this.password=password;
}
}
class ServerNode
{
static BufferedImage img;
static Vector clientSockets;
static Vector LoginNames;
static Vector Clients;
static Statement statement;
public static void main(String args[]) throws Exception
{
clientSockets=new Vector();
LoginNames=new Vector();
Clients=new Vector();
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("Jdbc:Odbc:server"," "," ");
statement=con.createStatement();
ServerSocket serverSocket=new ServerSocket(6126);
while(true)
{
Socket clientSocket=serverSocket.accept();
new Validate().userValidate(clientSocket);
}
}
}
class Validate
{
Client client;
public void userValidate(Socket clientSocket)
{
try
{
DataInputStream readFromClient=new DataInputStream(clientSocket.getInputStream());
DataOutputStream writeToClient=new DataOutputStream(clientSocket.getOutputStream());
String action=readFromClient.readUTF();
if(action.equals("register"))
{
String name=readFromClient.readUTF();
String contact=readFromClient.readUTF();
String email=readFromClient.readUTF();
String pass=readFromClient.readUTF();
try
{
System.out.println("Query");
ServerNode.statement.execute("INSERT INTO userData(userName,contact,email,password,logfile) values('"+name+"','"+contact+"','"+email+"','"+pass+"','"+name+"Log');");
System.out.println("Query error free");
client=new Client(name,contact,email,pass);
writeToClient.writeUTF("allow");
new AcceptClient().userAcceptClient(client,clientSocket);
}
catch(Exception ex)
{
writeToClient.writeUTF("deny");
writeToClient.writeUTF("user of same details already exists please try changing contact no,");
new Validate().userValidate(clientSocket);
}
}
else
{
String contact=readFromClient.readUTF();
String pass=readFromClient.readUTF();
String name="error";
ResultSet rs=ServerNode.statement.executeQuery("SELECT userName FROM userData WHERE contact='"+contact+"' AND password='"+pass+"';");
while(rs.next())
{
name=rs.getString(1);
}
if(name.equals("error"))
{
writeToClient.writeUTF("deny");
writeToClient.writeUTF("Invalid credentials or not a user");
new Validate().userValidate(clientSocket);
}
else
{
client=new Client(name,contact,pass);
writeToClient.writeUTF("allow");
writeToClient.writeUTF(name);
new AcceptClient().userAcceptClient(client,clientSocket);
}
}
}
catch(Exception ex)
{
System.out.println(ex+" exception in varification");
}
}
}
class AcceptClient extends Thread
{
Socket clientSocket;
DataInputStream readFromClient;
DataOutputStream writeToClient;
Client client;
int portSend=6010;
int portRecieve;
public void userAcceptClient(Client client,Socket clientSocket) throws Exception
{
this.clientSocket=clientSocket;
this.client=client;
readFromClient=new DataInputStream(clientSocket.getInputStream());
writeToClient=new DataOutputStream(clientSocket.getOutputStream());
String LoginName=client.name;
System.out.println("User Logged In :" + LoginName);
ServerNode.LoginNames.add(LoginName);
ServerNode.clientSockets.add(clientSocket);
ServerNode.Clients.add(client);
start();
}
public void run()
{
/*********************
this block is used for sending the pending messages to the newly logged in user
in this we will read the file of newly loged user read the content write it to client and then
clear the file
**********************/
try
{
String s3=" ";
try
{
//FileOutputStream fout=new FileOutputStream(client.name+"log.txt");
//fout.close();
FileInputStream fin=new FileInputStream(client.name+"log.txt");
BufferedInputStream bin=new BufferedInputStream(fin);
int i;
s3=new String();
while((i=bin.read())!=-1)
{
s3=s3+(char)i;
}
System.out.print(s3);
bin.close();
writeToClient.writeUTF(s3);
FileOutputStream fot=new FileOutputStream(client.name+"log.txt");
BufferedOutputStream bout=new BufferedOutputStream(fot);
String history="";
byte b[]=history.getBytes();
bout.write(b);
bout.flush();
bout.close();
fot.close();
}
catch(Exception ex)
{
System.out.println(ex);
}
}
catch(Exception ex)
{
System.out.println(ex);
}
while(true)
{
try
{
String msgFromClient=new String();
msgFromClient=readFromClient.readUTF();
StringTokenizer st=new StringTokenizer(msgFromClient);
String Sendto=st.nextToken();
String MsgType=st.nextToken();
int iCount=0;
if(MsgType.equals("LOGOUT"))
{
for(iCount=0;iCount<ServerNode.LoginNames.size();iCount++)
{
if(ServerNode.LoginNames.elementAt(iCount).equals(Sendto))
{
ServerNode.LoginNames.removeElementAt(iCount);
ServerNode.clientSockets.removeElementAt(iCount);
ServerNode.Clients.removeElementAt(iCount);
System.out.println("User " + Sendto +" Logged Out ...");
break;
}
}
}
else if(MsgType.equals("file"))
{
/////////////////////////////////////////////////////
portRecieve=Integer.valueOf(st.nextToken());
new GreetingServer(portRecieve,Sendto);
try
{
}
catch(Exception r)
{}
/////////////////////////////////////////////////////
for(iCount=0;iCount<ServerNode.LoginNames.size();iCount++)
{
if(ServerNode.LoginNames.elementAt(iCount).equals(Sendto))
{
Socket tSoc=(Socket)ServerNode.clientSockets.elementAt(iCount);
DataOutputStream twriteToClient=new DataOutputStream(tSoc.getOutputStream());
twriteToClient.writeUTF(client.name+" "+"file"+" "+portSend);
System.out.println(client.name+" "+"file");
try {
try {
new GreetingClient(Sendto,portSend); //flushing socket
//twriteToClient.writeUTF("server you recieved an image");
portSend=portSend+1;
writeToClient.writeUTF("server You Sent an image");
twriteToClient.writeUTF("server you recieved an image");
}
finally {
}
} catch (IOException exe) {
// TODO Auto-generated catch block
exe.printStackTrace();
}
/////////////////////////////////////////////
break;
}
}
if(iCount==ServerNode.LoginNames.size())
{
writeToClient.writeUTF("server error while sending image user is offline");
}
}
else
{
String msg="";
while(st.hasMoreTokens())
{
msg=msg+" " +st.nextToken();
}
for(iCount=0;iCount<ServerNode.LoginNames.size();iCount++)
{
if(ServerNode.LoginNames.elementAt(iCount).equals(Sendto))
{
Socket tSoc=(Socket)ServerNode.clientSockets.elementAt(iCount);
DataOutputStream twriteToClient=new DataOutputStream(tSoc.getOutputStream());
twriteToClient.writeUTF(client.name+" "+msg);
break;
}
}
if(iCount==ServerNode.LoginNames.size())
{
String s="error";
ResultSet rs=ServerNode.statement.executeQuery("Select * from userData where userName='"+Sendto+"';");
while(rs.next())
{
s=rs.getString(1);
}
if(s.equals("error"))
{
writeToClient.writeUTF("server No user with this name registererd with us");
}
else
{
String s3=" ";
try
{
try
{
FileInputStream fin=new FileInputStream(Sendto+"log.txt");
fin.close();
}
catch(Exception exp)
{
FileOutputStream fout=new FileOutputStream(Sendto+"log.txt"); // create table if not exists
fout.close();
}
FileInputStream fin=new FileInputStream(Sendto+"log.txt");
BufferedInputStream bin=new BufferedInputStream(fin);
int i;
s3=new String();
while((i=bin.read())!=-1)
{
s3=s3+(char)i;
}
System.out.print(s3);
bin.close();
fin.close();
FileOutputStream fout=new FileOutputStream(Sendto+"log.txt");
BufferedOutputStream bout=new BufferedOutputStream(fout);
String history=slient.name+" "+s3+msg;
byte b[]=history.getBytes();
bout.write(b);
bout.flush();
bout.close();
fout.close();
writeToClient.writeUTF(Sendto+" I am not availble right now. donn't worry your mag are stored in my pending box");
}
catch(Exception ex)
{
System.out.println(ex);
}
}
}
else
{
}
}
if(MsgType.equals("LOGOUT"))
{
break;
}
}
catch(Exception ex)
{
ex.printStackTrace();
}
}
}
}
/*
import java.awt.image.BufferedImage;
import java.io.IOException;
import java.net.ServerSocket;
import java.net.Socket;
import java.net.SocketTimeoutException;
import java.sql.SQLException;
import javax.imageio.ImageIO;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
*/
class GreetingServer extends Thread
{
public ServerSocket serverSocket;
public Socket server;
public String name;
public int port;
public GreetingServer(int port,String fileName) throws IOException, SQLException, ClassNotFoundException, Exception
{
this.port=port;
this.name=fileName;
start();
}
public void run()
{
try
{
serverSocket = new ServerSocket(port);
}
catch(Exception st)
{
}
while(true)
{
try
{
server = serverSocket.accept();
BufferedImage img=ImageIO.read(ImageIO.createImageInputStream(server.getInputStream()));
File outputfile = new File("D:\\"+name+".jpg");
ImageIO.write(img, "jpg", outputfile);
}
catch(SocketTimeoutException st)
{
System.out.println("Socket timed out!");
break;
}
catch(IOException e)
{
e.printStackTrace();
break;
}
catch(Exception ex)
{
System.out.println(ex);
}
}
}
}
class GreetingClient extends Thread
{
public Image newimg;
public static BufferedImage bimg;
public byte[] bytes;
public String name;
public String serverName = "localhost";
public int port;
GreetingClient(String name,int portSend)
{
this.serverName = "localhost";
this.port = portSend;
this.name=name;
start();
}
public void run()
{
try
{
System.out.println("requesting server at "+port+name);
sleep(3000);
Socket client = new Socket(serverName,port);
BufferedImage img = ImageIO.read(new File("D:\\"+name+".jpg"));
ImageIO.write(img,"JPG",client.getOutputStream());
try{
// Thread.sleep(10000);
}
catch(Exception es)
{}
client.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}