-
Notifications
You must be signed in to change notification settings - Fork 434
/
app.js
130 lines (101 loc) · 3.26 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
var express = require('express');
var path = require('path');
var favicon = require('serve-favicon');
var logger = require('morgan');
var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var mongoose = require('mongoose');
var router = express.Router();
var jwt = require('jsonwebtoken');
//var compression = require('compression');
//routes
var users = require('./routes/users');
var posts = require('./routes/posts');
var app = express();
app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');
//app.use(compression());
app.get('*.js', function (req, res, next) {
req.url = req.url + '.gz';
res.set('Content-Encoding', 'gzip');
next();
});
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Request-Headers", "*");
res.header('Access-Control-Allow-Methods', 'GET, POST, DELETE, OPTIONS');
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept, Authorization");
res.header("Access-Control-Allow-Credentials", "true");
next();
});
var staticPath = 'public';
app.use(logger('dev'));
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: false
}));
app.use(cookieParser());
//middleware that checks if JWT token exists and verifies it if it does exist.
//In all the future routes, this helps to know if the request is authenticated or not.
app.use(function(req, res, next) {
// check header or url parameters or post parameters for token
var token = req.headers['authorization'];
if (!token) return next();
token = token.replace('Bearer ', '');
jwt.verify(token, process.env.JWT_SECRET, function(err, user) {
if (err) {
return res.status(401).json({
success: false,
message: 'Please register Log in using a valid email to submit posts'
});
} else {
req.user = user;
next();
}
});
});
app.use('/api/', posts);
app.use('/api/', users);
app.use(express.static(staticPath));
app.use('/', express.static(staticPath));
app.use('/posts/*', express.static(staticPath));
app.use('/new/*', express.static(staticPath));
app.use('/validateEmail/*', express.static(staticPath));
// catch 404 and forward to error handler
app.use(function(req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// app.use(function(err, req, res, next) {
// console.error(err.stack);
// console.log(1)
// res.status(500).send('Uh oh! Something broke!');
// });
// error handlers
// no stacktraces leaked to user
app.use(function(err, req, res, next) {
console.dir(err);
res.status(err.status || 500);
if (err.status === 500) {
console.error(err.stack);
res.json({
error: 'Internal Server Error'
});
} else if (err.status === 404) {
res.render('error'); //render error page
} else {
res.json({
error: err.message
})
}
});
mongoose.connect(process.env.MONGOLAB_URI || 'mongodb://localhost/posts');
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
console.log('DB connected!');
});
module.exports = app;