id field
authorhakabahitoyo <hakabahitoyo@example.com>
Sat, 14 Jul 2018 05:03:30 +0000 (14:03 +0900)
committerhakabahitoyo <hakabahitoyo@example.com>
Sat, 14 Jul 2018 05:03:30 +0000 (14:03 +0900)
lib/pleroma/web/mastodon_api/mastodon_api_controller.ex

index fd60db3d6ac5c2416f7ab1f05e0726487657b7f7..d87a6cb1909ee407033b3d5e90cc63200a1cace4 100644 (file)
@@ -1081,10 +1081,13 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
     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),
+           @httpoison.get(url, [], [timeout: 300000, recv_timeout: 300000]),
          {: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(data)
+      |> json(data2)
     else
       e -> Logger.error("Could not decode user at fetch #{url}, #{inspect(e)}")
     end