-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
84 lines (73 loc) · 2.07 KB
/
app.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
/* Establish database connection */
const mongoose = require('mongoose');
mongoose.connect('mongodb://localhost/test');
const db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
// we're connected!
console.log("Successfully connected to mongodb!");
});
const date = new Date();
// Schema for a Daily
const dailySchema = mongoose.Schema({
title: String,
content: String, // JSON string
year: Number,
month: { type: Number, min: 1, max: 12 },
date: { type: Number, min: 1, max: 31 },
});
// Daily model
const Daily = mongoose.model('Daily', dailySchema);
/* Route/resource handling */
const http = require('http');
const bodyParser = require('body-parser');
var jsonParser = bodyParser.json()
const hostname = "localhost";
const port = 9000;
const express = require('express');
const app = new express();
app.use(express.static('public/bundles'));
app.get('/', function(request, response){
response.sendFile(__dirname + '/index.html');
});
app.get('/daily/:year/:month/:date', function(request, response){
Daily.findOne({
year: parseInt(request.params.year),
month: parseInt(request.params.month),
date: parseInt(request.params.date),
}, function(err, doc) {
if (err) {
next(err);
}
else {
return response.json(doc);
}
});
});
app.put('/daily/:year/:month/:date', jsonParser, function(request, response){
Daily.findOneAndUpdate({
year: parseInt(request.params.year),
month: parseInt(request.params.month),
date: parseInt(request.params.date),
}, {
$set: {
title: request.body.title,
content: request.body.content
}
}, {
upsert: true, new: true
}, function(err, doc) {
if (err) {
console.log(err);
}
else {
response.sendStatus(200);
}
});
});
app.listen(port, () => {
console.log(`
Server is running at http://${hostname}:${port}/
Server hostname ${hostname} is listening on port ${port}!
`);
});