Rocket.Chat.ReactNative/app/utils/media.js

23 lines
768 B
JavaScript
Raw Normal View History

export const canUploadFile = (file, allowList, maxFileSize) => {
if (!(file && file.path)) {
2019-09-24 20:16:59 +00:00
return { success: true };
}
if (maxFileSize > -1 && file.size > maxFileSize) {
2019-09-24 20:16:59 +00:00
return { success: false, error: 'error-file-too-large' };
}
// if white list is empty, all media types are enabled
if (!allowList || allowList === '*') {
2019-09-24 20:16:59 +00:00
return { success: true };
}
const allowedMime = allowList.split(',');
if (allowedMime.includes(file.mime)) {
2019-09-24 20:16:59 +00:00
return { success: true };
}
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-09-24 20:16:59 +00:00
return { success: false, error: 'error-invalid-file-type' };
};