hrms-api-salary/src/controllers/StorageController.ts

282 lines
11 KiB
TypeScript
Raw Normal View History

2024-02-15 16:21:14 +07:00
import {
Body,
Controller,
Delete,
Example,
Get,
Patch,
Path,
Post,
Route,
2024-02-15 16:21:22 +07:00
Security,
2024-02-15 16:21:14 +07:00
SuccessResponse,
Tags,
} from "tsoa";
import HttpStatus from "../interfaces/http-status";
import {
createFile,
createFolder,
deleteFile,
deleteFolder,
downloadFile,
listFile,
updateFile,
} from "../services/edm";
@Route("api/v1/salary/file")
2024-02-15 16:21:22 +07:00
@Security("bearerAuth")
2024-02-15 16:21:14 +07:00
@Tags("Document")
export class DocumentController extends Controller {
/**
* @example id "00000000-0000-0000-0000-000000000000"
*
2024-02-15 16:23:42 +07:00
* @summary SLR_015 -
2024-02-15 16:21:14 +07:00
*/
@Get("{id}")
@SuccessResponse(200, "สำเร็จ")
@Example([
{
pathname: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000/เอกสาร 1.docx",
path: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000",
title: "เอกสาร 1",
description: "",
author: "นายก",
metadata: { tag: 1 },
keyword: [],
category: [],
fileName: "เอกสาร 1.docx",
fileType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
fileSize: 1024,
upload: true,
createdAt: "2021-07-20T12:33:13.018Z",
createdBy: "service-account-ext-api",
updatedAt: "2021-07-20T12:33:13.018Z",
updatedBy: "service-account-ext-api",
},
])
public async getFile(@Path() id: string) {
const list = await listFile(["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน", id]);
if (!list) throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์");
return list;
}
/**
* ข้อควรระวัง: หากลิงก์ยาวเกินไปอาจทำให้ไม่สามารถอัปโหลดได้
*
* @example id "00000000-0000-0000-0000-000000000000"
* @example file "เอกสาร 1.docx"
*
* @summary
*/
@Get("/{id}/{file}")
@SuccessResponse(200, "สำเร็จ")
@Example({
pathname: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000/เอกสาร 1.docx",
path: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000",
title: "เอกสาร 1",
description: "",
author: "นายก",
keyword: [],
category: [],
metadata: { tag: 1 },
fileName: "เอกสาร 1.docx",
fileType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
fileSize: 1024,
hidden: false,
upload: true,
createdAt: "2021-07-20T12:33:13.018Z",
createdBy: "service-account-ext-api",
updatedAt: "2021-07-20T12:33:13.018Z",
updatedBy: "service-account-ext-api",
downloadUrl: "https://.../...", // Presigned Download URL 7 Days Exp
})
public async getFileDownload(@Path() id: string, @Path() file: string) {
const data = await downloadFile(["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน", id], file);
if (!data) throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์");
return data;
}
/**
* ข้อควรระวัง: หากลิงก์ภาษาไทยยาวเกินไปอาจทำให้ไม่สามารถอัปโหลดได้ ( DNS)
*
* PUT Method Content-Type
* Content-Type mime-type docx application/vnd.openxmlformats-officedocument.wordprocessingml.document
* Content-Type
*
* Browser Object File attribute type mime-type
*
* title EDM title
*
* @example id "00000000-0000-0000-0000-000000000000"
*
2024-02-15 16:23:42 +07:00
* @summary SLR_013 -
2024-02-15 16:21:14 +07:00
*/
@Post("{id}")
@Example([
{
pathname: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000/เอกสาร 1.docx",
path: "ระบบเงินเดือน/00000000-0000-0000-0000-000000000000",
title: "เอกสาร 1",
description: "",
author: "นายก",
keyword: [],
category: [],
metadata: {
tag: 1,
},
fileName: "เอกสาร 1.docx",
fileSize: 0,
fileType: "",
hidden: false,
upload: false,
createdAt: "2021-07-20T12:33:13.018Z",
createdBy: "service-account-ext-api",
updatedAt: "2021-07-20T12:33:13.018Z",
updatedBy: "service-account-ext-api",
uploadUrl: "https://.../...", // Presigned Upload URL 7 Days Exp
},
])
@SuccessResponse(200, "Success")
public async uploadFile(
@Path() id: string,
@Body()
body: {
/**
* @example [
* { "fileName": "เอกสาร 1.docx" },
* { "fileName": "เอกสาร 2.docx", "title": "เอกสาร 2" }
* ]
*/
fileList: {
fileName: string;
title?: string;
description?: string;
keyword?: string[];
category?: string[];
author?: string;
metadata?: {
[key: string]: unknown;
};
}[];
/**
* @example false
*/
replace?: boolean;
},
) {
const path = ["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน", id];
2024-02-16 09:33:10 +07:00
if (!(await createFolder(path.slice(0, -1), id, true))) {
2024-02-15 16:21:14 +07:00
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ ไม่สามารถสร้างแฟ้มได้");
}
2024-02-16 09:33:10 +07:00
2024-02-15 16:21:14 +07:00
const list = await listFile(path);
if (!list || !Array.isArray(list)) {
2024-02-16 09:33:10 +07:00
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ เข้าถึงรายการไฟล์ได้");
2024-02-15 16:21:14 +07:00
}
let used: string[] = [];
let fileList = !body.replace
? body.fileList.map(({ fileName, ...props }) => {
const dotIndex = fileName.lastIndexOf(".");
const originalName =
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(0, dotIndex) : fileName;
const extension =
dotIndex !== -1 && !fileName.startsWith(".") ? fileName.slice(dotIndex) : "";
let i = 1;
while (list.findIndex((v) => v.fileName === fileName) !== -1 || used.includes(fileName)) {
fileName = `${originalName} (${i++})`;
if (dotIndex !== -1) fileName += extension;
}
props.author = "ไม่พบข้อมูล";
used.push(fileName);
return { fileName: fileName, ...props };
})
: body.fileList;
const map = fileList.map(async ({ fileName, ...props }) => [
fileName,
await createFile(path, fileName, props),
]);
const result = await Promise.all(map).catch((e) =>
console.error(`Storage Service Error: ${e}`),
);
if (!result || result.some((v) => !v[1])) {
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ ไม่สามารถอัปโหลดไฟล์ได้");
}
return Object.fromEntries(result);
}
/**
* @example id "00000000-0000-0000-0000-000000000000"
* @example file "เอกสาร 1.docx"
*
* @summary id
*/
@Patch("{id}/{file}")
public async updateFile(
@Path() id: string,
@Path() file: string,
@Body()
body: {
title?: string;
description?: string;
keyword?: string[];
category?: string[];
author?: string;
metadata?: { [key: string]: unknown };
},
) {
const props = body;
const result = await updateFile(
["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน", id],
file,
props,
);
if (!result) {
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ ไม่สามารถแก้ไขไฟล์ได้");
}
return this.setStatus(HttpStatus.NO_CONTENT);
}
/**
* @example id "00000000-0000-0000-0000-000000000000"
*
* @summary id
*/
@Delete("{id}")
public async deleteFolder(@Path() id: string) {
const result = await deleteFolder(["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน"], id);
if (!result) {
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ ไม่สามารถลบแฟ้มได้");
}
return this.setStatus(HttpStatus.NO_CONTENT);
}
/**
* @example id "00000000-0000-0000-0000-000000000000"
* @example file "เอกสาร 1.docx"
*
2024-02-15 16:23:42 +07:00
* @summary SLR_014 -
2024-02-15 16:21:14 +07:00
*/
@Delete("{id}/{file}")
public async deleteFile(@Path() id: string, @Path() file: string) {
const result = await deleteFile(["ระบบเงินเดือน", "เอกสารอ้างอิงผังเงินเดือน", id], file);
if (!result) {
throw new Error("เกิดข้อผิดพลาดกับระบบจัดการไฟล์ ไม่สามารถลบไฟล์ ได้");
}
return this.setStatus(HttpStatus.NO_CONTENT);
}
}