| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- import express from "express";
- import internalAccessList from "../../internal/access-list.js";
- import jwtdecode from "../../lib/express/jwt-decode.js";
- import apiValidator from "../../lib/validator/api.js";
- import validator from "../../lib/validator/index.js";
- import { express as logger } from "../../logger.js";
- import { getValidationSchema } from "../../schema/index.js";
- const router = express.Router({
- caseSensitive: true,
- strict: true,
- mergeParams: true,
- });
- /**
- * /api/nginx/access-lists
- */
- router
- .route("/")
- .options((_, res) => {
- res.sendStatus(204);
- })
- .all(jwtdecode())
- /**
- * GET /api/nginx/access-lists
- *
- * Retrieve all access-lists
- */
- .get(async (req, res, next) => {
- try {
- const data = await validator(
- {
- additionalProperties: false,
- properties: {
- expand: {
- $ref: "common#/properties/expand",
- },
- query: {
- $ref: "common#/properties/query",
- },
- },
- },
- {
- expand: typeof req.query.expand === "string" ? req.query.expand.split(",") : null,
- query: typeof req.query.query === "string" ? req.query.query : null,
- },
- );
- const rows = await internalAccessList.getAll(res.locals.access, data.expand, data.query);
- res.status(200).send(rows);
- } catch (err) {
- logger.debug(`${req.method.toUpperCase()} ${req.path}: ${err}`);
- next(err);
- }
- })
- /**
- * POST /api/nginx/access-lists
- *
- * Create a new access-list
- */
- .post(async (req, res, next) => {
- try {
- const payload = await apiValidator(getValidationSchema("/nginx/access-lists", "post"), req.body);
- const result = await internalAccessList.create(res.locals.access, payload);
- res.status(201).send(result);
- } catch (err) {
- logger.debug(`${req.method.toUpperCase()} ${req.path}: ${err}`);
- next(err);
- }
- });
- /**
- * Specific access-list
- *
- * /api/nginx/access-lists/123
- */
- router
- .route("/:list_id")
- .options((_, res) => {
- res.sendStatus(204);
- })
- .all(jwtdecode())
- /**
- * GET /api/nginx/access-lists/123
- *
- * Retrieve a specific access-list
- */
- .get(async (req, res, next) => {
- try {
- const data = await validator(
- {
- required: ["list_id"],
- additionalProperties: false,
- properties: {
- list_id: {
- $ref: "common#/properties/id",
- },
- expand: {
- $ref: "common#/properties/expand",
- },
- },
- },
- {
- list_id: req.params.list_id,
- expand: typeof req.query.expand === "string" ? req.query.expand.split(",") : null,
- },
- );
- const row = await internalAccessList.get(res.locals.access, {
- id: Number.parseInt(data.list_id, 10),
- expand: data.expand,
- });
- res.status(200).send(row);
- } catch (err) {
- logger.debug(`${req.method.toUpperCase()} ${req.path}: ${err}`);
- next(err);
- }
- })
- /**
- * PUT /api/nginx/access-lists/123
- *
- * Update and existing access-list
- */
- .put(async (req, res, next) => {
- try {
- const payload = await apiValidator(getValidationSchema("/nginx/access-lists/{listID}", "put"), req.body);
- payload.id = Number.parseInt(req.params.list_id, 10);
- const result = await internalAccessList.update(res.locals.access, payload);
- res.status(200).send(result);
- } catch (err) {
- logger.debug(`${req.method.toUpperCase()} ${req.path}: ${err}`);
- next(err);
- }
- })
- /**
- * DELETE /api/nginx/access-lists/123
- *
- * Delete and existing access-list
- */
- .delete(async (req, res, next) => {
- try {
- const result = await internalAccessList.delete(res.locals.access, {
- id: Number.parseInt(req.params.list_id, 10),
- });
- res.status(200).send(result);
- } catch (err) {
- logger.debug(`${req.method.toUpperCase()} ${req.path}: ${err}`);
- next(err);
- }
- });
- export default router;
|