-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
97 lines (76 loc) · 2.54 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
import createError from 'http-errors';
import express from 'express';
import path from 'path';
import { fileURLToPath } from 'url';
import cookieParser from 'cookie-parser';
import logger from "morgan";
import expressLayouts from 'express-ejs-layouts';
import mongoose from 'mongoose';
import * as dotenv from "dotenv";
dotenv.config()
import cloudinary from "cloudinary";
import session from 'express-session';
import flash from "connect-flash";
import passport from "./config/passportConfig.js"
import indexRouter from "./routes/index.js";
import productRouter from "./routes/productRouter.js"
import categoryRouter from "./routes/categoryRouter.js"
import itemRouter from "./routes/itemRouter.js"
import { isUserLoggedIn } from './middleware/isUserLoggedIn.js';
const app = express();
mongoose.set("strictQuery", false)
const db = process.env.CONN_LOCAL
async function main(){
const conn = await mongoose.connect(db)
if (conn) console.log("Database successfully connected");
}
main().catch(err => console.error(err))
cloudinary.config({
cloud_name: process.env.CLOUD_NAME,
api_key: process.env.CLOUD_API_KEY,
api_secret: process.env.CLOUD_API_SECRET
})
const __filename = fileURLToPath(import.meta.url)
const __dirname = path.dirname(__filename)
// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
app.use(expressLayouts);
app.set('layout', 'layout');
app.use(session({
secret: process.env.SESSION_SECRET,
resave: false,
saveUninitialized: true,
}));
app.use(passport.initialize());
app.use(passport.session());
app.use(flash());
app.use(logger('dev'));
app.use(express.json());
app.use(express.urlencoded({ extended: false }));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));
app.use((req, res, next) => {
res.locals.error_msg = req.flash('error');
res.locals.success_msg = req.flash('success');
res.locals.user = req.user || null;
next();
});
app.use('/', indexRouter);
app.use('/products', isUserLoggedIn, productRouter);
app.use('/categories', isUserLoggedIn, categoryRouter)
app.use('/items', isUserLoggedIn, itemRouter)
// catch 404 and forward to error handler
app.use(function(req, res, next) {
next(createError(404));
});
// error handler
app.use(function(err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = req.app.get('env') === 'development' ? err : {};
// render the error page
res.status(err.status || 500);
res.render('error', { layout: false });
});
export default app;