-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.java
More file actions
281 lines (242 loc) · 6.05 KB
/
server.java
File metadata and controls
281 lines (242 loc) · 6.05 KB
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
/*
* © 26ANSH
* This Code Belongs To Ansh Vidyabhanu
*
* Server side code
*
* Project details :
* " ~ Sandesha ~ " this is multiuser chat java GUI application
* the project uses concepts such as socket, java networking, JFrames, Java AWT, Java I/O and JDBC
* the project was made on December 1 2020 " the covid-19 year "
* Github account - 26ANSH
* Please use the code resposibly
* © 26ANSH
*/
package chat;
import java.io.*;
import java.sql.*;
import java.net.*;
import java.util.ArrayList;
public class server
{
static ArrayList<String> activeusers = new ArrayList<String>();
static ArrayList<PrintWriter> printwriters = new ArrayList<PrintWriter>();
static void isdb() throws SQLException
{
Connection db = DriverManager.getConnection("jdbc:mysql://localhost:8889", "root", "root");
ResultSet rs = db.getMetaData().getCatalogs();
while(rs.next())
{
String catalogs = rs.getString(1);
if("sandesha".equals(catalogs))
{
return;
}
}
Statement st = db.createStatement();
String sql = "CREATE DATABASE sandesha";
st.executeUpdate(sql);
st.close();
db = DriverManager.getConnection("jdbc:mysql://localhost:8889/sandesha", "root", "root");
st = db.createStatement();
String create_database ="CREATE TABLE details(account_id int NOT NULL AUTO_INCREMENT,username varchar(128), first_name varchar(128), last_name varchar(128), email_id varchar(128), passcode varchar(128), created_on DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, Active boolean, PRIMARY KEY(account_id));\n";
String cmnd = ("INSERT INTO details (username, first_name, last_name, email_id, passcode, Active) VALUES ('@user', 'user', 'user', 'user@gmail.com', 'user', '0');");
st.executeUpdate(create_database);
st.executeUpdate(cmnd);
}
public static void main (String[] args) throws Exception
{
isdb(); // this function checks for the database in your local host -> if the database does not exist it creates a database for you
ServerSocket ss = new ServerSocket(3001);
while(true)
{
Socket soc = ss.accept();
conversation guest = new conversation(soc);
guest.start();
}
}
}
class conversation extends Thread
{
Socket socket;
Connection db;
BufferedReader read ;
PrintWriter send;
String guestname;
String guestpasscode;
boolean login ;
public conversation(Socket socket) throws Exception
{
// TODO Auto-generated constructor stub
db = DriverManager.getConnection("jdbc:mysql://localhost:8889/sandesha", "root", "root");
this.socket = socket;
login = false;
read = new BufferedReader(new InputStreamReader(socket.getInputStream()));
send = new PrintWriter(socket.getOutputStream(), true);
server.printwriters.add(send);
}
public boolean isuseractive()
{
try
{
Statement st = db.createStatement();
ResultSet r = st.executeQuery("select * from details");
while(r.next())
{
if(r.getString("username").equalsIgnoreCase("@"+guestname))
{
if (r.getBoolean("Active") == true )
return true;
return false;
}
}
}
catch( Exception e)
{
System.out.println(e);
}
return false;
}
public boolean isuserregistered()
{
try
{
Statement st = db.createStatement();
ResultSet r = st.executeQuery("select * from details");
while(r.next())
{
if(r.getString("username").equalsIgnoreCase("@"+guestname))
{
return true;
}
}
}
catch( Exception e)
{
System.out.println(e);
}
return false;
}
public boolean ispasswordcorrect()
{
try
{
Statement st = db.createStatement();
ResultSet r = st.executeQuery("select * from details");
while(r.next())
{
if(r.getString("username").equalsIgnoreCase("@"+guestname))
{
if (r.getString("passcode").equals(guestpasscode) )
return true;
return false;
}
}
}
catch( Exception e)
{
System.out.println(e);
}
return false;
}
public void changeactiveness(boolean i)
{
try
{
Statement st = db.createStatement();
String cmnd = ("UPDATE details set Active="+i+" WHERE username='@"+guestname+"'");
st.executeUpdate(cmnd);
}
catch( Exception e)
{
System.out.println(e);
}
}
public void loginprocedure()
{
try
{
guestname = read.readLine();
guestpasscode = read.readLine();
if(isuserregistered()== true )
{
if(isuseractive() == true)
{
send.println("User found and is active");
login = true;
}
else
{
if(ispasswordcorrect()== true )
{
send.println("Welcome to Sandesha");
login = true;
changeactiveness(true);
}
else
{
send.println("wrong username / passcode");
}
}
}
else
{
send.println("User not registered");
}
}
catch( Exception e)
{
System.out.println(e);
}
}
public void run()
{
try
{
// check for user eligibility
loginprocedure();
if(login == true)
System.out.println("Sucessful login #"+guestname);
String message = "\t-------"+guestname+" Welcome to sandesha-------";
for(PrintWriter writer : server.printwriters)
{
writer.println(message);
}
// for messaging
while(true)
{
message = "";
message = read.readLine();
if(message.equals("logoutrequest#"+guestname))
{
changeactiveness(false);
server.printwriters.remove(send);
message = "\t-------"+guestname+" left sandesha-------";
for(PrintWriter writer : server.printwriters)
{
writer.println(message);
}
break;
}
if(message != "")
for(PrintWriter writer : server.printwriters)
{
if(writer == send)
{
writer.println("\t\t\t->"+message);
}
else
{
writer.println(guestname + ": " + message);
}
}
}
}
catch (Exception e)
{
// TODO: handle exception
System.out.println(e);
}
System.out.println("bye user #"+guestname);
}
}