-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
103 lines (80 loc) · 1.92 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
//Dependency Configuration
var http = require('http');
var express = require('express');
var bodyParser = require('body-parser');
var morgan = require('morgan'); //Logs requests to server
var methodOverride = require('method-override');
var mongoose = require('mongoose'); //models/collections for DB
//Express Setup
var app = express();
//MongoDB Setup
mongoose.connect("mongodb://localhost/todos");
//Schema Setup
var Todo = mongoose.model('Todo', {
text : String
});
//Middleware Setup
app.use(express.static(__dirname + '/public' ));
app.use(morgan("dev"));
app.use(bodyParser.json());
app.use(methodOverride());
// Data Setup
var globalId = 3;
var todos = [{
"id":0,
"text": "Need to do nothing"
},{
"id":1,
"text": "Need to do one thing"
},{
"id":2,
"text": "Need to do two things"
}];
// Routes -- Endpoints
//'/api/todos/:todo_id' --- Deletes
//req.params.todo_id --- Deletes
//Loop through array for matching ID
app.get('/api/todos', function(req, res){
Todo.find(function(err, todos){
if(err) res.send(err);
res.json(todos);
});
});
app.post('/api/todos', function(req, res) {
Todo.create({
text: req.body.text
}, function(err, todo) {
if (err) res.send(err);
Todo.find(function(err, todos){
if(err) res.send(err);
res.json(todos);
});
});
});
/// "/api/todos/: --> ":" means looking for user input param
app.put('/api/todos/:todo_id', function( req, res) {
Todo.update({
_id: req.params.todo_id
},{
text: req.body.text
}, function(err, todo) {
if (err) res.send(err);
Todo.find(function(err, todos){
if(err) res.send(err);
res.json(todos);
});
});
});
app.delete('/api/todos/:todo_id', function( req, res) {
Todo.remove({
_id : req.params.todo_id
}, function(err, todo) {
if (err) res.send(err);
Todo.find(function(err, todos){
if(err) res.send(err);
res.json(todos);
});
});
});
app.listen(3000);
console.log("Up and Running on Port 3000");