Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | 1x 2x 2x 1x 1x 1x 1x 1x 6x 1x 5x 5x 3x 3x 3x 1x 1x 2x 3x 3x 2x 1x | import { response } from "libs/handler-lib"; import { APIGatewayEvent } from "aws-lambda"; import { produceMessage } from "libs/api/kafka"; import { getPackage } from "libs/api/package"; import { ItemResult } from "shared-types/opensearch/main"; import { submitNOSOAdminSchema } from "./adminChangeSchemas"; import { z } from "zod"; import { getStatus } from "shared-types"; /** @typedef {object} json * @property {object} body * @property {string} body.id * @property {string} body.authority * @property {string} body.status * @property {string} body.submitterEmail * @property {string} body.submitterName * @property {string} body.adminChangeType * @property {string} body.mockEvent * @property {string} body.changeMade * @property {string} body.changeReason */ interface submitMessageType { id: string; authority: string; status: string; submitterEmail: string; submitterName: string; adminChangeType: string; stateStatus: string; cmsStatus: string; } const sendSubmitMessage = async (item: submitMessageType) => { const topicName = process.env.topicName as string; if (!topicName) { throw new Error("Topic name is not defined"); } const currentTime = Date.now(); await produceMessage( topicName, item.id, JSON.stringify({ ...item, packageId: item.id, origin: "SEATool", isAdminChange: true, adminChangeType: "NOSO", description: null, event: "NOSO", state: item.id.substring(0, 2), makoChangedDate: currentTime, changedDate: currentTime, statusDate: currentTime, timestamp: currentTime, }), ); return response({ statusCode: 200, body: { message: `${item.id} has been submitted.` }, }); }; export const handler = async (event: APIGatewayEvent) => { if (!event.body) { return response({ statusCode: 400, body: { message: "Event body required" }, }); } try { const item = submitNOSOAdminSchema.parse( typeof event.body === "string" ? JSON.parse(event.body) : event.body, ); const { stateStatus, cmsStatus } = getStatus(item.status); // check if it already exsists const currentPackage: ItemResult | undefined = await getPackage(item.id); if (currentPackage && currentPackage.found == true) { // if it exists and has origin OneMAC we shouldn't override it Eif (currentPackage._source.origin === "OneMAC") { return response({ statusCode: 400, body: { message: `Package with id: ${item.id} already exists.` }, }); } } return await sendSubmitMessage({ ...item, stateStatus, cmsStatus }); } catch (err) { console.error("Error has occured submitting package:", err); if (err instanceof z.ZodError) { return response({ statusCode: 400, body: { message: err.errors }, }); } return response({ statusCode: 500, body: { message: err.message || "Internal Server Error" }, }); } }; |