-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
399 lines (341 loc) · 12.3 KB
/
index.js
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
const exp = require('express');
const app = exp();
const http = require('http');
const server = http.createServer(app);
const { Server } = require('socket.io');
const JWT = require('jsonwebtoken');
const bodyParser = require("body-parser");
const cookieParser = require('cookie-parser');
const dotenv = require('dotenv');
const path = require('path');
dotenv.config({path:path.resolve(__dirname,"./database/.env")});
const KEY = process.env.YOUR_SECRET;
const cors = require('cors');
const { acceptFriendReq, createFriendReq, CreateGroup, declineFriendReq, GetAllFriend, GetAllFriendReq, Login, Register, RemoveUserToChat, getChatMessages, saveMessage, TakeGroupMembers, addUserToChat } = require("./database/databaseFunc.js");
app.use(exp.json());
app.use(cookieParser());
const io = new Server(server);
app.use(
cors({
origin: "http://localhost:3000", // React uygulamasının çalıştığı port
credentials: true, // Çerez veya kimlik doğrulama bilgileri için
})
);
const tokenBaseOuth = (req, res, next) => {
let token;
// Authorization header: Bearer <token>
const authHeader = req.headers.authorization;
if (authHeader && authHeader.startsWith('Bearer ')) {
token = authHeader.substring(7); // 'Bearer ' kelimesini çıkar
}
// Eğer Authorization yoksa cookie'den al
if (!token && req.cookies?.token) {
token = req.cookies.token;
}
console.log(`Token received: ${token || 'None'}`);
if (!token) {
return res.status(401).json({
message: 'Unauthorized access',
error: 'Token not provided',
});
}
try {
const data = JWT.verify(token, KEY);
req.userdata = data;
next();
} catch (error) {
console.error('Invalid token:', error.message);
return res.status(401).json({
message: 'Unauthorized access',
error: 'Token is invalid or expired',
});
}
};
app.post('/login', async (req, res) => {
const { email: mail, password: pass } = req.body;
if (!(mail && pass)) {
return res.sendStatus(400); // Eksik giriş bilgisi
}
req.header
try {
const userObject = await Login(mail, pass);
if (userObject) {
const tokenPayload = { id: userObject._id, username: userObject.username };
const userToken = JWT.sign(tokenPayload, KEY);
res.cookie('token', userToken, {
httpOnly: false, // JavaScript tarafından erişilemez
secure: false, // Sadece HTTPS üzerinden çalışır
sameSite: 'Strict', // Sadece aynı site isteklerinde geçerli
path: '/', // Tüm yollarda geçerli
maxAge: 3600000 // Çerez ömrü (ör: 1 saat)
});
res.cookie('id', userObject._id, {
httpOnly: false, // JavaScript tarafından erişilemez
secure: false, // Sadece HTTPS üzerinden çalışır
sameSite: 'Strict', // Sadece aynı site isteklerinde geçerli
path: '/', // Tüm yollarda geçerli
maxAge: 3600000 // Çerez ömrü (ör: 1 saat)
});
res.cookie('username', userObject.username, {
httpOnly: false, // JavaScript tarafından erişilemez
secure: false, // Sadece HTTPS üzerinden çalışır
sameSite: 'Strict', // Sadece aynı site isteklerinde geçerli
path: '/', // Tüm yollarda geçerli
maxAge: 3600000 // Çerez ömrü (ör: 1 saat)
});
return res.status(202).json({
token: userToken,
id: userObject._id,
username: userObject.username
});
} else {
return res.sendStatus(401); // Yanlış e-posta veya şifre
}
} catch (error) {
console.error(error);
return res.sendStatus(500); // Sunucu hatası
}
});
app.post('/register', async (req, res) => {
const { email: mail, username, password } = req.body;
if (!(mail && username && password)) {
return res.sendStatus(400);
}
try {
const RegStatus = await Register(mail, username, password);
if (RegStatus) {
return res.sendStatus(201);
} else {
return res.sendStatus(406);
}
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
app.get('/getrooms', tokenBaseOuth, async (req, res) => {
try {
const friends = await GetAllFriend(req.userdata.id)
console.log(friends);
res.status(200).send(friends.toJSON());
} catch (err) {
res.status(500).send(err);
}
})
app.post('/groups/creategroup', tokenBaseOuth, async (req, res) => {
const { groupName, users } = req.body;
if (groupName && users && Array.isArray(users)) {
try {
console.log(users);
const StatusOfCreateGroup = await CreateGroup(groupName, users);
console.log(StatusOfCreateGroup)
if (StatusOfCreateGroup) {
return res.sendStatus(201);
} else {
return res.sendStatus(500);
}
} catch (error) {
console.error(error);
return res.sendStatus(500); // Internal Server Error
}
}
return res.sendStatus(400); // Bad Request
});
app.post('/groups/:groupId/removemember', tokenBaseOuth, async (req, res) => {
const userId = req.body.userId;
const ChatID = req.params.groupId;
console.log('remove : ' + userId + '\nchatid :' + ChatID);
if (!(userId && ChatID)) {
return res.sendStatus(400); // Bad Request
}
try {
const Status = await RemoveUserToChat(userId, ChatID);
if (Status) {
return res.sendStatus(200); // OK
} else {
return res.sendStatus(500); // Internal Server Error
}
} catch (error) {
console.error(error);
return res.sendStatus(500); // Internal Server Error
}
});
app.get('/groups', tokenBaseOuth, async (req, res) => {
const id = req.userdata.id;
try {
const friends = await GetAllFriend(id);
console.log('friends : ' + friends);
const filteredData = friends.chats.filter(data => data.group === true);
console.log('arkadaslar : ' + filteredData);
if (filteredData) {
return res.status(200).json(filteredData);
}
console.log('arkadas bulunmadı :' + filteredData)
return res.sendStatus(404); // Arkadaş bulunamadı
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
})
app.get('/groups/:id/members', tokenBaseOuth, async (req, res) => {
const id = req.params.id;
try {
const data = await TakeGroupMembers(id);
if (data) {
console.log('data gitti');
console.log('dönen data : ' + data);
return res.status(200).json(data);
}
return res.sendStatus(404);
} catch (err) {
console.log(err)
return res.sendStatus(500);
}
})
app.post('/groups/:id/addmember', tokenBaseOuth, async (req, res) => {
const groupId = req.params.id;
const userId = req.body.userId;
console.log('istek userid ' + userId);
try {
if (groupId && userId) {
const status = await addUserToChat(userId, groupId);
if (status) {
return res.sendStatus(201);
}
return res.sendStatus(400)
}
res.sendStatus(500);
} catch (err) {
res.sendStatus(500);
console.log(err);
}
})
app.get('/friendrequests', tokenBaseOuth, async (req, res) => {
const id = req.userdata.id;
try {
console.log('friend req id : ' + id)
const requests = await GetAllFriendReq(id);
console.log('istekler : ' + requests);
if (requests) {
return res.status(200).json(requests);
}
console.log('arkadaslık istegi bulamadı : ' + requests)
return res.sendStatus(404); // Arkadaş isteği bulunamadı
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
app.get('/friends', tokenBaseOuth, async (req, res) => {
const id = req.userdata.id;
try {
const friends = await GetAllFriend(id);
console.log('friends : ' + friends);
const filteredData = friends.chats.filter(data => data.group === false);
console.log('arkadaslar : ' + filteredData);
if (filteredData) {
return res.status(200).json(filteredData);
}
console.log('arkadas bulunmadı :' + filteredData)
return res.sendStatus(404); // Arkadaş bulunamadı
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
app.post('/addfriend/:id', tokenBaseOuth, async (req, res) => {
const friendId = req.params.id;
const username = req.userdata.username;
const userId = req.userdata.id;
console.log("\n" + friendId + "\n" + userId)
if (!(friendId && userId)) {
return res.sendStatus(400); // Eksik veri
}
try {
const requestStatus = await createFriendReq(userId, username, friendId);
if (requestStatus) {
return res.sendStatus(201); // Başarıyla oluşturuldu
}
console.log(requestStatus);
return res.sendStatus(500);
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
app.post('/friendrequests/accept', tokenBaseOuth, async (req, res) => {
const id = req.body.id;
console.log('friend accep id : ' + id);
try {
const AcceptReq = await acceptFriendReq(id);
if (AcceptReq) {
return res.sendStatus(200); // Başarıyla kabul edildi
}
return res.sendStatus(404); // Arkadaş isteği bulunamadı
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
app.post('/friendrequests/decline', tokenBaseOuth, async (req, res) => {
const id = req.body.id;
try {
const DeclineReq = await declineFriendReq(id);
if (DeclineReq) {
return res.sendStatus(200); // Başarıyla reddedildi
}
return res.sendStatus(404); // Arkadaş isteği bulunamadı
} catch (error) {
console.error(error);
return res.sendStatus(500);
}
});
io.on('connection', (socket) => {
console.log(`New connection: ${socket.id}`);
// Kullanıcı bir odaya katıldığında
socket.on('joinRoom', (roomId) => {
if (!roomId) {
return socket.emit('error', 'Room ID is required');
}
socket.join(roomId);
console.log(`User joined room: ${roomId}, Socket ID: ${socket.id}`);
io.to(roomId).emit('tick', roomId); // Odaya bildirim gönder
});
// Kullanıcı tüm mesajları istediğinde
socket.on('GetAll', async (roomId) => {
try {
const allMessages = await getChatMessages(roomId); // Veritabanından mesajları al
socket.emit('AllMessages', allMessages); // Mesajları kullanıcıya gönder
} catch (error) {
console.error('Error fetching messages:', error);
socket.emit('error', 'Failed to fetch messages');
}
});
// Kullanıcı mesaj gönderdiğinde
socket.on('send-Messages', async (obj) => {
if (!obj || !obj.chatId || !obj.sender || !obj.content) {
return socket.emit('error', 'Invalid message object');
}
try {
await saveMessage(obj.chatId, obj.sender, obj.isPhoto, obj.content); // Mesajı kaydet
const DTO = {
senderId: obj.sender.userid,
senderName: obj.sender.username,
isPhoto: obj.isPhoto,
content: obj.content,
sendTime: new Date(),
};
console.log(DTO);
io.to(obj.chatId).emit('get-Messages', DTO); // Mesajı odaya yayınla
} catch (error) {
console.error('Error saving message:', error);
socket.emit('error', 'Failed to send message');
}
});
});
io.on('disconnect', (socket) => {
console.log("disconnect : " + socket.id)
})
server.listen(433, () => {
console.log('server open');
})