-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
132 lines (116 loc) · 3.84 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
131
132
import mongoose from 'mongoose'
import express from 'express'
import path from 'path'
import methodOverride from 'method-override'
import engine from 'ejs-mate'
import studySpotRouter from './routers/studySpotRoutes.js'
import libraryRouter from './routers/libraryRoutes.js'
import authRouter from './routers/authRoutes.js'
import AppError from './utilities/AppError.js'
import session from 'express-session'
import cookieParser from 'cookie-parser'
import flash from 'connect-flash'
import passport from 'passport'
import localStrategy from 'passport-local'
import User from './models/user.js'
import dotenv from 'dotenv'
import mongoSanitize from 'express-mongo-sanitize'
import helmet from 'helmet'
import MongoStore from 'connect-mongo'
if (process.env.NODE_ENV !== 'production') {
dotenv.config()
}
// __dirname is undefined when using es6 modules for some reason.
// so define __dirname as below
const __dirname = path.resolve(path.dirname(decodeURI(new URL(import.meta.url).pathname)));
// ms * s * min * hour * day * week
const oneWeek = 1000 * 60 * 60 * 24 * 7
// connecting to mongoose
const atlasUrl = process.env.ATLAS_URL;
// const atlasUrl = 'mongodb://localhost:27017/rateMyLib'
mongoose.connect(atlasUrl, {
useNewUrlParser: true,
useCreateIndex: true,
useUnifiedTopology: true,
useFindAndModify: false // added these options as suggested by docs and warnings.
})
.then(console.log('Database connected'))
.catch(err => console.log('connection error:', err))
const app = express()
app.engine('ejs', engine); // use layout system
app.set('view engine', 'ejs') // read ejs files
app.set('views', path.join(__dirname, 'views')) // set absolute file path to views
app.use(express.static('public'))
app.use(express.static('seeds'))
app.use(express.urlencoded({ extended: true })) // to parse req.body from req from html form
app.use(methodOverride('_method')) // to make put and delete requests from html form
// session middleware
const secret = process.env.SESSION_SECRET || 'BlenderBottle'
app.use(session({
secret: secret,
store: MongoStore.create({
mongoUrl: atlasUrl,
touchAfter: 24 * 3600,
secret: secret
}),
name: 'yourSession',
resave: false,
saveUninitialized: true,
cookie: {
httpOnly: true,
expires: Date.now() + oneWeek,
maxAge: oneWeek
}
}))
app.use(passport.initialize())
app.use(passport.session())
passport.use(new localStrategy(User.authenticate()))
passport.serializeUser(User.serializeUser())
passport.deserializeUser(User.deserializeUser())
// setup cookie-parser
app.use(cookieParser('mySecret'))
// setup flash
app.use(flash())
// flash & locals middleware
app.use((req, res, next) => {
// make res.locals.X available as X in files rendering in this request cycle.
res.locals.currentUser = req.user // included in req body by passport.js
res.locals.success = req.flash('success') // undefined unless created new spot
res.locals.error = req.flash('error')
next()
})
app.use(
mongoSanitize({
replaceWith: '_',
}),
)
app.use(helmet({ contentSecurityPolicy: false }))
// home route
app.get('/', (req, res) => {
res.render('home.ejs')
})
// library routes
app.use('/libraries', libraryRouter)
// study spot routes
app.use('/studySpots', studySpotRouter)
// auth-related routes
app.use('/', authRouter)
// any other routes that does not exist
app.all('*', (req, res, next) => {
next(new AppError('this page does not exist', 404))
})
// error handler
app.use((err, req, res, next) => {
if (!err.status) {
res.status = 500;
err.status = 500;
} else {
res.status = err.status
}
if (!err.message) { err.message = 'something went wrong!' }
res.render('error.ejs', { err })
})
const PORT = process.env.PORT || 4000
app.listen(PORT, () => {
console.log(`Serving on port ${PORT}`)
})