Add opengraph/twitter_card:summary support. Add config to toggle on/off specific...
authorraeno <just.raeno@gmail.com>
Wed, 12 Dec 2018 19:37:00 +0000 (22:37 +0300)
committerraeno <just.raeno@gmail.com>
Thu, 13 Dec 2018 21:17:53 +0000 (22:17 +0100)
config/config.exs
lib/pleroma/web/ostatus/ostatus.ex
lib/pleroma/web/ostatus/ostatus_controller.ex

index 1401b0a3dadabe90c276c04b97df163aee154c11..ad4b79f54a81d41f69a00d7e543b027decc3ce99 100644 (file)
@@ -171,6 +171,10 @@ config :pleroma, :gopher,
   ip: {0, 0, 0, 0},
   port: 9999
 
+config :pleroma, :metadata,
+  oembed: false,
+  opengraph: true
+
 config :pleroma, :suggestions,
   enabled: false,
   third_party_engine:
index 0f6756d163aa8ccb01f7c0b3a4ce47ef4315cc92..73cdd38373548a1b45c58cd0bf1d026e50ab9de0 100644 (file)
@@ -5,11 +5,12 @@ defmodule Pleroma.Web.OStatus do
   import Pleroma.Web.XML
   require Logger
 
-  alias Pleroma.{Repo, User, Web, Object, Activity}
+  alias Pleroma.{Repo, User, Web, Object, Activity, Formatter}
   alias Pleroma.Web.ActivityPub.ActivityPub
-  alias Pleroma.Web.{WebFinger, Websub}
+  alias Pleroma.Web.{WebFinger, Websub, MediaProxy}
   alias Pleroma.Web.OStatus.{FollowHandler, UnfollowHandler, NoteHandler, DeleteHandler}
   alias Pleroma.Web.ActivityPub.Transmogrifier
+  alias Phoenix.HTML
 
   def is_representable?(%Activity{data: data}) do
     object = Object.normalize(data["object"])
@@ -26,14 +27,59 @@ defmodule Pleroma.Web.OStatus do
     end
   end
 
-  def metadata(url), do: oembed_links(url)
+  def metadata(activity, user, url) do
+    Enum.concat([
+      if(meta_enabled?(:opengraph), do: opengraph_tags(activity, user), else: []),
+      if(meta_enabled?(:oembed), do: oembed_links(url), else: [])
+    ])
+    |> Enum.map(&to_tag/1)
+    |> Enum.map(&HTML.safe_to_string/1)
+    |> Enum.join("\n")
+  end
+
+  def meta_enabled?(type) do
+    config = Pleroma.Config.get(:metadata, [])
+    Keyword.get(config, type, false)
+  end
+
+  def to_tag(data) do
+    with {name, attrs, _content = []} <- data do
+      HTML.Tag.tag(name, attrs)
+    else
+      {name, attrs, content} ->
+        HTML.Tag.content_tag(name, content, attrs)
+
+      _ ->
+        raise ArgumentError, message: "make_tag invalid args"
+    end
+  end
 
   def oembed_links(url) do
     Enum.map(["xml", "json"], fn format ->
-      href = oembed_path(url, format)
-      "<link rel=\"alternate\" type=\"application/#{format}+oembed\" href=\"#{href}\">"
+      href = HTML.raw(oembed_path(url, format))
+      { :link, [ type: ["application/#{format}+oembed"], href: href, rel: 'alternate'], [] }
     end)
-    |> Enum.join("\r\n")
+  end
+
+  def opengraph_tags(activity, user) do
+    with image = User.avatar_url(user) |> MediaProxy.url(),
+         truncated_content = Formatter.truncate(activity.data["object"]["content"]),
+         domain = Pleroma.Config.get([:instance, :domain], "UNKNOWN_DOMAIN") do
+      [
+        {:meta,
+          [
+            property: "og:title",
+            content: "#{user.name} (@#{user.nickname}@#{domain}) post ##{activity.id}"
+          ], []},
+        {:meta, [property: "og:url", content: activity.data["id"]], []},
+        {:meta, [property: "og:description", content: truncated_content],
+          []},
+        {:meta, [property: "og:image", content: image], []},
+        {:meta, [property: "og:image:width", content: 120], []},
+        {:meta, [property: "og:image:height", content: 120], []},
+        {:meta, [property: "twitter:card", content: "summary"], []}
+      ]
+    end
   end
 
   def feed_path(user) do
index 27ec24f576b939cac7ae777a469c0e4c3cacba7f..bfc36c0c48e90a8a6b6946021dc0fee46ba12d51 100644 (file)
@@ -134,7 +134,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do
          %User{} = user <- User.get_cached_by_ap_id(activity.data["actor"]) do
       case format = get_format(conn) do
         "html" ->
-          serve_static_with_meta(conn, activity)
+          serve_static_with_meta(conn, activity, user)
 
         _ ->
           represent_activity(conn, format, activity, user)
@@ -151,9 +151,9 @@ defmodule Pleroma.Web.OStatus.OStatusController do
     end
   end
 
-  defp serve_static_with_meta(conn, activity) do
+  defp serve_static_with_meta(conn, activity, user) do
     {:ok, index_content } = File.read(Application.app_dir(:pleroma, "priv/static/index.html"))
-    links = OStatus.metadata(request_url(conn))
+    links = OStatus.metadata(activity, user, request_url(conn))
     response = String.replace(index_content, "<!--server-generated-meta-->", links)
     conn
     |> put_resp_content_type("text/html")