The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rocket.Chat/packages/rocketchat-file-upload/globalFileRestrictions.js

26 lines
734 B

/* globals Slingshot */
import filesize from 'filesize';
Slingshot.fileRestrictions('rocketchat-uploads', {
authorize: function(file/*, metaContext*/) {
if (!RocketChat.fileUploadIsValidContentType(file.type)) {
throw new Meteor.Error(TAPi18n.__('error-invalid-file-type'));
}
var maxFileSize = RocketChat.settings.get('FileUpload_MaxFileSize');
if (maxFileSize && maxFileSize < file.size) {
throw new Meteor.Error(TAPi18n.__('File_exceeds_allowed_size_of_bytes', { size: filesize(maxFileSize) }));
}
//Deny uploads if user is not logged in.
if (!this.userId) {
throw new Meteor.Error('login-require', 'Please login before posting files');
}
return true;
},
maxSize: 0,
allowedFileTypes: null
});