forked from AkkomaGang/akkoma
http access to third party user recommendation
This commit is contained in:
parent
3812b627ca
commit
eb0afda3a7
1 changed files with 14 additions and 16 deletions
|
@ -11,6 +11,8 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
||||||
import Ecto.Query
|
import Ecto.Query
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
|
@httpoison Application.get_env(:pleroma, :httpoison)
|
||||||
|
|
||||||
action_fallback(:errors)
|
action_fallback(:errors)
|
||||||
|
|
||||||
def create_app(conn, params) do
|
def create_app(conn, params) do
|
||||||
|
@ -1072,21 +1074,17 @@ def errors(conn, _) do
|
||||||
end
|
end
|
||||||
|
|
||||||
def suggestions(%{assigns: %{user: user}} = conn, _) do
|
def suggestions(%{assigns: %{user: user}} = conn, _) do
|
||||||
res = [
|
host = String.replace Web.base_url(), "https://", ""
|
||||||
%{
|
user = user.nickname
|
||||||
username: "vaginaplant",
|
api = "http://vinayaka.distsn.org/cgi-bin/vinayaka-user-match-filtered-api.cgi?{{host}}+{{user}}"
|
||||||
acct: "vaginaplant@3.distsn.org",
|
url = String.replace(api, "{{host}}", host) |> String.replace("{{user}}", user)
|
||||||
display_name: "Hakaba Hitoyo",
|
with {:ok, %{status_code: 200, body: body}} <-
|
||||||
note: "Recommendation Fairness Warrior",
|
@httpoison.get(url),
|
||||||
avatar: "https://3.distsn.org/media/1c0cbe9d-8b87-496f-b964-1af8116b8f67/D38B0A8B021DC5565D06CF40EBB744E4B7CF8F7F16347094F9CD469348DCC267.jpeg",
|
{:ok, data} <- Jason.decode(body) do
|
||||||
avatar_static: "https://3.distsn.org/media/1c0cbe9d-8b87-496f-b964-1af8116b8f67/D38B0A8B021DC5565D06CF40EBB744E4B7CF8F7F16347094F9CD469348DCC267.jpeg"
|
conn
|
||||||
},
|
|> json(data)
|
||||||
%{
|
else
|
||||||
username: user.nickname,
|
e -> Logger.error("Could not decode user at fetch #{url}, #{inspect(e)}")
|
||||||
acct: user.nickname <> "@" <> (String.replace Web.base_url(), "https://", "")
|
end
|
||||||
}
|
|
||||||
]
|
|
||||||
conn
|
|
||||||
|> json(res)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue