Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
no media repo == no path checks
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkowl committed Apr 29, 2019
1 parent 25256f9 commit 1d5cf66
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions synapse/config/repository.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,18 @@ def parse_thumbnail_requirements(thumbnail_sizes):

class ContentRepositoryConfig(Config):
def read_config(self, config):
self.enable_media_repo = config.get("enable_media_repo", True)

self.max_upload_size = self.parse_size(config.get("max_upload_size", "10M"))
self.max_image_pixels = self.parse_size(config.get("max_image_pixels", "32M"))
self.max_spider_size = self.parse_size(config.get("max_spider_size", "10M"))

self.media_store_path = self.ensure_directory(config["media_store_path"])
if self.enable_media_repo:
self.media_store_path = self.ensure_directory(config["media_store_path"])
self.uploads_path = self.ensure_directory(config["uploads_path"])
else:
self.media_store_path = None
self.uploads_path = None

backup_media_store_path = config.get("backup_media_store_path")

Expand Down Expand Up @@ -168,7 +175,6 @@ def read_config(self, config):
(provider_class, parsed_config, wrapper_config,)
)

self.uploads_path = self.ensure_directory(config["uploads_path"])
self.dynamic_thumbnails = config.get("dynamic_thumbnails", False)
self.thumbnail_requirements = parse_thumbnail_requirements(
config.get("thumbnail_sizes", DEFAULT_THUMBNAIL_SIZES),
Expand Down

0 comments on commit 1d5cf66

Please sign in to comment.