-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.js
58 lines (44 loc) · 1.61 KB
/
menu.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
/**
* Questa pagina conterrà principalmente il menu
*
* /menu/:url (dove url è l'url dell'attività che ha scelto)
*/
const router = require('express').Router();
const { route } = require('.');
// importo i miei modelli
const Menu = require('../model/Menu');
const SubMenu = require('../model/SubMenu');
const Piatto = require('../model/Piatto');
const Prenotatore = require('../model/Prenotatore');
const Orari = require('../model/Orari');
const { find } = require('../model/Menu');
const { NULL } = require('mysql/lib/protocol/constants/types');
router.get('/', (req, res) => {
res.send("Menu");
});
router.get('/:url', async (req, res) => {
// menu personalizzato di ogni attività
const findMenu = await Menu.findOne({url: req.params.url});
const prenotatore = await Prenotatore.findOne({menu_id: findMenu._id});
const orari = await Orari.findOne({menu_id: findMenu._id});
if(findMenu){
if(prenotatore && orari) {
res.render('pages/menu', {
menu: findMenu,
prenotatore_present: true, prenotatore: prenotatore,
orari_present: true, orari: orari,
title: findMenu.name
});
} else {
res.render('pages/menu', {
menu: findMenu,
prenotatore_present: false, prenotatore: prenotatore,
orari_present: false, orari: orari,
title: findMenu.name
});
}
}else {
res.status(404).redirect("/home");
}
});
module.exports = router;