-
Notifications
You must be signed in to change notification settings - Fork 1
/
server.js
455 lines (426 loc) · 15.1 KB
/
server.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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
var pg = require('pg')
, app = require('http').createServer(handler)
, url = require('url')
, path = require('path')
, fs = require('fs')
, querystring = require('querystring');
//or native libpq bindings
//var pg = require('pg').native
var conString = "postgres://postgres:godzilla1@localhost:5432/studiosensors";
var mimeTypes = {
"html": "text/html",
"jpeg": "image/jpeg",
"jpg": "image/jpeg",
"png": "image/png",
"js": "text/javascript",
"css": "text/css"};
var client = new pg.Client(conString);
client.connect(function(err) {
if(err) {
return console.error('could not connect to postgres', err);
}
else {
}
});
app.listen(3000);
function handler (req, res) {
req.on('error', function (err) {
console.log(" error? ");
});
var uri = url.parse(req.url).pathname;
var q = querystring.parse(url.parse(req.url).query);
if(uri == '/')
{
if(q && q.i)
{
console.log(q);
var studioStr = "'" + String(q.studio) + "'";
var zoneStr = "'" + String(q.zone) + "'";
var query = "INSERT INTO readings (sensor_id, studio, zone, time, light, sound, temp, movement, humidity, brightness) VALUES (" +
parseInt(q.i,10) + "," + studioStr + "," + zoneStr + ",current_timestamp," + parseInt(q.l,10) + "," + parseInt(q.s,10) + "," + parseInt(q.t,10) + "," +
parseInt(q.m,10) + "," + parseInt(q.h,10) +",0);";
console.log(query);
client.query(query, function(err, result) {
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if(result) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('done');
return res.end();
}
});
} else {
return res.end();
}
}
else if( uri == "/view")
{
var q = querystring.parse(url.parse(req.url).query);
if(q && q.begintime && q.endtime)
{
var query = "select * from readings where time BETWEEN to_timestamp('"+q.begindate+ " " + q.begintime +
"', 'DDMMYYYY HH24MI') AND to_timestamp('"+q.enddate+" " +q.endtime + "', 'DDMMYYYY HH24MI')";
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if(q && q.begintime && q.endtime && q.studio && q.zone)
{
var query = "select * from readings where time BETWEEN to_timestamp('"+q.begindate+ " " + q.begintime +
"', 'DDMMYYYY HH24MI') AND to_timestamp('"+q.enddate+" " +q.endtime + "', 'DDMMYYYY HH24MI') and studio = '" + q.studio + "' and zone = '" + q.zone.toString() + "'";
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if(q && q.zone && q.studio && !q.last)
{
var query = "select * from readings where zone = '"+q.zone + "' and studio = '" + q.studio + "'";
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if(q && q.zone && q.studio && q.last)
{
var query = "select * from readings where zone = '" + q.zone + "' and studio = '" + q.studio + "' order by time desc limit 1";
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if( q && q.sensorid )
{
var query = "select * from readings where sensor_id = " + q.sensorid;
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if(q && q.recent && q.zone && q.studio)
{
var query = "select * from readings where zone = " + q.zone + "and studio = " + q.studio + " and time > (now() - interval '1 hour');"
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
if(q && q.studio && q.begindate && q.begintime)
{
var query = "select * from readings where studio = " + q.studio +
" AND BETWEEN to_timestamp('"+q.begindate+ " " + q.begintime +"', 'DDMMYYYY HH24MI') AND to_timestamp('"+
q.enddate+" " +q.endtime + "', 'DDMMYYYY HH24MI');"
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
else if(q && q.now && q.studio)
{
var query = "select * from readings where studio = " + q.studio + " and time > (now() - interval '10 minute');"
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
else if(q && q.last && q.zone)
{
var query = "SELECT * from readings where zone=" + q.last + " order by time desc limit 1;";
client.query(query, function(err, result) {
if(err){
console.log(" error " + err);
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" error " + err);
return res.end();
}
if(result) {
var json = JSON.stringify(result.rows);
res.writeHead(200, {'content-type':'application/json', 'content-length':json.length});
res.end(json);
}
});
}
}
// set the MAC => studio+zone
else if( uri == "/set_studio_zone" ) // map MAC address to studio+zone
{
if( q.mac && q.studio && q.zone )
{
var query = "INSERT INTO studio_zone (mac, studio, zone) VALUES ('" +q.mac.toLowerCase() + "','" +q.studio+ "','" +q.zone+ "') ;";
client.query(query, function( err, result )
{
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if( result )
{
res.writeHead(200, {'Content-Type': 'text/plain'});
console.log(" set mac=>studio, zone" + q.zone.toString() + " " + q.studio.toString() );
res.write(" set mac=>studio, zone" + q.zone.toString() + " " + q.studio.toString());
return res.end();
}
});
}
}
// get the MAC => studio+zone
else if( uri == "/get_studio_zone" ) // map MAC address to studio+zone
{
var q = querystring.parse(url.parse(req.url).query);
if( q.mac )
{
var query = "SELECT * FROM studio_zone WHERE mac = '" + q.mac.toLowerCase() + "';";
client.query(query, function( err, result )
{
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if( result )
{
if( result.rowCount > 0 )
{
res.writeHead(200, {'Content-Type': 'text/plain'});
console.log( result.rows[0].studio + ":" + result.rows[0].zone );
res.write( result.rows[0].studio + ":" + result.rows[0].zone ); // everybody gets a new ID
}
else
{
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write("NONE"); // no studio+zone for this MAC
}
return res.end();
}
});
}
}
else if( uri == "/get_id" ) // second thing is to get an ID to use, this lets you know what ID this device is
{
var q = querystring.parse(url.parse(req.url).query);
if( q.ip && q.studio && q.zone )
{
var query = "SELECT id FROM sensors ORDER BY id DESC LIMIT 1;";
client.query(query, function( err, result )
{
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if( result )
{
res.writeHead(200, {'Content-Type': 'text/plain'});
var id = 0; // are you the first?
if( result.rowCount > 0 )
{
id = result.rows[0].id;
console.log(" returning id " + id );
console.log( result );
var json = JSON.stringify(id);
res.write( (id + 1).toString()); // everybody gets a new ID
}
else
{
console.log( " no results ? " )
var json = JSON.stringify(id);
res.write(id.toString()); // everybody gets a new ID
}
//now actually write the record
var insertQuery = "INSERT INTO sensors(id, studio, zone, ip, key) VALUES ( "+parseInt(id+1, 10)+",'"+q.studio+"','"+q.zone+"','"+q.ip+"', '"+q.studio+q.zone+"');";
client.query(insertQuery, function( err2, result2 )
{
if(err2)
{
var updateQuery = "UPDATE sensors SET id='"+parseInt(id+1, 10)+"', ip='"+q.ip+"' where key='"+ (q.studio+q.zone) +"';";
client.query( updateQuery, function( errUpdate, result3 ) {
if( errUpdate ) { console.log(" error on updating IP "); }
});
//console.log(" error on insert query " + err2 );
//res.writeHead(409, {'Content-Type': 'text/plain'});
//res.write(" DB error on updateQuery ");
//return res.end();
}
if( result2 )
{
console.log(" made a new ID with ID = " + String(id+1));
return;
}
});
return res.end();
}
});
}
else
{
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write("Needs ip, studio, && zone");
return res.end();
}
}
else if( uri == "/update_ip" ) // update the IP when something reconnects (going to happen *a lot*)
{
var q = querystring.parse(url.parse(req.url).query);
if( q.id && q.ip)
{
//UPDATE films SET kind = 'Dramatic' WHERE kind = 'Drama';
var query = "UPDATE sensors SET ip = " + q.ip + " WHERE id = " + q.id + ";";
client.query(query, function( err, result )
{
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if( result )
{
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write("success"); // it's okd
return res.end();
}
});
}
else
{
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write("Needs machine id");
return res.end();
}
}
else if( uri == "/get_ip" )
{
var q = querystring.parse(url.parse(req.url).query);
if( q.studio && q.zone )
{
//UPDATE films SET kind = 'Dramatic' WHERE kind = 'Drama';
var query = "SELECT * FROM sensors WHERE studio = '" + q.studio + "' AND zone = '" + q.zone + "';";
client.query(query, function( err, result )
{
if(err)
{
console.log(" error " + err );
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write(" DB error ");
return res.end();
}
if( result )
{
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write(result.rows[0].ip); // it's okd
return res.end();
}
});
}
else
{
res.writeHead(409, {'Content-Type': 'text/plain'});
res.write("Needs machine id");
return res.end();
}
}
else
{
// post the data
var filename = path.join(process.cwd(), uri);
fs.exists(filename, function(exists) {
if(!exists) {
// console.log("not exists: " + filename);
res.writeHead(200, {'Content-Type': 'text/plain'});
res.write('404 Not Found\n');
res.end();
return;
}
var mimeType = mimeTypes[path.extname(filename).split(".")[1]];
res.writeHead(200, mimeType);
var fileStream = fs.createReadStream(filename);
fileStream.pipe(res);
}); //end path.exists
}
}