-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
232 lines (215 loc) · 6.25 KB
/
server.js
File metadata and controls
232 lines (215 loc) · 6.25 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
const express = require('express');
var app = express();
var http = require('http');
// var pg = require('pg');
// pg.defaults.ssl = true; // comment this out during local development
const socketIO = require('socket.io');
const path = require('path');
const PORT = process.env.PORT || 3000;
const INDEX = path.join(__dirname, 'index.html');
var conString = process.env.DATABASE_URL;
var Sequelize = require('sequelize');
var sequelize = new Sequelize(conString, {native:true,ssl:true});
var validator = require('validator');
// var pg_client = new pg.Client(conString);
// pg_client.connect();
// var query = pg_client.query('LISTEN addedrecord');
app.use(express.static('www'));
// views is directory for all template files
app.set('views', __dirname + '/views')
app.set('view engine', 'ejs')
// CORS (Cross-Origin Resource Sharing) headers to support Cross-site HTTP requests
app.all('*', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*")
res.header("Access-Control-Allow-Headers", "X-Requested-With")
next()
});
var Pairs = sequelize.define('subject_pairs', {
subject1: {
type: Sequelize.STRING,
validate: {
isAlphanumeric: true,
not: [";"],
notContains: 'DROP TABLE'
}
},
subject2: {
type: Sequelize.STRING,
validate: {
isAlphanumeric: true,
not: [";"],
notContains: 'DROP TABLE'
}
},
time: {
type: Sequelize.INTEGER
},
timerONOFF: {
type: Sequelize.STRING
},
picture: {
type: Sequelize.STRING
},
inuse: {
type: Sequelize.INTEGER
}
}, {
freezeTableName: true // Model tableName will be the same as the model name
});
Pairs.sync();
// Pairs.sync({force: true}).then(function () {
// // Table created if it doesn't already exist
// var pairData = {
// subject1: '0000a',
// subject2: '0000b',
// inuse: 0
// }
// return Pairs.create(pairData). then(function(pairs){
// console.dir(pairs.get())
// })
// });
var SubjectInfo = sequelize.define('report', {
subjectNumber: {
type: Sequelize.STRING,
primaryKey: true,
validate: {
isAlphanumeric: true
}
},
subjectPairId: {
type: Sequelize.INTEGER,
allowNull: true,
defaultValue: null,
references: {
// This is a reference to another model
model: Pairs,
// This is the column name of the referenced model
key: 'id'
}
},
timestamp: {
type: Sequelize.STRING
},
age: {
type: Sequelize.STRING,
allowNull: true,
defaultValue: null,
validate: {
not: [";"],
notContains: 'DROP TABLE'
}
},
gender: {
type: Sequelize.STRING,
validate: {
isAlpha: true
}
},
// recording: {
// type: Sequelize.STRING,
// validate: {
// isAlpha: true
// }
// }
conditions: {
type: Sequelize.STRING,
allowNull: true,
defaultValue: null,
validate: {
not: [";"],
notContains: 'DROP TABLE'
}
},
correctdifferences: {
type: Sequelize.INTEGER,
allowNull: true,
defaultValue: null
},
results: {
type: Sequelize.JSON,
allowNull: true,
defaultValue: null
}
}, {
freezeTableName: true // Model tableName will be the same as the model name
});
SubjectInfo.sync();
SubjectInfo.belongsTo(Pairs);
const server = express()
.use((req, res) => res.sendFile(INDEX) )
.listen(PORT, () => console.log(`Listening on ${ PORT }`));
const io = socketIO(server);
// Create the server
// var server = http.createServer(app);
// io.listen(server);
// server.listen(port);
// console.log("http server listening on %d", port);
io.sockets.on('connection', function (socket) {
socket.emit('connected', { connected: true });
socket.broadcast.emit('user connected');
console.log('a user connected: '+socket.id);
socket.on('disconnect', function(){
console.log('user disconnected');
});
socket.on('ready for data', function (data) {
console.log("Waiting for something to happen");
// console.log(data);
});
socket.on('get rooms', function() {
console.log("get rooms");
Pairs.findAll({
where: {
inuse: 0
}
}).then(function(pairs) {
socket.emit('load pairs', pairs);
console.log("sent");
});
})
socket.on('new pair', function(data){
Pairs.sync().then(function () {
// Table created if it doesn't already exist
return Pairs.create(data). then(function(pair){
console.dir(pair.get())
socket.emit('return created pair',pair);
})
});
});
socket.on('pair taken',function(data) {
console.log(data);
Pairs.findById(data).then(function(pair) {
// update value of inuse to 1
pair.update({inuse: '1'})
console.log("changed: \n", pair);
console.dir(pair.get())
})
})
socket.on('new user', function(data){
// console.log('inserting: ',data.subjectNumber);
subjID = data.subjectNumber;
console.log(subjID);
SubjectInfo.sync().then(function () {
// console.log(data);
// // Table created if it doesn't already exist
return SubjectInfo.create(data). then(function(subject){
console.dir(subject.get())
})
}, SubjectInfo.findById(subjID).then(function(subject) {
if (subject) { // if the record exists in the db
return subject.update(data);
console.dir(subject.get())
}
})
);
});
socket.on('results', function(data) {
subjID = data.subjectNumber;
console.log(subjID);
SubjectInfo.findById(subjID).then(function(subject) {
if (subject) { // if the record exists in the db
return subject.update(data);
console.dir(subject.get())
}
});
});
});