2023-11-01 02:01:18 +00:00
|
|
|
const express = require('express');
|
|
|
|
const mongodb = require('mongodb')
|
|
|
|
const bcrypt = require('bcryptjs');
|
|
|
|
|
|
|
|
const db = require('../data/database');
|
|
|
|
|
|
|
|
const router = express.Router();
|
|
|
|
|
|
|
|
router.post('/creerPost', async function (req,res) {
|
|
|
|
const postData = req.body;
|
|
|
|
const enteredTitre = postData.titre;
|
|
|
|
const enteredCommentaire = postData.commentairePost;
|
|
|
|
const post ={
|
|
|
|
titre: enteredTitre,
|
|
|
|
commentaire: enteredCommentaire,
|
|
|
|
isFinish: false,
|
|
|
|
}
|
|
|
|
await db.getDb().collection('posts').insertOne(post);
|
|
|
|
})
|
|
|
|
|
2023-11-01 16:33:25 +00:00
|
|
|
router.get('/hotLine', async function (req,res) {
|
|
|
|
if (!req.session.isAuthenticated) {
|
|
|
|
return res.status(401).render('401');
|
|
|
|
}
|
|
|
|
const postData = await db.getDb().collection('posts').find().toArray();
|
2023-11-01 02:01:18 +00:00
|
|
|
res.render('hotLine', {postData: postData})
|
|
|
|
})
|
|
|
|
|
|
|
|
router.post('/commandeCrepe', async function (req, res) {
|
|
|
|
const crepeData = req.body;
|
|
|
|
const enteredCommentaire = crepeData.commentaire;
|
|
|
|
const enteredGarniture = crepeData.garniture;
|
|
|
|
|
|
|
|
const crepeCommande = {
|
|
|
|
garniture: enteredGarniture,
|
|
|
|
commentaire: enteredCommentaire,
|
|
|
|
finish: false
|
|
|
|
}
|
|
|
|
await db.getDb().collection('commande').insertOne(crepeCommande);
|
|
|
|
res.redirect("/hotLine");
|
|
|
|
})
|
|
|
|
|
|
|
|
module.exports = router;
|