96 lines
2.3 KiB
TypeScript
96 lines
2.3 KiB
TypeScript
import { File } from "le-coffre-resources/dist/SuperAdmin";
|
|
import BaseSuperAdmin from "../BaseSuperAdmin";
|
|
|
|
|
|
// TODO Type get query params -> Where + inclue + orderby
|
|
export interface IGetFilesparams {
|
|
where?: {};
|
|
include?: {};
|
|
}
|
|
|
|
// TODO Type getbyuid query params
|
|
|
|
export type IPutFilesParams = {};
|
|
|
|
export interface IPostFilesParams {}
|
|
|
|
export default class Files extends BaseSuperAdmin {
|
|
private static instance: Files;
|
|
private readonly baseURl = this.namespaceUrl.concat("/files");
|
|
|
|
private constructor() {
|
|
super();
|
|
}
|
|
|
|
public static getInstance() {
|
|
return (this.instance ??= new this());
|
|
}
|
|
|
|
public async get(q: IGetFilesparams): Promise<File[]> {
|
|
const url = new URL(this.baseURl);
|
|
const query = { q };
|
|
if (q) Object.entries(query).forEach(([key, value]) => url.searchParams.set(key, JSON.stringify(value)));
|
|
try {
|
|
const files = await this.getRequest<File[]>(url);
|
|
return files;
|
|
} catch (err) {
|
|
this.onError(err);
|
|
return Promise.reject(err);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @description : Create a File
|
|
*/
|
|
public async post(body: any): Promise<File> {
|
|
const url = new URL(this.baseURl);
|
|
try {
|
|
return await this.postRequestFormData<File>(url, body);
|
|
} catch (err) {
|
|
this.onError(err);
|
|
return Promise.reject(err);
|
|
}
|
|
}
|
|
|
|
public getUploadLink(uid: string): string {
|
|
return this.baseURl.concat(`/upload/${uid}`);
|
|
}
|
|
|
|
|
|
public async getByUid(uid: string, q?: any): Promise<File> {
|
|
const url = new URL(this.baseURl.concat(`/${uid}`));
|
|
const query = { q };
|
|
if (q) Object.entries(query).forEach(([key, value]) => url.searchParams.set(key, JSON.stringify(value)));
|
|
try {
|
|
const file = await this.getRequest<File>(url);
|
|
return file;
|
|
} catch (err) {
|
|
this.onError(err);
|
|
return Promise.reject(err);
|
|
}
|
|
}
|
|
|
|
public async put(uid: string, body: IPutFilesParams): Promise<File> {
|
|
const url = new URL(this.baseURl.concat(`/${uid}`));
|
|
try {
|
|
return await this.putRequest<File>(url, body);
|
|
} catch (err) {
|
|
this.onError(err);
|
|
return Promise.reject(err);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @description : Delete a folder only if the folder don't contains customers
|
|
*/
|
|
public async delete(uid: string): Promise<File> {
|
|
const url = new URL(this.baseURl.concat(`/${uid}`));
|
|
try {
|
|
return await this.deleteRequest<File>(url);
|
|
} catch (err) {
|
|
this.onError(err);
|
|
return Promise.reject(err);
|
|
}
|
|
}
|
|
}
|