router.use('/crm', checkForPermissions(), crmRouter);
function checkForPermissions() {
return (req, res, next) => {
console.log('Я работаю')
const userId = getUserId(req);
db.acl.middleware(2, userId);
next();
}
}
function getUserId(req) {
if (req.user) {
console.log(req.session.passport.user)
return req.session.passport.user;
}
}
Отправляю запрос - auth.guard.ts:21
Получаю ответ - auth.guard.ts:25
Отправляю запрос - auth.guard.ts:21
configRouter.get('/detect', function( req, res) {
console.log("Запрос получил")
if ( req.isAuthenticated() ) {
res.status(200).send({ detect: true })
} else {
res.status(401).send({ detect: false })
}
})
Inventory = {
bucket: {
urlLink: 'https://vsehoztovari.ru/catalog/telezhki-dlya-uborki/telejka-uborochnaya-vedro-officeclean-professional-2-sektsii-20l-pryamougol-mehanich-otjim-sinyaya-art-260498/?gclid=Cj0KCQjws5HlBRDIARIsAOomqA1aalHjoXM4eiucCWSjEWiQqKIZ9tIYaQeoK8o9M0n9x2WERBpn8CoaAk_mEALw_wcB',
price: 2500,
expluotation: 12,
descrition: `Заказывать у Маджента, гарантии нет.`,
},
flaunder: {
urlLink: 'https://xn----7sbabh4cwadrb5e.xn--p1ai/product/71103/',
price: 430,
expluotation: 6,
descrition: 'Заказывать у Маджента'
},
mop: {
urlLink: 'https://xn----7sbabh4cwadrb5e.xn--p1ai/product/70999/',
price: 215,
expluotation: 3,
descrition: 'Заказывать у Маджента'
},
cherenok: {
urlLink: 'https://xn----7sbabh4cwadrb5e.xn--p1ai/product/36378/',
price: 230,
expluotation: 12,
descrition: 'Заказывать у Маджента'
},
glothes: {
urlLink: 'https://pack24.ru/sredstva-zashhity/perchatki-odnorazovye/perchatki-vinilovye-neopudrennye-s-100-shtupak-hans?gclid=Cj0KCQjws5HlBRDIARIsAOomqA1yMT1IPpB_KLiLNs_uM2rMLpww5OQZee7lAjbuOPt6qSxUe58PhpYaAnvHEALw_wcB',
price: 300,
expluotation: 12,
descrition: 'Дешево и много'
},
serviette: {
urlLink: 'https://xn----7sbabh4cwadrb5e.xn--p1ai/product/41727/',
price: 1650/5,
expluotation: 12,
descrition: 'В пачке 5 штук, 1 штука на человека'
},
microfibra: {
urlLink: 'https://xn----7sbabh4cwadrb5e.xn--p1ai/product/53339/',
price: 92,
expluotation: 6,
descrition: 'На всякие нужды, 4 штуки в пачке'
}
}