Add product and storage management routes and database functions

This commit is contained in:
2026-05-26 13:57:37 +02:00
parent 4c0c441e92
commit b3c3be5590
8 changed files with 233 additions and 18 deletions
+64
View File
@@ -1,6 +1,70 @@
import express from "express";
import dotenv from "dotenv";
import { authenticate } from "../../services/tokenService.js";
import { allProducts, newProduct } from "./database/products.database.js";
dotenv.config();
const router = express.Router();
router.post("/new-product", authenticate, async (req, res) => {
const {
name,
description,
price,
amount,
storage_location,
expiry_date,
bottling_date,
} = req.body;
const result = await newProduct(
name,
description,
price,
amount,
storage_location,
expiry_date,
bottling_date,
);
if (result.code === "ep001") {
res.status(406).json({
success: false,
code: "ep001",
data: null,
message: "Error while creating product",
});
}
if (result.code === "sp001") {
res.status(201).json({
success: true,
code: "sp001",
data: null,
message: "",
});
}
});
router.get("/all-products", authenticate, async (req, res) => {
const result = await allProducts();
if (result.code === "ep002") {
res.status(406).json({
success: false,
code: "ep002",
data: null,
message: "Error while fetching products",
});
}
if (result.code === "sp002") {
res.status(200).json({
success: true,
code: "sp002",
data: result.data,
message: "",
});
}
});
export default router;