2020-06-26 20:22:56 +00:00
|
|
|
export const canUploadFile = (file, allowList, maxFileSize) => {
|
2019-07-29 18:26:18 +00:00
|
|
|
if (!(file && file.path)) {
|
2019-09-24 20:16:59 +00:00
|
|
|
return { success: true };
|
2019-07-29 18:26:18 +00:00
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
if (maxFileSize > -1 && file.size > maxFileSize) {
|
2019-09-24 20:16:59 +00:00
|
|
|
return { success: false, error: 'error-file-too-large' };
|
2019-07-29 18:26:18 +00:00
|
|
|
}
|
|
|
|
// if white list is empty, all media types are enabled
|
2020-06-26 20:22:56 +00:00
|
|
|
if (!allowList || allowList === '*') {
|
2019-09-24 20:16:59 +00:00
|
|
|
return { success: true };
|
2019-07-29 18:26:18 +00:00
|
|
|
}
|
2020-06-26 20:22:56 +00:00
|
|
|
const allowedMime = allowList.split(',');
|
2019-07-29 18:26:18 +00:00
|
|
|
if (allowedMime.includes(file.mime)) {
|
2019-09-24 20:16:59 +00:00
|
|
|
return { success: true };
|
2019-07-29 18:26:18 +00:00
|
|
|
}
|
|
|
|
const wildCardGlob = '/*';
|
|
|
|
const wildCards = allowedMime.filter(item => item.indexOf(wildCardGlob) > 0);
|
2019-09-24 20:16:59 +00:00
|
|
|
if (file.mime && wildCards.includes(file.mime.replace(/(\/.*)$/, wildCardGlob))) {
|
|
|
|
return { success: true };
|
2019-07-29 18:26:18 +00:00
|
|
|
}
|
2019-09-24 20:16:59 +00:00
|
|
|
return { success: false, error: 'error-invalid-file-type' };
|
2019-07-29 18:26:18 +00:00
|
|
|
};
|