This commit is contained in:
2024-02-25 08:27:01 +08:00
commit 20c1fa08dc
279 changed files with 78489 additions and 0 deletions

20
src/services/file.ts Normal file
View File

@@ -0,0 +1,20 @@
import API from "../middleware/Api";
export async function getDownloadURL(file: any): Promise<any> {
let reqURL = "";
if (file.key) {
const downloadPath =
file.path === "/"
? file.path + file.name
: file.path + "/" + file.name;
reqURL =
"/share/download/" +
file.key +
"?path=" +
encodeURIComponent(downloadPath);
} else {
reqURL = "/file/download/" + file.id;
}
return API.put(reqURL);
}