feat: Process generic updates (#148)
This commit is contained in:
		
							parent
							
								
									3363762487
								
							
						
					
					
						commit
						0abd531b79
					
				@ -1,28 +1,12 @@
 | 
			
		||||
import { updateGeneric } from "@/src/services/inventoryService";
 | 
			
		||||
import { IGenericUpdate } from "@/src/types/genericUpdate";
 | 
			
		||||
import { RequestHandler } from "express";
 | 
			
		||||
import { getJSONfromString } from "@/src/helpers/stringHelpers";
 | 
			
		||||
 | 
			
		||||
// TODO: Nightwave evidence submission support is the only thing missing.
 | 
			
		||||
// TODO: this was added by someone without testing.  It may not work.
 | 
			
		||||
// eslint-disable-next-line @typescript-eslint/no-misused-promises
 | 
			
		||||
const genericUpdateController: RequestHandler = async (_request, response) => {
 | 
			
		||||
    // const accountId = request.query.accountId as string;
 | 
			
		||||
 | 
			
		||||
    // const [body] = String(request.body).split("\n");
 | 
			
		||||
 | 
			
		||||
    // let reply = {};
 | 
			
		||||
    // try {
 | 
			
		||||
    //     const update = JSON.parse(body) as IGenericUpdate;
 | 
			
		||||
    //     if (typeof update !== "object") {
 | 
			
		||||
    //         throw new Error("Invalid data format");
 | 
			
		||||
    //     }
 | 
			
		||||
 | 
			
		||||
    //     reply = await updateGeneric(update, accountId);
 | 
			
		||||
    // } catch (err) {
 | 
			
		||||
    //     console.error("Error parsing JSON data:", err);
 | 
			
		||||
    // }
 | 
			
		||||
 | 
			
		||||
    response.json({});
 | 
			
		||||
const genericUpdateController: RequestHandler = async (request, response) => {
 | 
			
		||||
    const accountId = request.query.accountId as string;
 | 
			
		||||
    const update = getJSONfromString(request.body.toString());
 | 
			
		||||
   response.json(await updateGeneric(update, accountId));
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
export { genericUpdateController };
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user