-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
120 lines (100 loc) · 2.9 KB
/
app.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
// Setup basic express server
var express = require('express');
var app = express();
var server = require('http').createServer(app);
var io = require('socket.io')(server);
var port = process.env.PORT || 3000;
var PythonShell = require('python-shell');
var fs = require('fs');
var chatType = '';
server.listen(port, function () {
console.log('Server listening at port %d', port);
});
app.use(express.static(__dirname + '/public'));
app.use('/chat', express.static(__dirname + '/public'));
// Routing
app.get('/', function(req, res) {
res.send('Hi');
});
app.get('/chat/:type', function(req,res) {
chatType = req.params.type;
res.sendFile(__dirname + '/public/index.html');
});
app.get('/merchant', function(req,res) {
res.sendFile(__dirname + '/public/merchant.html');
});
// Chatroom
var numUsers = 0;
var chatType = '';
io.on('connection', function (socket) {
var chatTypeF = function(data){
if(chatType == 'ai'){
text = {
args:[data]
};
PythonShell.run('cb.py', text, function (err, results) {
if (err) throw err;
socket.emit('new message', {
username: 'bot',
message: results[0]
});
});
} else if(chatType = 'human'){
console.log('human');
socket.broadcast.emit('new message', {
username: 'bot',
message: data
});
fs.appendFile("logs/messages", data+',', function(err) {
if(err) {
return console.log(err);
}
console.log("The file was saved!");
});
}
}
var addedUser = false;
// when the client emits 'new message', this listens and executes
socket.on('new message', function(data){
chatTypeF(data);
});
// when the client emits 'add user', this listens and executes
socket.on('add user', function (username) {
if (addedUser) return;
// we store the username in the socket session for this client
socket.username = username;
++numUsers;
addedUser = true;
socket.emit('login', {
numUsers: numUsers
});
// echo globally (all clients) that a person has connected
socket.broadcast.emit('user joined', {
username: socket.username,
numUsers: numUsers
});
});
// when the client emits 'typing', we broadcast it to others
socket.on('typing', function () {
socket.broadcast.emit('typing', {
username: socket.username
});
});
// when the client emits 'stop typing', we broadcast it to others
socket.on('stop typing', function () {
socket.broadcast.emit('stop typing', {
username: socket.username
});
});
// when the user disconnects.. perform this
socket.on('disconnect', function () {
if (addedUser) {
--numUsers;
// echo globally that this client has left
socket.broadcast.emit('user left', {
username: socket.username,
numUsers: numUsers
});
}
});
});