improve getting host name
[akkoma] / lib / pleroma / web / mastodon_api / mastodon_api_controller.ex
index dab255ee234e53df4ed1276a87293d8d333921a4..2f8139fe6d9fa78d82385ac9b9d5f057c3afc440 100644 (file)
@@ -11,6 +11,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
   import Ecto.Query
   require Logger
 
+  @httpoison Application.get_env(:pleroma, :httpoison)
+
   action_fallback(:errors)
 
   def create_app(conn, params) do
@@ -868,9 +870,12 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
             reduce_motion: false,
             max_toot_chars: Keyword.get(@instance, :limit)
           },
+          rights: %{
+            delete_others_notice: !!user.info["is_moderator"]
+          },
           compose: %{
             me: "#{user.id}",
-            default_privacy: "public",
+            default_privacy: user.info["default_scope"] || "public",
             default_sensitive: false
           },
           media_attachments: %{
@@ -1067,4 +1072,32 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
     |> put_status(500)
     |> json("Something went wrong")
   end
+
+  @suggestions Application.get_env(:pleroma, :suggestions)
+
+  def suggestions(%{assigns: %{user: user}} = conn, _) do
+    host =
+      Application.get_env(:pleroma, Pleroma.Web.Endpoint)
+      |> Keyword.get(:url)
+      |> Keyword.get(:host)
+
+    user = user.nickname
+    api = Keyword.get(@suggestions, :third_party_engine, "")
+    url = String.replace(api, "{{host}}", host) |> String.replace("{{user}}", user)
+
+    with {:ok, %{status_code: 200, body: body}} <-
+           @httpoison.get(url, [], timeout: 300_000, recv_timeout: 300_000),
+         {:ok, data} <- Jason.decode(body) do
+      data2 =
+        Enum.slice(data, 0, 40)
+        |> Enum.map(fn x ->
+          Map.put(x, "id", User.get_or_fetch(x["acct"]).id)
+        end)
+
+      conn
+      |> json(data2)
+    else
+      e -> Logger.error("Could not decode user at fetch #{url}, #{inspect(e)}")
+    end
+  end
 end