69 lines
1.9 KiB
JavaScript
69 lines
1.9 KiB
JavaScript
import { createContainer } from "../../../actions/azurestorage";
|
|
import { hashAPIPath } from "../../../actions/core/hash";
|
|
import { consoleLogger } from "../../../actions/core/logger";
|
|
import { respondError, respondSuccess } from "../middleware/apiResponse";
|
|
|
|
import middleware from "../middleware/middleware";
|
|
import nextConnect from "next-connect";
|
|
|
|
const ApiProxy = nextConnect();
|
|
ApiProxy.use(middleware);
|
|
|
|
ApiProxy.get(async (req, res) => {
|
|
const containerName = req.query.ident;
|
|
const checkHash = req.query.hash;
|
|
|
|
if (
|
|
typeof containerName === "undefined" ||
|
|
containerName.length === 0 ||
|
|
typeof checkHash === "undefined" ||
|
|
checkHash.length === 0
|
|
) {
|
|
return respondError(res, {
|
|
status: 400,
|
|
code: "MISSING_REQUIRED_QUERY",
|
|
message: "ident and hash are required"
|
|
});
|
|
}
|
|
|
|
const containerNameTrimmed = containerName.trim();
|
|
|
|
const hashCandidatePaths = [
|
|
"/api/file/setupcontainer?ident=" + containerNameTrimmed,
|
|
"/api/file/setupcontainer?ident=" +
|
|
encodeURIComponent(containerNameTrimmed)
|
|
];
|
|
|
|
const isHashValid = hashCandidatePaths.some(
|
|
(candidatePath) => hashAPIPath(candidatePath) == "&hash=" + checkHash
|
|
);
|
|
|
|
if (!isHashValid) {
|
|
return respondError(res, {
|
|
status: 400,
|
|
code: "INVALID_HASH",
|
|
message: "Invalid hash"
|
|
});
|
|
}
|
|
|
|
try {
|
|
const data = await createContainer(containerNameTrimmed);
|
|
return respondSuccess(res, { data: "success", output: data });
|
|
} catch (error) {
|
|
consoleLogger(error);
|
|
return respondError(res, {
|
|
status: 400,
|
|
code: "SETUP_CONTAINER_FAILED",
|
|
message: "Failed to setup container"
|
|
});
|
|
}
|
|
});
|
|
|
|
export const config = {
|
|
api: {
|
|
bodyParser: false
|
|
}
|
|
};
|
|
|
|
export default ApiProxy;
|