aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/App.pm
diff options
context:
space:
mode:
authorDave Arter <davea@mysociety.org>2018-09-26 16:37:40 +0100
committerDave Arter <davea@mysociety.org>2018-09-28 16:19:47 +0100
commit561e01b9b51b62e2566d80cd63d308f9a4f82822 (patch)
treea5f5a9254e3c3f1536a7300b45582ad2ceae51d8 /perllib/FixMyStreet/App.pm
parent9b2b8675f6dfa22c45d609349f97730a33c975d3 (diff)
Factor out photo storage backend init checks
Diffstat (limited to 'perllib/FixMyStreet/App.pm')
-rw-r--r--perllib/FixMyStreet/App.pm17
1 files changed, 4 insertions, 13 deletions
diff --git a/perllib/FixMyStreet/App.pm b/perllib/FixMyStreet/App.pm
index afc8bd918..051308920 100644
--- a/perllib/FixMyStreet/App.pm
+++ b/perllib/FixMyStreet/App.pm
@@ -10,6 +10,7 @@ use Memcached;
use FixMyStreet::Map;
use FixMyStreet::Email;
use FixMyStreet::Email::Sender;
+use FixMyStreet::PhotoStorage;
use Utils;
use Path::Tiny 'path';
@@ -128,19 +129,9 @@ after 'prepare_headers' => sub {
__PACKAGE__->log->disable('debug') #
unless __PACKAGE__->debug;
-# Check upload_dir
-# TODO: Should this check be part of PhotoStorage::FileSystem?
-if (
- FixMyStreet->config('PHOTO_STORAGE_BACKEND') eq 'FileSystem' ||
- !defined FixMyStreet->config('PHOTO_STORAGE_BACKEND') # Backwards compatibility
- ) {
- my $cache_dir = FixMyStreet->config('PHOTO_STORAGE_OPTIONS')->{UPLOAD_DIR}
- || FixMyStreet->config('UPLOAD_DIR');
- $cache_dir = path($cache_dir)->absolute(FixMyStreet->path_to());
- $cache_dir->mkpath;
- unless ( -d $cache_dir && -w $cache_dir ) {
- warn "\x1b[31mCan't find/write to photo cache directory '$cache_dir'\x1b[0m\n";
- }
+# Set up photo storage
+unless ( FixMyStreet::PhotoStorage::backend->init() ) {
+ warn "\x1b[31mCan't set up photo storage backend\x1b[0m\n";
}
=head1 NAME