Fix regression in MediaProxy.local?/0 and appending the Upload.base_url to whiteliste...
[akkoma] / lib / pleroma / web / media_proxy.ex
index 2793cabc1d405ed3bbe00730168f566a37e9b744..1dab35d2ca952d749e0ccf866d8a295cd90b2369 100644 (file)
@@ -69,10 +69,12 @@ defmodule Pleroma.Web.MediaProxy do
   #   non-local non-whitelisted URLs through it and be sure that body size constraint is preserved.
   def preview_enabled?, do: enabled?() and !!Config.get([:media_preview_proxy, :enabled])
 
-  def local?(url), do: String.starts_with?(url, Pleroma.Web.base_url())
+  def local?(url), do: String.starts_with?(url, Web.base_url())
 
   def whitelisted?(url) do
     %{host: domain} = URI.parse(url)
+    %{host: web_domain} = Web.base_url() |> URI.parse()
+    %{host: upload_domain} = Upload.base_url() |> URI.parse()
 
     mediaproxy_whitelist_domains =
       [:media_proxy, :whitelist]
@@ -80,11 +82,10 @@ defmodule Pleroma.Web.MediaProxy do
       |> Enum.map(&maybe_get_domain_from_url/1)
 
     whitelist_domains =
-      if base_url = Config.get([Upload, :base_url]) do
-        %{host: base_domain} = URI.parse(base_url)
-        [base_domain | mediaproxy_whitelist_domains]
-      else
+      if web_domain == upload_domain do
         mediaproxy_whitelist_domains
+      else
+        [upload_domain | mediaproxy_whitelist_domains]
       end
 
     domain in whitelist_domains