|
|
|
|
@ -1,20 +1,25 @@
|
|
|
|
|
import { fileTypeFromBlob } from '@vben/utils';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* TODO: file-upload暂时使用 需要进行重构
|
|
|
|
|
* 不支持txt文件 @see https://github.com/sindresorhus/file-type/issues/55
|
|
|
|
|
* 需要自行修改
|
|
|
|
|
* @param file file对象
|
|
|
|
|
* @param accepts 文件类型数组 包括拓展名(不带点) 文件头(image/png等 不包括泛写法即image/*)
|
|
|
|
|
* @returns 是否通过文件类型校验
|
|
|
|
|
*/
|
|
|
|
|
export function checkFileType(file: File, accepts: string[]) {
|
|
|
|
|
let reg;
|
|
|
|
|
if (!accepts || accepts.length === 0) {
|
|
|
|
|
reg = /.(?:jpg|jpeg|png|gif|webp)$/i;
|
|
|
|
|
} else {
|
|
|
|
|
const newTypes = accepts.join('|');
|
|
|
|
|
reg = new RegExp(`${String.raw`\.(` + newTypes})$`, 'i');
|
|
|
|
|
export async function checkFileType(file: File, accepts: string[]) {
|
|
|
|
|
if (!accepts || accepts?.length === 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return reg.test(file.name);
|
|
|
|
|
console.log(file);
|
|
|
|
|
const fileType = await fileTypeFromBlob(file);
|
|
|
|
|
if (!fileType) {
|
|
|
|
|
console.error('无法获取文件类型');
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
console.log('文件类型', fileType);
|
|
|
|
|
// 是否文件拓展名/文件头任意有一个匹配
|
|
|
|
|
return accepts.includes(fileType.ext) || accepts.includes(fileType.mime);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|