-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.ts
141 lines (118 loc) · 3.15 KB
/
app.ts
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
133
134
135
136
137
138
139
140
141
import 'dotenv/config';
import path from 'path'
import fs from 'fs';
import express from 'express';
import bodyParser from 'body-parser';
import mongoose from 'mongoose';
import session from 'express-session';
import ConnectMongoSession from 'connect-mongodb-session';
import csrf from 'csurf';
import flash from 'connect-flash';
import multer from 'multer';
import helmet from 'helmet';
import compression from 'compression';
import morgan from 'morgan';
import { router as adminRoutes } from './routes/admin';
import { router as shopRoutes } from './routes/shop';
import { router as authRoutes } from './routes/auth';
import { get404, get500 } from './controllers/error';
import { User } from './models/user';
const MongoDBStore = ConnectMongoSession(session);
const app = express();
const store = new MongoDBStore({
uri: process.env.MONGODB_URI,
collection: 'sessions'
});
const csrfProtection = csrf();
app.set('view engine', 'ejs');
/*
* tell where is the dir with views
* default - views
* */
app.set('views', 'views');
app.use(bodyParser.urlencoded({ extended: false }));
const fileStorage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, 'images');
},
filename: (req, file, cb) => {
cb(null, `${new Date().toISOString()}_${file.originalname}`);
}
});
app.use(
multer({
storage: fileStorage,
fileFilter: (req, file, cb) => {
if (
file.mimetype === 'image/png'
|| file.mimetype === 'image/jpg'
|| file.mimetype === 'image/jpeg'
) {
cb(null, true);
} else {
cb(null, false);
}
}
}).single('image')
);
app.use(express.static(path.join(__dirname, 'public')));
app.use('/images', express.static(path.join(__dirname, 'images')));
app.use(session({
secret: 'my secret',
resave: false,
saveUninitialized: false,
store
}));
app.use(helmet());
app.use(compression());
const accessLogStream = fs.createWriteStream(path.join(__dirname, 'access.log'), { flags: 'a' });
app.use(morgan('combined', { stream: accessLogStream }));
app.use(csrfProtection);
app.use(flash());
app.use((req, res, next) => {
res.locals.isLoggedIn = (req.session as any).isLoggedIn;
res.locals.csrfToken = req.csrfToken();
next();
})
app.use((req, res, next) => {
if (!(req.session as any).user) {
return next();
}
User.findById((req.session as any).user._id)
.then((user) => {
if (!user) {
return next();
}
(req as any).user = user;
next();
})
.catch((e) => {
next(new Error(e));
})
})
app.use('/admin', adminRoutes);
app.use(shopRoutes);
app.use(authRoutes);
app.use('/500', get500);
app.use(get404);
app.use((error, req, res, _next) => {
res.status(500).render(
'500',
{
pageTitle: 'Error!',
path: '/500',
isAuthenticated: req.session.isLoggedIn
}
);
});
mongoose
.connect(process.env.MONGODB_URI)
.then(() => {
// example with manually setting a cerificate
// https
// .createServer({ key: privateKey, cert: certificate }, app)
// .listen(process.env.PORT || 3030);
app.listen(process.env.PORT || 3030);
})
.catch((error) => console.log(error));
module.exports = app;