-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
76 lines (67 loc) · 2.06 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
var express = require('express');
var app = express();
var r = require('rethinkdb');
var bodyParser = require('body-parser');
//open a conection to rethinkdb
var connection = null;
r.connect( {host: 'localhost', port: 28015}, function(err, conn) {
if (err) throw err;
connection = conn;
});
app.use(express.static(__dirname + "/public"));
app.use(bodyParser.json());
app.get('/contactlist', function(req, res) {
console.log('I recived a GET request');
r.table('contactlist').run(connection, function(err, cursor) {
if (err) throw err;
//organize the recived data into aray of JSON objects and return it
cursor.toArray(function(err, result) {
if (err) throw err;
return JSON.stringify(result, null, 2);
}).then(function(cursor) {
//send the response to a controller
res.json(cursor);
console.log(cursor);
});
});
;
});
app.post('/contactlist',function(req, res) {
console.log(req.body);
//insert parsed body of request as JSON object into a database
r.table('contactlist').insert(req.body).run(connection, function(err, result) {
if (err) throw err;
return JSON.stringify(result, null, 2);
}).then(function(result) {
//send the response to a controller
res.json(result);
});
});
app.delete('/contactlist/:id', function(req, res) {
var id = req.params.id;
console.log(id);
r.table('contactlist').get(id).delete().run(connection).then(function(result){
res.json(result);
});
});
app.get('/contactlist/:id', function(req, res) {
var id = req.params.id;
console.log(id);
r.table('contactlist').get(id).run(connection).then(function(result){
res.json(result);
});
});
app.put('/contactlist/:id', function(req, res) {
var id = req.params.id;
console.log(req.body.name);
r.table('contactlist')
.get(id)
.update({name: req.body.name,
email: req.body.email,
number: req.body.number})
.run(connection).then(function(result){
res.json(result);
});
});
app.listen(3000);
console.log("Server running at port 3000");