-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathapp.js
More file actions
214 lines (199 loc) · 7.09 KB
/
app.js
File metadata and controls
214 lines (199 loc) · 7.09 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
(function () {
// "use strict";
var express = require('express');
var app = express();
var path = require('path');
var server = require('http').createServer(app);
var io = require('socket.io')(server);
var serverPort = process.env.PORT || 8080;
var participantList = require("./participantList");
var progressList = [];
var completedList = [];
var animation_count = 0;
var multiples_count = 0;
// var num_orderings = 2;
// var ordering_count = [0,0];
// if (participantList.length > 17) {
num_orderings = 5;
ordering_count = [0,0,0,0,0];
// }
app.use(express.static('public'));
app.get('/', function(req, res) {
res.sendFile(__dirname + '/public/index.html');
});
server.listen(serverPort, function() {
console.log('Server started on port %s', serverPort);
});
io.on('connection', function (socket) {
io.set('transports', ['websocket']);
var now = new Date();
io.emit('new_connection', {
port: serverPort,
timestamp: now
});
console.log('new_connection',{
port: serverPort,
timestamp: now
});
socket.on('userID', function(msg){
var now = new Date();
if (participantList.length > 0) { // move next participant to progress list
participantList[0].user_id = msg.userID;
io.emit('new_participant', {
participant: participantList[0].participant,
user_id: participantList[0].user_id,
condition: participantList[0].condition,
ordering: participantList[0].ordering,
userAgent: msg.userAgent,
timestamp: now
});
console.log('new_participant',{
participant: participantList[0].participant,
user_id: participantList[0].user_id,
condition: participantList[0].condition,
ordering: participantList[0].ordering,
userAgent: msg.userAgent,
timestamp: now
});
progressList.push(participantList[0]);
participantList.splice(0,1);
}
else if (completedList.length > 0){ //add extra participant considering the completed participants and their condition/orderings
var extra_ordering = 0;
extra_ordering = ordering_count.indexOf(Math.min.apply(Math, ordering_count));
if (extra_ordering == -1) {
extra_ordering = 0;
}
var extra = {
'user_id': msg.userID,
'participant': completedList.length + progressList.length,
'condition': 'multiples',
// 'condition': animation_count <= multiples_count ? 'animation' : 'multiples',
'ordering': extra_ordering,
'timestamp': now,
'userAgent': msg.userAgent,
'note': 'extra participant (at least one participant completed)'
};
io.emit('new_participant',extra);
console.log('new_participant',extra);
progressList.push(extra);
}
else if (progressList.length > 0) { //add extra participant when no one has finished yet
var surplus = {
'user_id': msg.userID,
'participant': progressList.length,
'condition': 'multiples',
// 'condition': progressList[progressList.length-1].condition == 'animation' ? 'multiples' : 'animation',
'ordering': progressList[progressList.length-1].ordering < num_orderings - 1 ? (progressList[progressList.length-1].ordering + 1) : 0,
'timestamp': now,
'userAgent': msg.userAgent,
'note': 'extra participant (no participants completed)'
};
io.emit('new_participant',surplus);
console.log('new_participant',surplus);
progressList.push(surplus);
}
else { //this shouldn't ever happen, but if it does, randomize
var rando = {
'user_id': msg.userID,
'participant': -1,
'condition': 'multiples',
// 'condition': (Math.random() < 0.5) ? 'multiples' : 'animation',
'ordering': Math.floor(Math.random() / (1 / num_orderings)),
'timestamp': now,
'userAgent': msg.userAgent,
'note': 'extra participant'
};
io.emit('new_participant',rando);
console.log('new_participant',rando);
progressList.push(rando);
}
});
socket.on('unload', function(msg){
var user_id_found = false;
var i = 0;
var now = new Date();
while (!user_id_found && i < completedList.length) {
if (completedList[i].user_id == msg.userID) { //move participant to completed list
user_id_found = true;
console.log('departure', {
user_id: msg.userID,
timestamp: now,
userAgent: msg.userAgent,
note: 'departure of completed participant'
});
io.emit('departure', {
user_id: msg.userID,
timestamp: now,
userAgent: msg.userAgent,
note: 'departure of completed participant'
});
}
i++;
}
if (!user_id_found) {
//participant did not finish, so recycle their condition/ordering
i = 0;
while (!user_id_found && i < progressList.length) {
if (progressList[i].user_id == msg.userID) { //move participant to completed list
user_id_found = true;
console.log('departure', progressList[i]);
io.emit('departure', progressList[i]);
progressList[i].user_id = '';
participantList.push(progressList[i]);
progressList.splice(i,1);
}
i++;
}
if (!user_id_found) {
console.log('departure', {
user_id: msg.userID,
timestamp: now,
userAgent: msg.userAgent,
note: 'departure of unknown participant?'
});
io.emit('departure', {
user_id: msg.userID,
timestamp: now,
userAgent: msg.userAgent,
note: 'departure of unknown participant?'
});
}
}
});
socket.on('questionnaire', function(msg){
var user_id_found = false;
var i = 0;
var now = new Date();
while (!user_id_found && i < progressList.length) {
if (progressList[i].user_id == msg) { //move participant to completed list
user_id_found = true;
console.log('completion', progressList[i]);
io.emit('completion', progressList[i]);
if (progressList[i].condition == 'animation') {
animation_count++;
}
else {
multiples_count++;
}
ordering_count[progressList[i].ordering]++;
completedList.push(progressList[i]);
progressList.splice(i,1);
}
i++;
}
if (!user_id_found) { //participant completed without being on progress list
console.log('completion', {
user_id: msg,
timestamp: now,
note: 'completion of unknown participant?'
});
io.emit('completion', {
user_id: msg,
timestamp: now,
note: 'completion of unknown participant?'
});
}
});
});
})();