Skip to content
Snippets Groups Projects
Commit 467557e7 authored by Pavel Kardash's avatar Pavel Kardash
Browse files

Upload exclusions to specific users

parent 0f7d4a7b
No related branches found
No related tags found
No related merge requests found
...@@ -50,6 +50,15 @@ uploads: ...@@ -50,6 +50,15 @@ uploads:
allowedTypes: allowedTypes:
- "*/*" - "*/*"
# If not all file types are allowed, then you can make an exlusion for some users. So
# that users can upload file types that not allowed to others.
#exclusions:
# "@admin1:matrix.org":
# - "application/pdf"
# - "application/vnd.ms-excel"
# "@admin2:matrix.org": [*/*]
# Settings related to downloading files from the media repository # Settings related to downloading files from the media repository
downloads: downloads:
# The maximum number of bytes to download from other servers # The maximum number of bytes to download from other servers
......
...@@ -32,10 +32,11 @@ type DatabaseConfig struct { ...@@ -32,10 +32,11 @@ type DatabaseConfig struct {
} }
type UploadsConfig struct { type UploadsConfig struct {
StoragePaths []string `yaml:"storagePaths,flow"` StoragePaths []string `yaml:"storagePaths,flow"`
MaxSizeBytes int64 `yaml:"maxBytes"` MaxSizeBytes int64 `yaml:"maxBytes"`
AllowedTypes []string `yaml:"allowedTypes,flow"` AllowedTypes []string `yaml:"allowedTypes,flow"`
ReportedMaxSizeBytes int64 `yaml:"reportedMaxBytes"` AllowedExcl map[string][]string `yaml:"exclusions,flow"`
ReportedMaxSizeBytes int64 `yaml:"reportedMaxBytes"`
} }
type DownloadsConfig struct { type DownloadsConfig struct {
......
...@@ -75,10 +75,23 @@ func StoreDirect(contents io.Reader, contentType string, filename string, userId ...@@ -75,10 +75,23 @@ func StoreDirect(contents io.Reader, contentType string, filename string, userId
} }
} }
if !allowed { if !allowed {
exclusion := false
for user, userExcl := range config.Get().Uploads.AllowedExcl {
if user == userId {
for _, exclType := range userExcl {
if glob.Glob(exclType, fileMime){
exclusion = true
log.Info("Content type " + fileMime +" (reported as " + contentType+") is allowed to be uploaded as exclusion for user "+ userId)
}
}
}
}
if !exclusion {
log.Warn("Content type " + fileMime +" (reported as " + contentType+") is not allowed to be uploaded") log.Warn("Content type " + fileMime +" (reported as " + contentType+") is not allowed to be uploaded")
os.Remove(fileLocation) // delete temp file os.Remove(fileLocation) // delete temp file
return nil, common.ErrMediaNotAllowed return nil, common.ErrMediaNotAllowed
}
} }
hash, err := storage.GetFileHash(fileLocation) hash, err := storage.GetFileHash(fileLocation)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment