/** * @swagger * /api/file/getbloblist: * get: * tags: [Azure Storage] * summary: Phase 2 * description: Basic search documents details * parameters: * - name: container * in: query * required: true * example: cl761h97h0008h11ycmu2qyfo * schema: * type: string * - name: casefolderID * in: query * required: true * example: TMP-AYJHX-SNW1H5 * schema: * type: string * - name: hash * in: query * required: true * example: 372c59f86d62b57cc2a7981eeee7737c944d407c6a7f2ea9d85797bbfe9852c5 * schema: * type: string * responses: * 200: * description: Success */ import { hashAPIPath } from "../../../actions/core/hash"; import { getBlobs, getRepsFilesBlobs } from "../../../actions/azurestorage"; import nextConnect from "next-connect"; import middleware from "../middleware/middleware"; const ApiProxy = nextConnect(); ApiProxy.use(middleware); ApiProxy.get(async (req, res) => { var containerName = req.query.container; var casefolderID = req.query.casefolderID; var checkHash = req.query.hash; if ( typeof containerName === "undefined" || containerName.length === 0 || typeof casefolderID === "undefined" || casefolderID.length === 0 || typeof checkHash === "undefined" || checkHash.length === 0 ) { return res.status(400).json(); } var checkquerypath = "/api/file/getbloblist?container=" + containerName + "&casefolderID=" + casefolderID; if (hashAPIPath(checkquerypath) != "&hash=" + checkHash) { return res.status(400).json(); } if (hashAPIPath(checkquerypath) == "&hash=" + checkHash) { casefolderID.split("/").length > 1 ? await getRepsFilesBlobs( containerName, casefolderID.split("/")[0], casefolderID.split("/")[1] ).then((data) => { return res.status(200).json({ "value": [data] }); }) : await getBlobs(containerName, casefolderID).then((data) => { return res.status(200).json({ "value": [data] }); }); } }); export const config = { api: { bodyParser: false } }; export default ApiProxy;