更新 @kevisual/api 版本至 0.0.34,增强文件上传功能,支持 Blob 类型,新增创建文件夹和重命名功能
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kevisual/api",
|
"name": "@kevisual/api",
|
||||||
"version": "0.0.30",
|
"version": "0.0.34",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "mod.ts",
|
"main": "mod.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
@@ -62,23 +62,50 @@ export class QueryResources {
|
|||||||
const url = `${this.prefix}${filepath}`;
|
const url = `${this.prefix}${filepath}`;
|
||||||
return this.get({}, { url, method: 'GET', headers: this.header(opts?.headers, false), isText: true });
|
return this.get({}, { url, method: 'GET', headers: this.header(opts?.headers, false), isText: true });
|
||||||
}
|
}
|
||||||
async uploadFile(filepath: string, content: string, opts?: DataOpts): Promise<Result<any>> {
|
async uploadFile(filepath: string, content: string | Blob, opts?: DataOpts): Promise<Result<any>> {
|
||||||
const pathname = `${this.prefix}${filepath}`;
|
const pathname = `${this.prefix}${filepath}`;
|
||||||
const filename = path.basename(pathname);
|
const filename = path.basename(pathname);
|
||||||
const type = getContentType(filename);
|
const type = getContentType(filename);
|
||||||
const url = new URL(pathname, window.location.origin);
|
const url = new URL(pathname, window.location.origin);
|
||||||
const hash = hashContent(content);
|
const hashResult = hashContent(content);
|
||||||
|
// Blob 类型时 hashContent 返回 Promise
|
||||||
|
const hash = hashResult instanceof Promise ? await hashResult : hashResult;
|
||||||
url.searchParams.set('hash', hash);
|
url.searchParams.set('hash', hash);
|
||||||
const formData = new FormData();
|
const formData = new FormData();
|
||||||
formData.append('file', new Blob([content], { type }));
|
if (content instanceof Blob) {
|
||||||
|
formData.append('file', content);
|
||||||
|
} else {
|
||||||
|
formData.append('file', new Blob([content], { type }));
|
||||||
|
}
|
||||||
return adapter({
|
return adapter({
|
||||||
url: url.toString(),
|
url: url.toString(),
|
||||||
headers: { ...this.header(opts?.headers, false) },
|
headers: { ...this.header(opts?.headers, false) },
|
||||||
|
params: {
|
||||||
|
hash: hash,
|
||||||
|
},
|
||||||
isPostFile: true,
|
isPostFile: true,
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
body: formData,
|
body: formData,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
async createFolder(folderpath: string, opts?: DataOpts): Promise<Result<any>> {
|
||||||
|
const filepath = folderpath.endsWith('/') ? `${folderpath}keep.txt` : `${folderpath}/keep.txt`;
|
||||||
|
return this.uploadFile(filepath, '文件夹占位,其他文件不存在,文件夹不存在,如果有其他文件夹,删除当前文件夹占位文件即可', opts);
|
||||||
|
}
|
||||||
|
async rename(oldpath: string, newpath: string, opts?: DataOpts): Promise<Result<any>> {
|
||||||
|
const pathname = `${this.prefix}${oldpath}`;
|
||||||
|
const newName = `${this.prefix}${newpath}`;
|
||||||
|
const params = {
|
||||||
|
newName: newName,
|
||||||
|
};
|
||||||
|
const url = pathname
|
||||||
|
return adapter({
|
||||||
|
url,
|
||||||
|
method: 'PUT' as any,
|
||||||
|
headers: this.header(opts?.headers),
|
||||||
|
params,
|
||||||
|
});
|
||||||
|
}
|
||||||
async deleteFile(filepath: string, opts?: DataOpts): Promise<Result<any>> {
|
async deleteFile(filepath: string, opts?: DataOpts): Promise<Result<any>> {
|
||||||
const url = `${this.prefix}${filepath}`;
|
const url = `${this.prefix}${filepath}`;
|
||||||
return adapter({
|
return adapter({
|
||||||
|
|||||||
@@ -1,14 +1,40 @@
|
|||||||
import MD5 from 'crypto-js/md5';
|
import MD5 from 'crypto-js/md5';
|
||||||
|
|
||||||
export const hashContent = (str: string | Buffer): string => {
|
export const hashContent = (str: string | Blob | Buffer): Promise<string> | string => {
|
||||||
if (typeof str === 'string') {
|
if (typeof str === 'string') {
|
||||||
return MD5(str).toString();
|
return MD5(str).toString();
|
||||||
|
} else if (str instanceof Blob) {
|
||||||
|
return hashBlob(str);
|
||||||
} else if (Buffer.isBuffer(str)) {
|
} else if (Buffer.isBuffer(str)) {
|
||||||
return MD5(str.toString()).toString();
|
return MD5(str.toString()).toString();
|
||||||
}
|
}
|
||||||
console.error('hashContent error: input must be a string or Buffer');
|
console.error('hashContent error: input must be a string, Blob, or Buffer');
|
||||||
return '';
|
return '';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const hashBlob = (blob: Blob): Promise<string> => {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
const reader = new FileReader();
|
||||||
|
reader.onload = async () => {
|
||||||
|
try {
|
||||||
|
const content = reader.result;
|
||||||
|
if (typeof content === 'string') {
|
||||||
|
resolve(MD5(content).toString());
|
||||||
|
} else if (content) {
|
||||||
|
const contentString = new TextDecoder().decode(content);
|
||||||
|
resolve(MD5(contentString).toString());
|
||||||
|
} else {
|
||||||
|
reject(new Error('Empty content'));
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
console.error('hashBlob error', error);
|
||||||
|
reject(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
reader.onerror = (error) => reject(error);
|
||||||
|
reader.readAsArrayBuffer(blob);
|
||||||
|
});
|
||||||
|
};
|
||||||
export const hashFile = (file: File): Promise<string> => {
|
export const hashFile = (file: File): Promise<string> => {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const reader = new FileReader();
|
const reader = new FileReader();
|
||||||
|
|||||||
Reference in New Issue
Block a user