-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestserver.js
77 lines (59 loc) · 2.34 KB
/
testserver.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
// server.js
// BASE SETUP
// =============================================================================
var mongoose = require('mongoose');
mongoose.connect('mongodb://localhost:2020/consultappdb');
var Question = require('./app/models/question');
// call the packages we need
var express = require('express'); // call express
var app = express(); // define our app using express
var bodyParser = require('body-parser');
// configure app to use bodyParser()
// this will let us get the data from a POST
app.use(bodyParser.urlencoded({ extended: true }));
app.use(bodyParser.json());
var port = process.env.PORT || 8080; // set our port
// ROUTES FOR OUR API
// =============================================================================
var router = express.Router(); // get an instance of the express Router
router.use(function(req, res, next) {
// do logging
console.log('Remote Request received successfully.');
next(); // make sure we go to the next routes and don't stop here
});
// test route to make sure everything is working (accessed at GET http://localhost:8080/api)
router.get('/', function(req, res) {
res.json({ message: 'hooray! welcome to our api!' });
});
// more routes for our API will happen here
// on routes that end in /bears
// ----------------------------------------------------
router.route('/questions')
// create a bear (accessed at POST http://localhost:8080/api/bears)
.post(function(req, res) {
var question = new Question(); // create a new instance of the Bear model
question.description = req.body.description; // set the bears name (comes from the request)
question.title = req.body.title;
question.question = req.body.question;
// save the bear and check for errors
question.save(function(err) {
if (err)
res.send(err);
res.json({ message: 'New consulting question created!' });
});
})
.get(function(req, res) {
Question.find(function(err, questions) {
if (err)
res.send(err);
res.json(questions);
});
});
// REGISTER OUR ROUTES -------------------------------
// all of our routes will be prefixed with /api
app.use('/api', router);
// START THE SERVER
// =============================================================================
app.listen(port);
console.log('Magic happens on port ' + port);
exports = module.exports = app; // expose app