-
Notifications
You must be signed in to change notification settings - Fork 0
/
reservaciones.js
45 lines (43 loc) · 1.55 KB
/
reservaciones.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
import express from "express";
import { db } from "./db.js";
import { body, param, query, validationResult } from "express-validator";
export const reservacionRouter = express
.Router()
//todas las reservaciones
.get("/", async (req, res) => {
const [rows, fields] = await db.execute(
"SELECT idReservacion, nombreCliente, telefonoCliente, fechaReservacion FROM reservacion"
);
res.send(rows);
})
//buscar reservacion por numero de id
.get("/:id", param("id").isInt({ min: 1 }), async (req, res) => {
const validacion = validationResult(req);
if (!validacion.isEmpty()) {
res.status(400).send({ errors: validacion.array() });
}
const id = req.params.id;
const [rows, fields] = await db.execute(
"SELECT idReservacion, nombreCliente, telefonoCliente, fechaReservacion FROM reservacion WHERE idReservacion = :id",
{ id }
);
if (rows.length > 0) {
res.send(rows[0]);
} else {
res.status(404).send({ mensaje: "Reservacion no encontrada" });
}
})
//buscar reservacion por nombre de cliente
.get("/:nombre", async (req, res) => {
const nombre = req.params.nombre;
const [rows, fields] = await db.execute(
"SELECT idReservacion, nombreCliente, telefonoCliente, fechaReservacion FROM reservacion WHERE nombreCliente = :nombre",
{ nombre }
);
if (rows.length > 0) {
res.send(rows[0]);
} else {
res.status(404).send({ mensaje: "Reservacion no encontrada" });
}
});
//buscar mesa con id de reservacion