-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserver.js
91 lines (74 loc) · 2.57 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
// server.js
// set up ========================
var express = require('express');
var app = express(); // create our app w/ express
var mongoose = require('mongoose'); // mongoose for mongodb
// configuration =================
app.configure(function() {
app.use(express.static(__dirname + '/public')); // set the static files location /public/img will be /img for users
app.use(express.logger('dev')); // log every request to the console
app.use(express.bodyParser()); // pull information from html in POST
app.use(express.methodOverride()); // simulate DELETE and PUT
});
mongoose.connect('mongodb://localhost/parkMonDB');
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function callback () {
console.log("connected")
});
// define model =================
var Spot = mongoose.model('Spot', {
name : String,
numOpenSpots : Number
});
// routes ======================================================================
// get all spots
app.get('/api/spots', function(req, res) {
// use mongoose to get all spots in the database
Spot.find(function(err, spots) {
// if there is an error retrieving, send the error. nothing after res.send(err) will execute
if (err)
res.send(err)
res.json(spots); // return all spots in JSON format
});
});
// create Spot and send back all spots after creation
app.post('/api/spots', function(req, res) {
// create a Spot, information comes from AJAX request from Angular
Spot.create({
name : req.body.name,
done : false,
numOpenSpots : req.body.numOpenSpots
},function(err, spot) {
if (err)
res.send(err);
// get and return all the spots after you create another
Spot.find(function(err, spots) {
if (err)
res.send(err)
res.json(spots);
});
});
});
// delete a spot
app.delete('/api/spots/:spot_id', function(req, res) {
Spot.remove({
_id : req.params.spot_id
}, function(err, spot) {
if (err)
res.send(err);
// get and return all the spots after you create another
Spot.find(function(err, spots) {
if (err)
res.send(err)
res.json(spots);
});
});
});
// application -------------------------------------------------------------
app.get('*', function(req, res) {
res.sendfile('./public/index.html'); // load the single view file (angular will handle the page changes on the front-end)
});
// listen (start app with node server.js) ======================================
app.listen(3000);
console.log("App listening on port 3000");