forked from TaniaMalhotra/LetsChat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
116 lines (89 loc) · 2.89 KB
/
Copy pathserver.js
File metadata and controls
116 lines (89 loc) · 2.89 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
const mongo = require('mongodb').MongoClient;
const path = require('path');
const http = require('http');
const express = require('express');
const socketio = require('socket.io');
const formatMessage = require('./utils/messages');
const {
userJoin,
getCurrentUser,
userLeave,
getRoomUsers
} = require('./utils/users');
const app = express();
const server = http.createServer(app);
const io = socketio(server);
// Set static folder
app.use(express.static(path.join(__dirname, 'public')));
const botName = 'LetsChat Bot';
// Connect to mongo
mongo.connect('mongodb+srv://Tania:Tania@cluster0.w1ecr.mongodb.net/db?retryWrites=true&w=majority/db', function(err, client){
if(err){
throw err;
}
console.log('MongoDB connected...');
///var chatSchema = mongo.Schema({
//user:String,
//msg:String,
//room: String
//});
//var Chat = mongo.model('Messagess', chatSchema);
// Run when client connects
io.on('connection', socket => {
//let chat = client.db.collection('chats');
let chat = client.db('db');
socket.on('joinRoom', ({ username, room }) => {
const user = userJoin(socket.id, username, room);
socket.join(user.room);
// Get chats from mongo collection
chat.collection('chats').find({room: user.room}).limit(100).sort({_id:1}).toArray(function(err, res){
if(err){
throw err;
}
// Emit the messages to client
//socket.to(user.room).emit('output', res); //res has user and msg
socket.emit('output', res);
console.log('database')
console.log(res)
});
// Welcome current user
console.log("Welcome message emitted from server");
socket.emit('message', formatMessage(botName, 'Welcome to ChatCord!'));
// Broadcast when a user connects
socket.broadcast
.to(user.room)
.emit(
'message',
formatMessage(botName, `${user.username} has joined the chat`)
);
// Send users and room info
io.to(user.room).emit('roomUsers', {
room: user.room,
users: getRoomUsers(user.room)
});
// Listen for chatMessage
socket.on('chatMessage', msg => {
const user = getCurrentUser(socket.id);
io.to(user.room).emit('message', formatMessage(user.username, msg));
chat.collection('chats').insert({user:user.username, msg:msg, room: user.room}); //inserting our username and message to db
});
// Runs when client disconnects
socket.on('disconnect', () => {
const user = userLeave(socket.id);
if (user) {
io.to(user.room).emit(
'message',
formatMessage(botName, `${user.username} has left the chat`)
);
// Send users and room info
io.to(user.room).emit('roomUsers', {
room: user.room,
users: getRoomUsers(user.room)
});
}
});
});
});
});
const PORT = process.env.PORT || 3000;
server.listen(PORT, () => console.log(`Server running on port ${PORT}`));