mirror of
https://github.com/makeplane/plane.git
synced 2025-12-16 03:47:54 +01:00
118 lines
4.0 KiB
TypeScript
118 lines
4.0 KiB
TypeScript
// plane imports
|
|
import { API_BASE_URL } from "@plane/constants";
|
|
// local services
|
|
import type { TFileEntityInfo, TFileSignedURLResponse } from "@plane/types";
|
|
import { FileUploadService } from "./file-upload.service";
|
|
// helpers
|
|
import { FileService } from "./file.service";
|
|
import { generateFileUploadPayload, getAssetIdFromUrl, getFileMetaDataForUpload } from "./helper";
|
|
|
|
/**
|
|
* Service class for managing file operations within plane sites application.
|
|
* Extends FileService to manage file-related operations.
|
|
* @extends {FileService}
|
|
* @remarks This service is only available for plane sites
|
|
*/
|
|
export class SitesFileService extends FileService {
|
|
private cancelSource: any;
|
|
fileUploadService: FileUploadService;
|
|
|
|
/**
|
|
* Creates an instance of SitesFileService
|
|
* @param {string} BASE_URL - The base URL for API requests
|
|
*/
|
|
constructor(BASE_URL?: string) {
|
|
super(BASE_URL || API_BASE_URL);
|
|
this.cancelUpload = this.cancelUpload.bind(this);
|
|
// services
|
|
this.fileUploadService = new FileUploadService();
|
|
}
|
|
|
|
/**
|
|
* Updates the upload status of an asset
|
|
* @param {string} anchor - The anchor identifier
|
|
* @param {string} assetId - The asset identifier
|
|
* @returns {Promise<void>} Promise resolving to void
|
|
* @throws {Error} If the request fails
|
|
*/
|
|
private async updateAssetUploadStatus(anchor: string, assetId: string): Promise<void> {
|
|
return this.patch(`/api/public/assets/v2/anchor/${anchor}/${assetId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Updates the upload status of multiple assets
|
|
* @param {string} anchor - The anchor identifier
|
|
* @param {string} entityId - The entity identifier
|
|
* @param {Object} data - The data payload
|
|
* @returns {Promise<void>} Promise resolving to void
|
|
* @throws {Error} If the request fails
|
|
*/
|
|
async updateBulkAssetsUploadStatus(
|
|
anchor: string,
|
|
entityId: string,
|
|
data: {
|
|
asset_ids: string[];
|
|
}
|
|
): Promise<void> {
|
|
return this.post(`/api/public/assets/v2/anchor/${anchor}/${entityId}/bulk/`, data)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Uploads a file to the specified anchor
|
|
* @param {string} anchor - The anchor identifier
|
|
* @param {TFileEntityInfo} data - The data payload
|
|
* @param {File} file - The file to upload
|
|
* @returns {Promise<TFileSignedURLResponse>} Promise resolving to the signed URL response
|
|
* @throws {Error} If the request fails
|
|
*/
|
|
async uploadAsset(anchor: string, data: TFileEntityInfo, file: File): Promise<TFileSignedURLResponse> {
|
|
const fileMetaData = await getFileMetaDataForUpload(file);
|
|
return this.post(`/api/public/assets/v2/anchor/${anchor}/`, {
|
|
...data,
|
|
...fileMetaData,
|
|
})
|
|
.then(async (response) => {
|
|
const signedURLResponse: TFileSignedURLResponse = response?.data;
|
|
const fileUploadPayload = generateFileUploadPayload(signedURLResponse, file);
|
|
await this.fileUploadService.uploadFile(signedURLResponse.upload_data.url, fileUploadPayload);
|
|
await this.updateAssetUploadStatus(anchor, signedURLResponse.asset_id);
|
|
return signedURLResponse;
|
|
})
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Restores a new asset
|
|
* @param {string} workspaceSlug - The workspace slug
|
|
* @param {string} src - The asset source
|
|
* @returns {Promise<void>} Promise resolving to void
|
|
* @throws {Error} If the request fails
|
|
*/
|
|
async restoreNewAsset(anchor: string, src: string): Promise<void> {
|
|
// remove the last slash and get the asset id
|
|
const assetId = getAssetIdFromUrl(src);
|
|
return this.post(`/api/public/assets/v2/anchor/${anchor}/restore/${assetId}/`)
|
|
.then((response) => response?.data)
|
|
.catch((error) => {
|
|
throw error?.response?.data;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Cancels the upload
|
|
*/
|
|
cancelUpload() {
|
|
this.cancelSource.cancelUpload();
|
|
}
|
|
}
|