add check on document status
This commit is contained in:
parent
8ee7d9b9ba
commit
7080840e60
@ -8,11 +8,13 @@ import { Document } from "le-coffre-resources/dist/Customer";
|
|||||||
import authHandler from "@App/middlewares/AuthHandler";
|
import authHandler from "@App/middlewares/AuthHandler";
|
||||||
import documentHandler from "@App/middlewares/CustomerHandler/DocumentHandler";
|
import documentHandler from "@App/middlewares/CustomerHandler/DocumentHandler";
|
||||||
import { validateOrReject } from "class-validator";
|
import { validateOrReject } from "class-validator";
|
||||||
|
import OfficeFoldersService from "@Services/super-admin/OfficeFoldersService/OfficeFoldersService";
|
||||||
|
import { OfficeFolder } from "le-coffre-resources/dist/Notary";
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
@Service()
|
@Service()
|
||||||
export default class DocumentsController extends ApiController {
|
export default class DocumentsController extends ApiController {
|
||||||
constructor(private documentsService: DocumentsService) {
|
constructor(private documentsService: DocumentsService, private officeFoldersService: OfficeFoldersService) {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,8 +95,23 @@ export default class DocumentsController extends ApiController {
|
|||||||
protected async post(req: Request, response: Response) {
|
protected async post(req: Request, response: Response) {
|
||||||
try {
|
try {
|
||||||
//init Document resource with request body values
|
//init Document resource with request body values
|
||||||
const documentEntity = Document.hydrate<Document>(req.body);
|
const documentEntity = Document.hydrate<Document>(req.body);
|
||||||
|
if(!documentEntity.folder?.uid) {
|
||||||
|
this.httpBadRequest(response, "No folder uid provided");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const folder = await this.officeFoldersService.getByUid(documentEntity.folder.uid, {folder_anchor: true});
|
||||||
|
if(!folder) {
|
||||||
|
this.httpBadRequest(response, "Folder not found");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const folderEntity = OfficeFolder.hydrate<OfficeFolder>(folder);
|
||||||
|
if (folderEntity.folder_anchor?.status === "VERIFIED_ON_CHAIN") {
|
||||||
|
this.httpBadRequest(response, "Cannot update a verified folder");
|
||||||
|
return;
|
||||||
|
}
|
||||||
//validate document
|
//validate document
|
||||||
await validateOrReject(documentEntity, { groups: ["createDocument"], forbidUnknownValues: false });
|
await validateOrReject(documentEntity, { groups: ["createDocument"], forbidUnknownValues: false });
|
||||||
|
|
||||||
|
@ -6,19 +6,16 @@ import FilesService from "@Services/common/FilesService/FilesService";
|
|||||||
import { Files, Prisma } from "@prisma/client";
|
import { Files, Prisma } from "@prisma/client";
|
||||||
import { File } from "le-coffre-resources/dist/Customer";
|
import { File } from "le-coffre-resources/dist/Customer";
|
||||||
import { Document } from "le-coffre-resources/dist/Customer";
|
import { Document } from "le-coffre-resources/dist/Customer";
|
||||||
import { validateOrReject } from "class-validator";
|
|
||||||
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
||||||
import authHandler from "@App/middlewares/AuthHandler";
|
import authHandler from "@App/middlewares/AuthHandler";
|
||||||
import fileHandler from "@App/middlewares/CustomerHandler/FileHandler";
|
import fileHandler from "@App/middlewares/CustomerHandler/FileHandler";
|
||||||
import DocumentTypesService from "@Services/super-admin/DocumentTypesService/DocumentTypesService";
|
|
||||||
import { DocumentType } from "le-coffre-resources/dist/SuperAdmin";
|
|
||||||
import ObjectHydrate from "@Common/helpers/ObjectHydrate";
|
|
||||||
import NotificationBuilder from "@Common/notifications/NotificationBuilder";
|
import NotificationBuilder from "@Common/notifications/NotificationBuilder";
|
||||||
|
import { validateOrReject } from "class-validator";
|
||||||
|
|
||||||
@Controller()
|
@Controller()
|
||||||
@Service()
|
@Service()
|
||||||
export default class FilesController extends ApiController {
|
export default class FilesController extends ApiController {
|
||||||
constructor(private filesService: FilesService, private documentService: DocumentsService, private documentTypesService : DocumentTypesService, private notificationBuilder : NotificationBuilder) {
|
constructor(private filesService: FilesService, private documentService: DocumentsService, private notificationBuilder : NotificationBuilder) {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -93,7 +90,12 @@ export default class FilesController extends ApiController {
|
|||||||
const fileEntity = File.hydrate<File>(JSON.parse(req.body["q"]));
|
const fileEntity = File.hydrate<File>(JSON.parse(req.body["q"]));
|
||||||
|
|
||||||
//validate File
|
//validate File
|
||||||
// await validateOrReject(fileEntity, { groups: ["createFile"] });
|
try {
|
||||||
|
await validateOrReject(fileEntity, { groups: ["createFile"] });
|
||||||
|
} catch (error) {
|
||||||
|
this.httpBadRequest(response, error);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
//call service to get prisma entity
|
//call service to get prisma entity
|
||||||
const fileEntityCreated = await this.filesService.create(fileEntity, req.file);
|
const fileEntityCreated = await this.filesService.create(fileEntity, req.file);
|
||||||
@ -111,6 +113,7 @@ export default class FilesController extends ApiController {
|
|||||||
strategy: "excludeAll",
|
strategy: "excludeAll",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
//success
|
//success
|
||||||
this.httpCreated(response, fileEntityHydrated);
|
this.httpCreated(response, fileEntityHydrated);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@ -226,52 +229,4 @@ export default class FilesController extends ApiController {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @description Create a new File
|
|
||||||
* @returns File created
|
|
||||||
*/
|
|
||||||
@Post("/api/v1/customer/addPersonalFile", [authHandler, fileHandler])
|
|
||||||
protected async addPersonalFile(req: Request, response: Response) {
|
|
||||||
try {
|
|
||||||
//get file
|
|
||||||
if (!req.file) throw new Error("No file provided");
|
|
||||||
|
|
||||||
//init File resource with request body values
|
|
||||||
const fileEntity = File.hydrate<File>(JSON.parse(req.body["q"]));
|
|
||||||
|
|
||||||
const documentTypeEntities = await this.documentTypesService.get({ where: { name: "Other"} });
|
|
||||||
const documentTypeEntity = documentTypeEntities[0];
|
|
||||||
const documentType = ObjectHydrate.hydrate<DocumentType>(new DocumentType(), documentTypeEntity!, { strategy: "excludeAll" });
|
|
||||||
|
|
||||||
const documentEntity = Document.hydrate<Document>({document_type: documentType});
|
|
||||||
await validateOrReject(documentEntity, { groups: ["createDocument"], forbidUnknownValues: false });
|
|
||||||
const documentEntityCreated = await this.documentService.create(documentEntity);
|
|
||||||
|
|
||||||
const document = Document.hydrate<Document>(documentEntityCreated, {
|
|
||||||
strategy: "excludeAll",
|
|
||||||
});
|
|
||||||
|
|
||||||
fileEntity.document = document;
|
|
||||||
|
|
||||||
const fileEntityCreated = await this.filesService.create(fileEntity, req.file);
|
|
||||||
|
|
||||||
const documentToUpdate = Document.hydrate<Document>(document!);
|
|
||||||
|
|
||||||
documentToUpdate!.document_status = "DEPOSITED";
|
|
||||||
await this.documentService.update(document!.uid!, documentToUpdate);
|
|
||||||
|
|
||||||
//Hydrate ressource with prisma entity
|
|
||||||
const fileEntityHydrated = File.hydrate<File>(fileEntityCreated, {
|
|
||||||
strategy: "excludeAll",
|
|
||||||
});
|
|
||||||
|
|
||||||
//success
|
|
||||||
this.httpCreated(response, fileEntityHydrated);
|
|
||||||
|
|
||||||
} catch (error) {
|
|
||||||
this.httpBadRequest(response, error);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -122,11 +122,11 @@ export default class OfficeFoldersController extends ApiController {
|
|||||||
|
|
||||||
//init OfficeFolder resource with request body values
|
//init OfficeFolder resource with request body values
|
||||||
const officefolderToUpdate = OfficeFolder.hydrate<OfficeFolder>(req.body);
|
const officefolderToUpdate = OfficeFolder.hydrate<OfficeFolder>(req.body);
|
||||||
const officeFolderFoundRessource = OfficeFolder.hydrate<OfficeFolder>(officeFolderFound);
|
const officeFolderFoundEntity = OfficeFolder.hydrate<OfficeFolder>(officeFolderFound);
|
||||||
//validate folder
|
//validate folder
|
||||||
await validateOrReject(officefolderToUpdate, { groups: ["updateFolder"], forbidUnknownValues: false });
|
await validateOrReject(officefolderToUpdate, { groups: ["updateFolder"], forbidUnknownValues: false });
|
||||||
|
|
||||||
if (officeFolderFoundRessource.folder_anchor?.status === "VERIFIED_ON_CHAIN") {
|
if (officeFolderFoundEntity.folder_anchor?.status === "VERIFIED_ON_CHAIN") {
|
||||||
this.httpBadRequest(response, "Cannot update a verified folder");
|
this.httpBadRequest(response, "Cannot update a verified folder");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import HttpCodes from "@Common/system/controller-pattern/HttpCodes";
|
import HttpCodes from "@Common/system/controller-pattern/HttpCodes";
|
||||||
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
||||||
|
import Document from "le-coffre-resources/dist/SuperAdmin/Document";
|
||||||
import { NextFunction, Request, Response } from "express";
|
import { NextFunction, Request, Response } from "express";
|
||||||
import Container from "typedi";
|
import Container from "typedi";
|
||||||
|
|
||||||
@ -14,15 +15,27 @@ export default async function documentHandler(req: Request, response: Response,
|
|||||||
}
|
}
|
||||||
|
|
||||||
const documentService = Container.get(DocumentsService);
|
const documentService = Container.get(DocumentsService);
|
||||||
const document = await documentService.getByUid(uid);
|
const document = await documentService.getByUid(uid, { folder: { include: { folder_anchor: true } } });
|
||||||
|
|
||||||
|
if (!document) {
|
||||||
|
response.status(HttpCodes.NOT_FOUND).send("Document not found");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (document?.depositor_uid != customerId) {
|
if (document?.depositor_uid != customerId) {
|
||||||
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (req.method === "POST" || req.method === "PUT") {
|
||||||
|
const documentEntity = Document.hydrate<Document>(document);
|
||||||
|
if (documentEntity.folder?.folder_anchor?.status === "VERIFIED_ON_CHAIN") {
|
||||||
|
response.status(HttpCodes.BAD_REQUEST).send("Cannot update a verified folder");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
next();
|
next();
|
||||||
|
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
response.status(HttpCodes.INTERNAL_ERROR).send("Internal server error");
|
response.status(HttpCodes.INTERNAL_ERROR).send("Internal server error");
|
||||||
|
@ -1,15 +1,17 @@
|
|||||||
import HttpCodes from "@Common/system/controller-pattern/HttpCodes";
|
import HttpCodes from "@Common/system/controller-pattern/HttpCodes";
|
||||||
import FilesService from "@Services/common/FilesService/FilesService";
|
import FilesService from "@Services/common/FilesService/FilesService";
|
||||||
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
import DocumentsService from "@Services/customer/DocumentsService/DocumentsService";
|
||||||
|
import File from "le-coffre-resources/dist/SuperAdmin/File";
|
||||||
import { NextFunction, Request, Response } from "express";
|
import { NextFunction, Request, Response } from "express";
|
||||||
import Container from "typedi";
|
import Container from "typedi";
|
||||||
|
import { EDocumentStatus } from "@prisma/client";
|
||||||
|
|
||||||
export default async function fileHandler(req: Request, response: Response, next: NextFunction) {
|
export default async function fileHandler(req: Request, response: Response, next: NextFunction) {
|
||||||
const customerId = req.body.user.customerId;
|
const customerId = req.body.user.customerId;
|
||||||
const uid = req.path && req.path.split("/")[5];
|
const uid = req.path && req.path.split("/")[5];
|
||||||
const document = req.body.document;
|
const file: string | undefined = req.body["q"];
|
||||||
|
|
||||||
if (req.file?.mimetype !== "application/pdf" && req.file?.mimetype !== "image/png" && req.file?.mimetype !== "image/jpeg") {
|
if (req.file && req.file.mimetype !== "application/pdf" && req.file.mimetype !== "image/png" && req.file.mimetype !== "image/jpeg") {
|
||||||
response.status(HttpCodes.BAD_REQUEST).send("File type not supported");
|
response.status(HttpCodes.BAD_REQUEST).send("File type not supported");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -25,12 +27,18 @@ export default async function fileHandler(req: Request, response: Response, next
|
|||||||
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (req.method === "PUT") {
|
||||||
|
if (file.document.document_status === EDocumentStatus.VALIDATED) {
|
||||||
|
response.status(HttpCodes.BAD_REQUEST).send("Cannot update a validated document");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if (file) {
|
||||||
if (document) {
|
const fileEntity = File.hydrate<File>(JSON.parse(file));
|
||||||
const documentService = Container.get(DocumentsService);
|
const documentService = Container.get(DocumentsService);
|
||||||
const documentFound = await documentService.getByUid(document.uid!);
|
const documentFound = await documentService.getByUid(fileEntity.document?.uid!, { folder: { include: { folder_anchor: true } } });
|
||||||
if(!documentFound) {
|
if (!documentFound) {
|
||||||
response.status(HttpCodes.NOT_FOUND).send("Document not found");
|
response.status(HttpCodes.NOT_FOUND).send("Document not found");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -38,6 +46,10 @@ export default async function fileHandler(req: Request, response: Response, next
|
|||||||
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
response.status(HttpCodes.UNAUTHORIZED).send("Not authorized with this depositor");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (documentFound.document_status === EDocumentStatus.VALIDATED) {
|
||||||
|
response.status(HttpCodes.BAD_REQUEST).send("Cannot update a validated document");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
next();
|
next();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user