add overriding truncated_namespace condition for truncating paths for digital ocean

This commit is contained in:
Austin Lanari 2019-03-24 11:32:09 -07:00
parent 750de7d842
commit 6c96d68f77
1 changed files with 9 additions and 4 deletions

View File

@ -13,9 +13,14 @@ defmodule Pleroma.Uploaders.S3 do
bucket = Keyword.fetch!(config, :bucket)
bucket_with_namespace =
if namespace = Keyword.get(config, :bucket_namespace) do
cond do
truncated_namespace = Keyword.get(config, :truncated_namespace) ->
truncated_namespace
namespace = Keyword.get(config, :bucket_namespace) ->
namespace <> ":" <> bucket
else
true ->
bucket
end