-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
61 lines (51 loc) · 1.76 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
// app.js
"use strict";
import express from 'express';
import session from 'express-session';
import path from 'path';
import flash from 'connect-flash';
import { fileURLToPath } from 'url';
import passport from './database/passport.js';
const app = express();
const PORT = process.env.PORT || 8080;
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Configurazione di EJS
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
// Middleware per il parsing dei dati
app.use(express.urlencoded({ extended: true }));
app.use(express.json());
// Configurazione delle cartelle statiche
app.use(express.static(path.join(__dirname, 'public')));
app.use('/node_modules', express.static(path.join(__dirname, 'node_modules')));
// Configurazione delle sessioni per Passport
app.use(session({
secret: 'SkillBridge', // Cambia in produzione
resave: false,
saveUninitialized: false
}));
app.use(flash());
// Inizializzazione di Passport
app.use(passport.initialize());
app.use(passport.session());
// Middleware per i messaggi flash e l'utente corrente
app.use((req, res, next) => {
res.locals.user = req.user;
res.locals.error_msg = req.flash('error_msg');
res.locals.error = req.flash('error');
res.locals.success_msg = req.flash('success_msg');
res.locals.info_msg = req.flash('info_msg'); // Aggiunto per i messaggi info
next();
});
// Importa e monta i moduli delle rotte
import indexRoutes from './routes/index.js';
import authRoutes from './routes/auth.js';
import postsRoutes from './routes/posts.js';
app.use('/', indexRoutes);
app.use('/', authRoutes);
app.use('/posts', postsRoutes);
// Avvio del server
app.listen(PORT, () => {
console.log(`Server in ascolto sulla porta ${PORT}`);
});