Skip to content
Snippets Groups Projects
Commit c95b6e58 authored by Travis Ralston's avatar Travis Ralston
Browse files

Limit thumbnails by content type in config

Adds #27
parent 2112af3f
No related branches found
No related tags found
No related merge requests found
......@@ -93,6 +93,15 @@ thumbnails:
- width: 800
height: 600
# The content types to thumbnail when requested. Types that are not supported by the media repo
# will not be thumbnailed (adding application/json here won't work). Clients may still not request
# thumbnails for these types - this won't make clients automatically thumbnail these file types.
types:
- "image/jpeg"
- "image/jpg"
- "image/png"
- "image/gif"
# Controls for the rate limit functionality
rateLimit:
# Set this to false if rate limiting is handled at a higher level or you don't want it enabled.
......
......@@ -38,8 +38,9 @@ type MediaRepoConfig struct {
} `yaml:"downloads"`
Thumbnails struct {
MaxSourceBytes int64 `yaml:"maxSourceBytes"`
NumWorkers int `yaml:"numWorkers"`
MaxSourceBytes int64 `yaml:"maxSourceBytes"`
NumWorkers int `yaml:"numWorkers"`
Types []string `yaml:"types,flow"`
Sizes []struct {
Width int `yaml:"width"`
Height int `yaml:"height"`
......
......@@ -14,6 +14,9 @@ import (
"github.com/turt2live/matrix-media-repo/util/errs"
)
// These are the content types that we can actually thumbnail
var supportedThumbnailTypes = []string{"image/jpeg", "image/jpg", "image/png", "image/gif"}
type thumbnailService struct {
store *stores.ThumbnailStore
ctx context.Context
......@@ -85,6 +88,16 @@ func (s *thumbnailService) GetThumbnail(media *types.Media, width int, height in
return thumb, nil
}
if !util.ArrayContains(supportedThumbnailTypes, media.ContentType) {
s.log.Warn("Cannot generate thumbnail for " + media.ContentType + " because it is not supported")
return nil, errors.New("cannot generate thumbnail for this media's content type")
}
if !util.ArrayContains(config.Get().Thumbnails.Types, media.ContentType) {
s.log.Warn("Cannot generate thumbnail for " + media.ContentType + " because it is not listed in the config")
return nil, errors.New("cannot generate thumbnail for this media's content type")
}
if media.SizeBytes > config.Get().Thumbnails.MaxSourceBytes {
s.log.Warn("Media too large to thumbnail")
return thumb, errs.ErrMediaTooLarge
......
package util
func ArrayContains(a []string, v string) (bool) {
for _, e := range a {
if e == v {
return true
}
}
return false
}
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