html: add policy which transforms inline images to pass through the media proxy
authorWilliam Pitcock <nenolod@dereferenced.org>
Sun, 16 Sep 2018 02:07:32 +0000 (02:07 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Sun, 16 Sep 2018 02:16:16 +0000 (02:16 +0000)
lib/pleroma/html.ex

index 1eb0fdc000c12b514dfd3d26c03e778b73697b42..ab62dd1da27062356648a1bd99bdb7962ef8dd9d 100644 (file)
@@ -142,3 +142,34 @@ defmodule Pleroma.HTML.Scrubber.Default do
 
   Meta.strip_everything_not_covered()
 end
+
+defmodule Pleroma.HTML.Transform.MediaProxy do
+  @moduledoc "Transforms inline image URIs to use MediaProxy."
+
+  alias Pleroma.Web.MediaProxy
+
+  def before_scrub(html), do: html
+
+  def scrub_attribute("img", {"src", "http" <> target}) do
+    media_url =
+      ("http" <> target)
+      |> MediaProxy.url()
+
+    {"src", media_url}
+  end
+
+  def scrub_attribute(tag, attribute), do: attribute
+
+  def scrub({"img", attributes, children}) do
+    attributes =
+      attributes
+      |> Enum.map(fn attr -> scrub_attribute("img", attr) end)
+      |> Enum.reject(&is_nil(&1))
+
+    {"img", attributes, children}
+  end
+
+  def scrub({tag, attributes, children}), do: {tag, attributes, children}
+  def scrub({tag, children}), do: children
+  def scrub(text), do: text
+end