2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-04-03 15:55:04 +00:00
|
|
|
alias Ecto.Changeset
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-04-14 12:45:56 +00:00
|
|
|
alias Pleroma.Bookmark
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Config
|
2019-04-10 15:48:31 +00:00
|
|
|
alias Pleroma.Conversation.Participation
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Filter
|
2019-02-22 23:57:42 +00:00
|
|
|
alias Pleroma.Formatter
|
2019-05-25 04:24:21 +00:00
|
|
|
alias Pleroma.HTTP
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Notification
|
|
|
|
alias Pleroma.Object
|
2019-03-25 22:13:58 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-03-28 09:39:10 +00:00
|
|
|
alias Pleroma.ScheduledActivity
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Stats
|
|
|
|
alias Pleroma.User
|
2017-09-07 06:58:10 +00:00
|
|
|
alias Pleroma.Web
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2018-03-25 15:00:30 +00:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2019-03-26 18:42:03 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AppView
|
2019-04-21 16:14:27 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.ConversationView
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.FilterView
|
|
|
|
alias Pleroma.Web.MastodonAPI.ListView
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonAPI
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonView
|
2019-03-14 18:39:58 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.NotificationView
|
2019-02-20 16:51:25 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.ReportView
|
2019-03-28 09:39:10 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.ScheduledActivityView
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
|
|
|
alias Pleroma.Web.MediaProxy
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.OAuth.App
|
|
|
|
alias Pleroma.Web.OAuth.Authorization
|
2019-05-08 10:52:13 +00:00
|
|
|
alias Pleroma.Web.OAuth.Scopes
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.OAuth.Token
|
2019-05-13 18:35:45 +00:00
|
|
|
alias Pleroma.Web.TwitterAPI.TwitterAPI
|
2018-12-06 13:50:20 +00:00
|
|
|
|
2019-04-24 17:01:42 +00:00
|
|
|
alias Pleroma.Web.ControllerHelper
|
2017-09-13 13:55:10 +00:00
|
|
|
import Ecto.Query
|
2019-02-14 14:03:19 +00:00
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
require Logger
|
2017-09-06 17:06:25 +00:00
|
|
|
|
2019-05-13 18:35:45 +00:00
|
|
|
plug(
|
|
|
|
Pleroma.Plugs.RateLimitPlug,
|
|
|
|
%{
|
|
|
|
max_requests: Config.get([:app_account_creation, :max_requests]),
|
|
|
|
interval: Config.get([:app_account_creation, :interval])
|
|
|
|
}
|
|
|
|
when action in [:account_register]
|
|
|
|
)
|
|
|
|
|
2019-06-11 07:28:39 +00:00
|
|
|
plug(Pleroma.Plugs.RateLimiter, :search when action in [:search, :search2, :account_search])
|
|
|
|
|
2019-02-07 19:14:06 +00:00
|
|
|
@local_mastodon_name "Mastodon-Local"
|
2018-07-14 01:04:37 +00:00
|
|
|
|
2018-06-03 17:28:11 +00:00
|
|
|
action_fallback(:errors)
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
def create_app(conn, params) do
|
2019-05-08 10:52:13 +00:00
|
|
|
scopes = Scopes.fetch_scopes(params, ["read"])
|
2019-02-14 14:03:19 +00:00
|
|
|
|
|
|
|
app_attrs =
|
|
|
|
params
|
|
|
|
|> Map.drop(["scope", "scopes"])
|
|
|
|
|> Map.put("scopes", scopes)
|
2019-02-13 21:29:29 +00:00
|
|
|
|
|
|
|
with cs <- App.register_changeset(%App{}, app_attrs),
|
2019-02-07 19:14:06 +00:00
|
|
|
false <- cs.changes[:client_name] == @local_mastodon_name,
|
|
|
|
{:ok, app} <- Repo.insert(cs) do
|
2019-03-26 20:21:31 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AppView)
|
|
|
|
|> render("show.json", %{app: app})
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
defp add_if_present(
|
|
|
|
map,
|
|
|
|
params,
|
|
|
|
params_field,
|
|
|
|
map_field,
|
|
|
|
value_function \\ fn x -> {:ok, x} end
|
|
|
|
) do
|
|
|
|
if Map.has_key?(params, params_field) do
|
|
|
|
case value_function.(params[params_field]) do
|
|
|
|
{:ok, new_value} -> Map.put(map, map_field, new_value)
|
|
|
|
:error -> map
|
2018-03-30 13:01:53 +00:00
|
|
|
end
|
2018-12-01 09:40:01 +00:00
|
|
|
else
|
|
|
|
map
|
|
|
|
end
|
|
|
|
end
|
2017-11-11 22:27:09 +00:00
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
def update_credentials(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
original_user = user
|
2017-11-11 22:27:09 +00:00
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
user_params =
|
|
|
|
%{}
|
|
|
|
|> add_if_present(params, "display_name", :name)
|
2019-02-11 22:47:32 +00:00
|
|
|
|> add_if_present(params, "note", :bio, fn value -> {:ok, User.parse_bio(value, user)} end)
|
2018-12-01 09:40:01 +00:00
|
|
|
|> add_if_present(params, "avatar", :avatar, fn value ->
|
|
|
|
with %Plug.Upload{} <- value,
|
|
|
|
{:ok, object} <- ActivityPub.upload(value, type: :avatar) do
|
|
|
|
{:ok, object.data}
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
2018-12-01 09:40:01 +00:00
|
|
|
_ -> :error
|
2018-03-30 13:01:53 +00:00
|
|
|
end
|
2018-12-01 09:40:01 +00:00
|
|
|
end)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-02-22 23:57:42 +00:00
|
|
|
emojis_text = (user_params["display_name"] || "") <> (user_params["note"] || "")
|
|
|
|
|
|
|
|
user_info_emojis =
|
|
|
|
((user.info.emoji || []) ++ Formatter.get_emoji_map(emojis_text))
|
|
|
|
|> Enum.dedup()
|
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
info_params =
|
2019-06-03 18:02:02 +00:00
|
|
|
[
|
|
|
|
:no_rich_text,
|
|
|
|
:locked,
|
|
|
|
:hide_followers,
|
|
|
|
:hide_follows,
|
|
|
|
:hide_favorites,
|
|
|
|
:show_role,
|
|
|
|
:skip_thread_containment
|
|
|
|
]
|
2019-04-24 17:01:42 +00:00
|
|
|
|> Enum.reduce(%{}, fn key, acc ->
|
|
|
|
add_if_present(acc, params, to_string(key), key, fn value ->
|
|
|
|
{:ok, ControllerHelper.truthy_param?(value)}
|
|
|
|
end)
|
|
|
|
end)
|
2019-04-27 20:55:54 +00:00
|
|
|
|> add_if_present(params, "default_scope", :default_scope)
|
2019-05-31 12:50:18 +00:00
|
|
|
|> add_if_present(params, "pleroma_settings_store", :pleroma_settings_store, fn value ->
|
|
|
|
{:ok, Map.merge(user.info.pleroma_settings_store, value)}
|
|
|
|
end)
|
2018-12-01 09:40:01 +00:00
|
|
|
|> add_if_present(params, "header", :banner, fn value ->
|
|
|
|
with %Plug.Upload{} <- value,
|
|
|
|
{:ok, object} <- ActivityPub.upload(value, type: :banner) do
|
|
|
|
{:ok, object.data}
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
2018-12-01 09:40:01 +00:00
|
|
|
_ -> :error
|
2018-03-30 13:01:53 +00:00
|
|
|
end
|
2018-12-01 09:40:01 +00:00
|
|
|
end)
|
2019-02-22 23:57:42 +00:00
|
|
|
|> Map.put(:emoji, user_info_emojis)
|
2017-11-11 22:27:09 +00:00
|
|
|
|
2019-04-24 17:01:42 +00:00
|
|
|
info_cng = User.Info.profile_update(user.info, info_params)
|
2018-05-27 10:03:53 +00:00
|
|
|
|
2018-12-01 09:40:01 +00:00
|
|
|
with changeset <- User.update_changeset(user, user_params),
|
|
|
|
changeset <- Ecto.Changeset.put_embed(changeset, :info, info_cng),
|
2018-02-25 20:02:44 +00:00
|
|
|
{:ok, user} <- User.update_and_set_cache(changeset) do
|
|
|
|
if original_user != user do
|
|
|
|
CommonAPI.update(user)
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-05-31 12:50:18 +00:00
|
|
|
json(
|
|
|
|
conn,
|
|
|
|
AccountView.render("account.json", %{user: user, for: user, with_pleroma_settings: true})
|
|
|
|
)
|
2017-11-11 22:27:09 +00:00
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(403)
|
|
|
|
|> json(%{error: "Invalid request"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def verify_credentials(%{assigns: %{user: user}} = conn, _) do
|
2019-05-31 12:50:18 +00:00
|
|
|
account =
|
|
|
|
AccountView.render("account.json", %{user: user, for: user, with_pleroma_settings: true})
|
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
json(conn, account)
|
|
|
|
end
|
|
|
|
|
2019-03-26 18:42:03 +00:00
|
|
|
def verify_app_credentials(%{assigns: %{user: _user, token: token}} = conn, _) do
|
|
|
|
with %Token{app: %App{} = app} <- Repo.preload(token, :app) do
|
|
|
|
conn
|
|
|
|
|> put_view(AppView)
|
2019-03-26 20:21:31 +00:00
|
|
|
|> render("short.json", %{app: app})
|
2019-03-26 18:42:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-11 14:18:32 +00:00
|
|
|
def user(%{assigns: %{user: for_user}} = conn, %{"id" => nickname_or_id}) do
|
|
|
|
with %User{} = user <- User.get_cached_by_nickname_or_id(nickname_or_id),
|
2018-12-19 15:56:52 +00:00
|
|
|
true <- User.auth_active?(user) || user.id == for_user.id || User.superuser?(for_user) do
|
2018-09-22 02:14:25 +00:00
|
|
|
account = AccountView.render("account.json", %{user: user, for: for_user})
|
2017-09-13 15:36:02 +00:00
|
|
|
json(conn, account)
|
|
|
|
else
|
2018-03-30 13:01:53 +00:00
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Can't find user"})
|
2017-09-13 15:36:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-13 20:52:16 +00:00
|
|
|
@mastodon_api_level "2.7.2"
|
2017-09-15 08:26:28 +00:00
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
def masto_instance(conn, _params) do
|
2019-02-03 17:44:18 +00:00
|
|
|
instance = Config.get(:instance)
|
2018-11-06 18:34:57 +00:00
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
response = %{
|
2018-03-30 13:01:53 +00:00
|
|
|
uri: Web.base_url(),
|
2018-11-06 18:34:57 +00:00
|
|
|
title: Keyword.get(instance, :name),
|
|
|
|
description: Keyword.get(instance, :description),
|
2018-11-20 16:55:03 +00:00
|
|
|
version: "#{@mastodon_api_level} (compatible; #{Pleroma.Application.named_version()})",
|
2018-11-06 18:34:57 +00:00
|
|
|
email: Keyword.get(instance, :email),
|
2017-09-15 08:26:28 +00:00
|
|
|
urls: %{
|
2019-02-01 18:56:18 +00:00
|
|
|
streaming_api: Pleroma.Web.Endpoint.websocket_url()
|
2017-09-15 08:26:28 +00:00
|
|
|
},
|
2018-03-30 13:01:53 +00:00
|
|
|
stats: Stats.get_stats(),
|
|
|
|
thumbnail: Web.base_url() <> "/instance/thumbnail.jpeg",
|
2019-03-26 13:27:17 +00:00
|
|
|
languages: ["en"],
|
|
|
|
registrations: Pleroma.Config.get([:instance, :registrations_open]),
|
|
|
|
# Extra (not present in Mastodon):
|
2019-05-21 06:13:10 +00:00
|
|
|
max_toot_chars: Keyword.get(instance, :limit),
|
|
|
|
poll_limits: Keyword.get(instance, :poll_limits)
|
2017-09-06 17:06:25 +00:00
|
|
|
}
|
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
json(conn, response)
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2018-01-13 16:24:16 +00:00
|
|
|
def peers(conn, _params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
json(conn, Stats.get_peers())
|
2018-01-13 16:24:16 +00:00
|
|
|
end
|
|
|
|
|
2017-11-16 08:40:06 +00:00
|
|
|
defp mastodonized_emoji do
|
2018-11-05 12:24:00 +00:00
|
|
|
Pleroma.Emoji.get_all()
|
2019-04-01 10:17:57 +00:00
|
|
|
|> Enum.map(fn {shortcode, relative_url, tags} ->
|
2018-03-30 13:01:53 +00:00
|
|
|
url = to_string(URI.merge(Web.base_url(), relative_url))
|
|
|
|
|
2017-11-07 19:28:31 +00:00
|
|
|
%{
|
|
|
|
"shortcode" => shortcode,
|
|
|
|
"static_url" => url,
|
2018-05-01 06:24:30 +00:00
|
|
|
"visible_in_picker" => true,
|
2019-04-01 10:17:57 +00:00
|
|
|
"url" => url,
|
2019-04-18 18:17:52 +00:00
|
|
|
"tags" => tags
|
2017-11-07 19:28:31 +00:00
|
|
|
}
|
|
|
|
end)
|
2017-11-16 08:40:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def custom_emojis(conn, _params) do
|
|
|
|
mastodon_emoji = mastodonized_emoji()
|
2018-03-30 13:01:53 +00:00
|
|
|
json(conn, mastodon_emoji)
|
2017-11-07 19:28:31 +00:00
|
|
|
end
|
|
|
|
|
2018-05-29 10:29:51 +00:00
|
|
|
defp add_link_headers(conn, method, activities, param \\ nil, params \\ %{}) do
|
2019-03-07 02:29:42 +00:00
|
|
|
params =
|
|
|
|
conn.params
|
2019-03-25 21:19:57 +00:00
|
|
|
|> Map.drop(["since_id", "max_id", "min_id"])
|
2019-03-07 02:29:42 +00:00
|
|
|
|> Map.merge(params)
|
|
|
|
|
2017-09-12 06:51:56 +00:00
|
|
|
last = List.last(activities)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-12 06:51:56 +00:00
|
|
|
if last do
|
2019-03-25 21:19:57 +00:00
|
|
|
max_id = last.id
|
|
|
|
|
|
|
|
limit =
|
|
|
|
params
|
|
|
|
|> Map.get("limit", "20")
|
|
|
|
|> String.to_integer()
|
|
|
|
|
2019-03-28 16:18:44 +00:00
|
|
|
min_id =
|
|
|
|
if length(activities) <= limit do
|
|
|
|
activities
|
|
|
|
|> List.first()
|
|
|
|
|> Map.get(:id)
|
|
|
|
else
|
|
|
|
activities
|
|
|
|
|> Enum.at(limit * -1)
|
|
|
|
|> Map.get(:id)
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{next_url, prev_url} =
|
|
|
|
if param do
|
|
|
|
{
|
2018-05-29 10:29:51 +00:00
|
|
|
mastodon_api_url(
|
|
|
|
Pleroma.Web.Endpoint,
|
|
|
|
method,
|
|
|
|
param,
|
2019-03-25 21:19:57 +00:00
|
|
|
Map.merge(params, %{max_id: max_id})
|
2018-05-29 10:29:51 +00:00
|
|
|
),
|
|
|
|
mastodon_api_url(
|
|
|
|
Pleroma.Web.Endpoint,
|
|
|
|
method,
|
|
|
|
param,
|
2019-03-25 21:19:57 +00:00
|
|
|
Map.merge(params, %{min_id: min_id})
|
2018-05-29 10:29:51 +00:00
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-29 10:29:51 +00:00
|
|
|
mastodon_api_url(
|
|
|
|
Pleroma.Web.Endpoint,
|
|
|
|
method,
|
2019-03-25 21:19:57 +00:00
|
|
|
Map.merge(params, %{max_id: max_id})
|
2018-05-29 10:29:51 +00:00
|
|
|
),
|
|
|
|
mastodon_api_url(
|
|
|
|
Pleroma.Web.Endpoint,
|
|
|
|
method,
|
2019-03-25 21:19:57 +00:00
|
|
|
Map.merge(params, %{min_id: min_id})
|
2018-05-29 10:29:51 +00:00
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2017-09-12 06:51:56 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_header("link", "<#{next_url}>; rel=\"next\", <#{prev_url}>; rel=\"prev\"")
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 11:15:01 +00:00
|
|
|
def home_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", ["Create", "Announce"])
|
|
|
|
|> Map.put("blocking_user", user)
|
2018-09-05 20:49:15 +00:00
|
|
|
|> Map.put("muting_user", user)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Map.put("user", user)
|
2017-09-17 12:20:54 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
activities =
|
2019-02-03 17:44:18 +00:00
|
|
|
[user.ap_id | user.following]
|
|
|
|
|> ActivityPub.fetch_activities(params)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-09-12 06:51:56 +00:00
|
|
|
|
|
|
|
conn
|
2017-09-12 07:06:32 +00:00
|
|
|
|> add_link_headers(:home_timeline, activities)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def public_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-05-29 10:29:51 +00:00
|
|
|
local_only = params["local"] in [true, "True", "true", "1"]
|
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
activities =
|
2018-03-30 13:01:53 +00:00
|
|
|
params
|
|
|
|
|> Map.put("type", ["Create", "Announce"])
|
2018-05-29 10:29:51 +00:00
|
|
|
|> Map.put("local_only", local_only)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Map.put("blocking_user", user)
|
2018-09-05 20:49:15 +00:00
|
|
|
|> Map.put("muting_user", user)
|
2019-02-03 17:44:18 +00:00
|
|
|
|> ActivityPub.fetch_public_activities()
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2017-09-12 07:06:32 +00:00
|
|
|
conn
|
2018-05-29 10:29:51 +00:00
|
|
|
|> add_link_headers(:public_timeline, activities, false, %{"local" => local_only})
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|
|
|
|
|
2018-05-20 14:15:18 +00:00
|
|
|
def user_statuses(%{assigns: %{user: reading_user}} = conn, params) do
|
2019-05-03 19:15:47 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_id(params["id"]) do
|
2019-01-07 13:45:33 +00:00
|
|
|
activities = ActivityPub.fetch_user_activities(user, reading_user, params)
|
2017-09-10 15:46:43 +00:00
|
|
|
|
2018-03-09 14:54:10 +00:00
|
|
|
conn
|
|
|
|
|> add_link_headers(:user_statuses, activities, params["id"])
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{
|
2018-06-01 09:16:42 +00:00
|
|
|
activities: activities,
|
|
|
|
for: reading_user,
|
|
|
|
as: :activity
|
|
|
|
})
|
2017-09-10 15:46:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-13 18:46:34 +00:00
|
|
|
def dm_timeline(%{assigns: %{user: user}} = conn, params) do
|
2019-03-03 23:59:54 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("blocking_user", user)
|
|
|
|
|> Map.put("user", user)
|
|
|
|
|> Map.put(:visibility, "direct")
|
2018-05-30 12:02:22 +00:00
|
|
|
|
2019-03-03 23:59:54 +00:00
|
|
|
activities =
|
2019-03-06 13:20:12 +00:00
|
|
|
[user.ap_id]
|
|
|
|
|> ActivityPub.fetch_activities_query(params)
|
2019-03-25 22:13:58 +00:00
|
|
|
|> Pagination.fetch_paginated(params)
|
2018-05-11 02:17:33 +00:00
|
|
|
|
|
|
|
conn
|
2018-05-29 10:29:51 +00:00
|
|
|
|> add_link_headers(:dm_timeline, activities)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2018-05-11 02:17:33 +00:00
|
|
|
end
|
|
|
|
|
2017-09-09 11:15:01 +00:00
|
|
|
def get_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-15 17:32:14 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id_with_object(id),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.visible_for_user?(activity, user) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user})
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 13:00:13 +00:00
|
|
|
def get_context(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-02 09:50:31 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id(id),
|
2018-03-30 13:01:53 +00:00
|
|
|
activities <-
|
|
|
|
ActivityPub.fetch_activities_for_context(activity.data["context"], %{
|
|
|
|
"blocking_user" => user,
|
|
|
|
"user" => user
|
|
|
|
}),
|
|
|
|
activities <-
|
|
|
|
activities |> Enum.filter(fn %{id: aid} -> to_string(aid) != to_string(id) end),
|
|
|
|
activities <-
|
|
|
|
activities |> Enum.filter(fn %{data: %{"type" => type}} -> type == "Create" end),
|
|
|
|
grouped_activities <- Enum.group_by(activities, fn %{id: id} -> id < activity.id end) do
|
2017-09-10 13:00:13 +00:00
|
|
|
result = %{
|
2018-03-30 13:01:53 +00:00
|
|
|
ancestors:
|
|
|
|
StatusView.render(
|
|
|
|
"index.json",
|
|
|
|
for: user,
|
|
|
|
activities: grouped_activities[true] || [],
|
|
|
|
as: :activity
|
|
|
|
)
|
|
|
|
|> Enum.reverse(),
|
2019-02-03 17:44:18 +00:00
|
|
|
# credo:disable-for-previous-line Credo.Check.Refactor.PipeChainStart
|
2018-03-30 13:01:53 +00:00
|
|
|
descendants:
|
|
|
|
StatusView.render(
|
|
|
|
"index.json",
|
|
|
|
for: user,
|
|
|
|
activities: grouped_activities[false] || [],
|
|
|
|
as: :activity
|
|
|
|
)
|
|
|
|
|> Enum.reverse()
|
2019-02-03 17:44:18 +00:00
|
|
|
# credo:disable-for-previous-line Credo.Check.Refactor.PipeChainStart
|
2017-09-10 13:00:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
json(conn, result)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-21 17:40:35 +00:00
|
|
|
def get_poll(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with %Object{} = object <- Object.get_by_id(id),
|
|
|
|
%Activity{} = activity <- Activity.get_create_by_object_ap_id(object.data["id"]),
|
|
|
|
true <- Visibility.visible_for_user?(activity, user) do
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("poll.json", %{object: object, for: user})
|
|
|
|
else
|
|
|
|
nil ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
|
|
|
|
|
|
|
false ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-01 13:07:01 +00:00
|
|
|
def poll_vote(%{assigns: %{user: user}} = conn, %{"id" => id, "choices" => choices}) do
|
|
|
|
with %Object{} = object <- Object.get_by_id(id),
|
|
|
|
true <- object.data["type"] == "Question",
|
|
|
|
%Activity{} = activity <- Activity.get_create_by_object_ap_id(object.data["id"]),
|
|
|
|
true <- Visibility.visible_for_user?(activity, user),
|
|
|
|
{:ok, _activities, object} <- CommonAPI.vote(user, object, choices) do
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("poll.json", %{object: object, for: user})
|
|
|
|
else
|
|
|
|
nil ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
|
|
|
|
|
|
|
false ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
|
|
|
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_status(422)
|
|
|
|
|> json(%{error: message})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-28 09:39:10 +00:00
|
|
|
def scheduled_statuses(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
with scheduled_activities <- MastodonAPI.get_scheduled_activities(user, params) do
|
|
|
|
conn
|
|
|
|
|> add_link_headers(:scheduled_statuses, scheduled_activities)
|
|
|
|
|> put_view(ScheduledActivityView)
|
|
|
|
|> render("index.json", %{scheduled_activities: scheduled_activities})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show_scheduled_status(%{assigns: %{user: user}} = conn, %{"id" => scheduled_activity_id}) do
|
|
|
|
with %ScheduledActivity{} = scheduled_activity <-
|
|
|
|
ScheduledActivity.get(user, scheduled_activity_id) do
|
|
|
|
conn
|
|
|
|
|> put_view(ScheduledActivityView)
|
|
|
|
|> render("show.json", %{scheduled_activity: scheduled_activity})
|
|
|
|
else
|
|
|
|
_ -> {:error, :not_found}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_scheduled_status(
|
|
|
|
%{assigns: %{user: user}} = conn,
|
|
|
|
%{"id" => scheduled_activity_id} = params
|
|
|
|
) do
|
2019-04-01 22:31:01 +00:00
|
|
|
with %ScheduledActivity{} = scheduled_activity <-
|
|
|
|
ScheduledActivity.get(user, scheduled_activity_id),
|
|
|
|
{:ok, scheduled_activity} <- ScheduledActivity.update(scheduled_activity, params) do
|
2019-03-28 09:39:10 +00:00
|
|
|
conn
|
|
|
|
|> put_view(ScheduledActivityView)
|
|
|
|
|> render("show.json", %{scheduled_activity: scheduled_activity})
|
2019-04-01 22:31:01 +00:00
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
|
|
|
error -> error
|
2019-03-28 09:39:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_scheduled_status(%{assigns: %{user: user}} = conn, %{"id" => scheduled_activity_id}) do
|
2019-04-01 22:31:01 +00:00
|
|
|
with %ScheduledActivity{} = scheduled_activity <-
|
|
|
|
ScheduledActivity.get(user, scheduled_activity_id),
|
|
|
|
{:ok, scheduled_activity} <- ScheduledActivity.delete(scheduled_activity) do
|
2019-03-28 09:39:10 +00:00
|
|
|
conn
|
2019-04-01 22:31:01 +00:00
|
|
|
|> put_view(ScheduledActivityView)
|
|
|
|
|> render("show.json", %{scheduled_activity: scheduled_activity})
|
|
|
|
else
|
|
|
|
nil -> {:error, :not_found}
|
|
|
|
error -> error
|
2019-03-28 09:39:10 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-06 06:47:16 +00:00
|
|
|
def post_status(conn, %{"status" => "", "media_ids" => media_ids} = params)
|
|
|
|
when length(media_ids) > 0 do
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("status", ".")
|
|
|
|
|
|
|
|
post_status(conn, params)
|
|
|
|
end
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
def post_status(%{assigns: %{user: user}} = conn, %{"status" => _} = params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("in_reply_to_status_id", params["in_reply_to_id"])
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2019-03-30 09:58:40 +00:00
|
|
|
scheduled_at = params["scheduled_at"]
|
2018-05-04 18:30:29 +00:00
|
|
|
|
2019-03-30 09:58:40 +00:00
|
|
|
if scheduled_at && ScheduledActivity.far_enough?(scheduled_at) do
|
2019-04-03 15:55:04 +00:00
|
|
|
with {:ok, scheduled_activity} <-
|
|
|
|
ScheduledActivity.create(user, %{"params" => params, "scheduled_at" => scheduled_at}) do
|
|
|
|
conn
|
|
|
|
|> put_view(ScheduledActivityView)
|
|
|
|
|> render("show.json", %{scheduled_activity: scheduled_activity})
|
|
|
|
end
|
2019-03-30 09:58:40 +00:00
|
|
|
else
|
|
|
|
params = Map.drop(params, ["scheduled_at"])
|
|
|
|
|
2019-05-21 07:54:20 +00:00
|
|
|
case get_cached_status_or_post(conn, params) do
|
|
|
|
{:ignore, message} ->
|
|
|
|
conn
|
2019-05-21 14:12:38 +00:00
|
|
|
|> put_status(422)
|
2019-05-21 07:54:20 +00:00
|
|
|
|> json(%{error: message})
|
|
|
|
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
2019-05-21 14:12:38 +00:00
|
|
|
|> put_status(422)
|
2019-05-21 07:54:20 +00:00
|
|
|
|> json(%{error: message})
|
|
|
|
|
|
|
|
{_, activity} ->
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
end
|
2019-03-30 09:58:40 +00:00
|
|
|
end
|
2017-09-09 11:15:01 +00:00
|
|
|
end
|
2017-09-09 11:56:51 +00:00
|
|
|
|
2019-05-21 07:54:20 +00:00
|
|
|
defp get_cached_status_or_post(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
idempotency_key =
|
|
|
|
case get_req_header(conn, "idempotency-key") do
|
|
|
|
[key] -> key
|
|
|
|
_ -> Ecto.UUID.generate()
|
|
|
|
end
|
|
|
|
|
|
|
|
Cachex.fetch(:idempotency_cache, idempotency_key, fn _ ->
|
|
|
|
case CommonAPI.post(user, params) do
|
|
|
|
{:ok, activity} -> activity
|
|
|
|
{:error, message} -> {:ignore, message}
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2017-09-09 11:56:51 +00:00
|
|
|
def delete_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
with {:ok, %Activity{}} <- CommonAPI.delete(id, user) do
|
|
|
|
json(conn, %{})
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(403)
|
|
|
|
|> json(%{error: "Can't delete this post"})
|
|
|
|
end
|
|
|
|
end
|
2017-09-09 15:48:57 +00:00
|
|
|
|
|
|
|
def reblog_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
2019-04-15 17:32:14 +00:00
|
|
|
with {:ok, announce, _activity} <- CommonAPI.repeat(ap_id_or_id, user),
|
|
|
|
%Activity{} = announce <- Activity.normalize(announce.data) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: announce, for: user, as: :activity})
|
2017-09-09 15:48:57 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 16:09:37 +00:00
|
|
|
|
2018-04-14 07:39:16 +00:00
|
|
|
def unreblog_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
2018-06-14 01:29:55 +00:00
|
|
|
with {:ok, _unannounce, %{data: %{"id" => id}}} <- CommonAPI.unrepeat(ap_id_or_id, user),
|
2019-04-15 17:32:14 +00:00
|
|
|
%Activity{} = activity <- Activity.get_create_by_object_ap_id_with_object(id) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
2018-04-14 07:39:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 16:09:37 +00:00
|
|
|
def fav_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
2018-06-03 17:28:11 +00:00
|
|
|
with {:ok, _fav, %{data: %{"id" => id}}} <- CommonAPI.favorite(ap_id_or_id, user),
|
2019-01-21 06:14:20 +00:00
|
|
|
%Activity{} = activity <- Activity.get_create_by_object_ap_id(id) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
2017-09-09 16:30:02 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unfav_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
2018-06-03 17:28:11 +00:00
|
|
|
with {:ok, _, _, %{data: %{"id" => id}}} <- CommonAPI.unfavorite(ap_id_or_id, user),
|
2019-01-21 06:14:20 +00:00
|
|
|
%Activity{} = activity <- Activity.get_create_by_object_ap_id(id) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
2017-09-09 16:09:37 +00:00
|
|
|
end
|
|
|
|
end
|
2017-09-09 17:19:13 +00:00
|
|
|
|
2019-01-07 13:45:33 +00:00
|
|
|
def pin_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
|
|
|
with {:ok, activity} <- CommonAPI.pin(ap_id_or_id, user) do
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
else
|
|
|
|
{:error, reason} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(:bad_request, Jason.encode!(%{"error" => reason}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unpin_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
|
|
|
|
with {:ok, activity} <- CommonAPI.unpin(ap_id_or_id, user) do
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-19 00:04:56 +00:00
|
|
|
def bookmark_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-17 10:04:58 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id_with_object(id),
|
2019-04-22 07:20:43 +00:00
|
|
|
%User{} = user <- User.get_cached_by_nickname(user.nickname),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.visible_for_user?(activity, user),
|
2019-05-07 15:00:50 +00:00
|
|
|
{:ok, _bookmark} <- Bookmark.create(user.id, activity.id) do
|
2018-09-19 00:04:56 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unbookmark_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-17 11:27:02 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id_with_object(id),
|
2019-04-22 07:20:43 +00:00
|
|
|
%User{} = user <- User.get_cached_by_nickname(user.nickname),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.visible_for_user?(activity, user),
|
2019-04-14 12:45:56 +00:00
|
|
|
{:ok, _bookmark} <- Bookmark.destroy(user.id, activity.id) do
|
2018-09-19 00:04:56 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-05 12:35:24 +00:00
|
|
|
def mute_conversation(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-02-11 10:59:51 +00:00
|
|
|
activity = Activity.get_by_id(id)
|
2019-02-11 11:10:10 +00:00
|
|
|
|
2019-02-11 10:59:51 +00:00
|
|
|
with {:ok, activity} <- CommonAPI.add_mute(user, activity) do
|
2019-02-05 12:35:24 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
2019-02-10 08:31:20 +00:00
|
|
|
else
|
|
|
|
{:error, reason} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(:bad_request, Jason.encode!(%{"error" => reason}))
|
2019-02-05 12:35:24 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unmute_conversation(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-02-11 10:59:51 +00:00
|
|
|
activity = Activity.get_by_id(id)
|
2019-02-11 11:10:10 +00:00
|
|
|
|
2019-02-11 10:59:51 +00:00
|
|
|
with {:ok, activity} <- CommonAPI.remove_mute(user, activity) do
|
2019-02-05 12:35:24 +00:00
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> try_render("status.json", %{activity: activity, for: user, as: :activity})
|
2018-09-19 00:04:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-11 14:15:28 +00:00
|
|
|
def notifications(%{assigns: %{user: user}} = conn, params) do
|
2019-03-18 01:32:23 +00:00
|
|
|
notifications = MastodonAPI.get_notifications(user, params)
|
2017-09-11 14:15:28 +00:00
|
|
|
|
2017-09-12 07:06:32 +00:00
|
|
|
conn
|
|
|
|
|> add_link_headers(:notifications, notifications)
|
2019-03-14 18:39:58 +00:00
|
|
|
|> put_view(NotificationView)
|
|
|
|
|> render("index.json", %{notifications: notifications, for: user})
|
2017-09-11 14:15:28 +00:00
|
|
|
end
|
|
|
|
|
2017-11-10 13:24:39 +00:00
|
|
|
def get_notification(%{assigns: %{user: user}} = conn, %{"id" => id} = _params) do
|
|
|
|
with {:ok, notification} <- Notification.get(user, id) do
|
2019-03-14 18:39:58 +00:00
|
|
|
conn
|
|
|
|
|> put_view(NotificationView)
|
|
|
|
|> render("show.json", %{notification: notification, for: user})
|
2017-11-10 13:24:39 +00:00
|
|
|
else
|
|
|
|
{:error, reason} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => reason}))
|
2017-11-10 13:24:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def clear_notifications(%{assigns: %{user: user}} = conn, _params) do
|
|
|
|
Notification.clear(user)
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
|
|
|
def dismiss_notification(%{assigns: %{user: user}} = conn, %{"id" => id} = _params) do
|
|
|
|
with {:ok, _notif} <- Notification.dismiss(user, id) do
|
|
|
|
json(conn, %{})
|
|
|
|
else
|
|
|
|
{:error, reason} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => reason}))
|
2017-11-10 13:24:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-12 02:28:46 +00:00
|
|
|
def destroy_multiple(%{assigns: %{user: user}} = conn, %{"ids" => ids} = _params) do
|
|
|
|
Notification.destroy_multiple(user, ids)
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
2017-09-13 13:55:10 +00:00
|
|
|
def relationships(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
id = List.wrap(id)
|
2018-03-30 13:01:53 +00:00
|
|
|
q = from(u in User, where: u.id in ^id)
|
2017-09-13 13:55:10 +00:00
|
|
|
targets = Repo.all(q)
|
2018-12-16 16:49:42 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationships.json", %{user: user, targets: targets})
|
2017-09-13 13:55:10 +00:00
|
|
|
end
|
|
|
|
|
2018-11-07 15:27:07 +00:00
|
|
|
# Instead of returning a 400 when no "id" params is present, Mastodon returns an empty array.
|
2018-12-09 09:12:48 +00:00
|
|
|
def relationships(%{assigns: %{user: _user}} = conn, _), do: json(conn, [])
|
2018-11-07 15:27:07 +00:00
|
|
|
|
2018-12-06 07:26:17 +00:00
|
|
|
def update_media(%{assigns: %{user: user}} = conn, data) do
|
2018-07-17 03:36:50 +00:00
|
|
|
with %Object{} = object <- Repo.get(Object, data["id"]),
|
2018-12-06 07:26:17 +00:00
|
|
|
true <- Object.authorize_mutation(object, user),
|
2018-07-17 03:36:50 +00:00
|
|
|
true <- is_binary(data["description"]),
|
|
|
|
description <- data["description"] do
|
|
|
|
new_data = %{object.data | "name" => description}
|
|
|
|
|
2018-12-06 07:26:17 +00:00
|
|
|
{:ok, _} =
|
|
|
|
object
|
|
|
|
|> Object.change(%{data: new_data})
|
|
|
|
|> Repo.update()
|
2017-09-14 06:08:32 +00:00
|
|
|
|
2018-12-06 07:26:17 +00:00
|
|
|
attachment_data = Map.put(new_data, "id", object.id)
|
2018-12-16 16:49:42 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("attachment.json", %{attachment: attachment_data})
|
2017-09-14 06:08:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-06 07:26:17 +00:00
|
|
|
def upload(%{assigns: %{user: user}} = conn, %{"file" => file} = data) do
|
|
|
|
with {:ok, object} <-
|
2019-01-27 12:39:20 +00:00
|
|
|
ActivityPub.upload(
|
|
|
|
file,
|
2018-12-06 07:26:17 +00:00
|
|
|
actor: User.ap_id(user),
|
|
|
|
description: Map.get(data, "description")
|
|
|
|
) do
|
|
|
|
attachment_data = Map.put(object.data, "id", object.id)
|
2018-12-16 16:49:42 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("attachment.json", %{attachment: attachment_data})
|
2018-07-17 03:36:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-20 11:39:23 +00:00
|
|
|
def set_mascot(%{assigns: %{user: user}} = conn, %{"file" => file}) do
|
|
|
|
with {:ok, object} <- ActivityPub.upload(file, actor: User.ap_id(user)),
|
|
|
|
%{} = attachment_data <- Map.put(object.data, "id", object.id),
|
|
|
|
%{type: type} = rendered <-
|
|
|
|
StatusView.render("attachment.json", %{attachment: attachment_data}) do
|
|
|
|
# Reject if not an image
|
|
|
|
if type == "image" do
|
|
|
|
# Sure!
|
|
|
|
# Save to the user's info
|
|
|
|
info_changeset = User.Info.mascot_update(user.info, rendered)
|
|
|
|
|
|
|
|
user_changeset =
|
|
|
|
user
|
|
|
|
|> Ecto.Changeset.change()
|
|
|
|
|> Ecto.Changeset.put_embed(:info, info_changeset)
|
|
|
|
|
|
|
|
{:ok, _user} = User.update_and_set_cache(user_changeset)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> json(rendered)
|
|
|
|
else
|
|
|
|
conn
|
2019-05-20 11:58:06 +00:00
|
|
|
|> put_resp_content_type("application/json")
|
2019-05-20 11:39:23 +00:00
|
|
|
|> send_resp(415, Jason.encode!(%{"error" => "mascots can only be images"}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_mascot(%{assigns: %{user: user}} = conn, _params) do
|
2019-05-20 15:12:55 +00:00
|
|
|
mascot = User.get_mascot(user)
|
2019-05-20 11:39:23 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> json(mascot)
|
|
|
|
end
|
|
|
|
|
2019-05-02 19:19:14 +00:00
|
|
|
def favourited_by(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-11-25 20:27:00 +00:00
|
|
|
with %Activity{data: %{"object" => object}} <- Repo.get(Activity, id),
|
|
|
|
%Object{data: %{"likes" => likes}} <- Object.normalize(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
q = from(u in User, where: u.ap_id in ^likes)
|
2017-09-14 07:50:49 +00:00
|
|
|
users = Repo.all(q)
|
2018-12-16 16:49:42 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render(AccountView, "accounts.json", %{for: user, users: users, as: :user})
|
2017-09-14 07:50:49 +00:00
|
|
|
else
|
|
|
|
_ -> json(conn, [])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-02 19:19:14 +00:00
|
|
|
def reblogged_by(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-11-25 20:27:00 +00:00
|
|
|
with %Activity{data: %{"object" => object}} <- Repo.get(Activity, id),
|
|
|
|
%Object{data: %{"announcements" => announces}} <- Object.normalize(object) do
|
2018-03-30 13:01:53 +00:00
|
|
|
q = from(u in User, where: u.ap_id in ^announces)
|
2017-09-14 07:50:49 +00:00
|
|
|
users = Repo.all(q)
|
2018-12-16 16:49:42 +00:00
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render("accounts.json", %{for: user, users: users, as: :user})
|
2017-09-14 07:50:49 +00:00
|
|
|
else
|
|
|
|
_ -> json(conn, [])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-14 11:22:09 +00:00
|
|
|
def hashtag_timeline(%{assigns: %{user: user}} = conn, params) do
|
2018-05-29 10:29:51 +00:00
|
|
|
local_only = params["local"] in [true, "True", "true", "1"]
|
|
|
|
|
2018-12-19 16:21:35 +00:00
|
|
|
tags =
|
2019-01-26 15:46:20 +00:00
|
|
|
[params["tag"], params["any"]]
|
|
|
|
|> List.flatten()
|
2018-12-19 16:21:35 +00:00
|
|
|
|> Enum.uniq()
|
|
|
|
|> Enum.filter(& &1)
|
|
|
|
|> Enum.map(&String.downcase(&1))
|
|
|
|
|
2019-01-10 15:44:28 +00:00
|
|
|
tag_all =
|
|
|
|
params["all"] ||
|
|
|
|
[]
|
|
|
|
|> Enum.map(&String.downcase(&1))
|
|
|
|
|
2018-12-19 16:21:35 +00:00
|
|
|
tag_reject =
|
|
|
|
params["none"] ||
|
|
|
|
[]
|
|
|
|
|> Enum.map(&String.downcase(&1))
|
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
activities =
|
2018-03-30 13:01:53 +00:00
|
|
|
params
|
|
|
|
|> Map.put("type", "Create")
|
2018-05-29 10:29:51 +00:00
|
|
|
|> Map.put("local_only", local_only)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Map.put("blocking_user", user)
|
2018-09-05 20:49:15 +00:00
|
|
|
|> Map.put("muting_user", user)
|
2018-12-19 16:21:35 +00:00
|
|
|
|> Map.put("tag", tags)
|
2019-01-10 15:44:28 +00:00
|
|
|
|> Map.put("tag_all", tag_all)
|
2018-12-19 16:21:35 +00:00
|
|
|
|> Map.put("tag_reject", tag_reject)
|
2019-02-03 17:44:18 +00:00
|
|
|
|> ActivityPub.fetch_public_activities()
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-09-14 11:22:09 +00:00
|
|
|
|
|
|
|
conn
|
2018-05-29 10:29:51 +00:00
|
|
|
|> add_link_headers(:hashtag_timeline, activities, params["tag"], %{"local" => local_only})
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-14 11:22:09 +00:00
|
|
|
end
|
|
|
|
|
2019-03-11 18:03:30 +00:00
|
|
|
def followers(%{assigns: %{user: for_user}} = conn, %{"id" => id} = params) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_id(id),
|
2019-03-11 18:03:30 +00:00
|
|
|
followers <- MastodonAPI.get_followers(user, params) do
|
2018-12-05 20:25:06 +00:00
|
|
|
followers =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> followers
|
2019-02-03 18:24:09 +00:00
|
|
|
user.info.hide_followers -> []
|
2018-12-05 20:25:06 +00:00
|
|
|
true -> followers
|
|
|
|
end
|
|
|
|
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
2019-03-11 18:03:30 +00:00
|
|
|
|> add_link_headers(:followers, followers, user)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render("accounts.json", %{for: for_user, users: followers, as: :user})
|
2017-09-14 16:30:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-11 18:03:30 +00:00
|
|
|
def following(%{assigns: %{user: for_user}} = conn, %{"id" => id} = params) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_id(id),
|
2019-03-11 18:03:30 +00:00
|
|
|
followers <- MastodonAPI.get_friends(user, params) do
|
2018-12-05 20:25:06 +00:00
|
|
|
followers =
|
|
|
|
cond do
|
|
|
|
for_user && user.id == for_user.id -> followers
|
2019-02-06 22:34:44 +00:00
|
|
|
user.info.hide_follows -> []
|
2018-12-05 20:25:06 +00:00
|
|
|
true -> followers
|
|
|
|
end
|
|
|
|
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
2019-03-11 18:03:30 +00:00
|
|
|
|> add_link_headers(:following, followers, user)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render("accounts.json", %{for: for_user, users: followers, as: :user})
|
2017-09-14 16:30:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 16:03:32 +00:00
|
|
|
def follow_requests(%{assigns: %{user: followed}} = conn, _params) do
|
|
|
|
with {:ok, follow_requests} <- User.get_follow_requests(followed) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render("accounts.json", %{for: followed, users: follow_requests, as: :user})
|
2018-05-26 16:03:32 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 16:16:20 +00:00
|
|
|
def authorize_follow_request(%{assigns: %{user: followed}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = follower <- User.get_cached_by_id(id),
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, follower} <- CommonAPI.accept_follow_request(follower, followed) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: followed, target: follower})
|
2018-05-26 16:16:20 +00:00
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-26 18:03:23 +00:00
|
|
|
def reject_follow_request(%{assigns: %{user: followed}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = follower <- User.get_cached_by_id(id),
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, follower} <- CommonAPI.reject_follow_request(follower, followed) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: followed, target: follower})
|
2018-05-26 18:03:23 +00:00
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
|
|
|
end
|
|
|
|
end
|
2018-05-26 16:16:20 +00:00
|
|
|
|
2017-10-28 21:07:38 +00:00
|
|
|
def follow(%{assigns: %{user: follower}} = conn, %{"id" => id}) do
|
2019-04-15 09:37:49 +00:00
|
|
|
with {_, %User{} = followed} <- {:followed, User.get_cached_by_id(id)},
|
2019-04-15 06:44:16 +00:00
|
|
|
{_, true} <- {:followed, follower.id != followed.id},
|
2019-04-19 05:35:05 +00:00
|
|
|
{:ok, follower} <- MastodonAPI.follow(follower, followed, conn.params) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: follower, target: followed})
|
2017-10-25 18:02:42 +00:00
|
|
|
else
|
2019-04-15 06:44:16 +00:00
|
|
|
{:followed, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
{:error, message} ->
|
2017-10-25 18:25:37 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2017-09-14 16:30:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-28 21:30:10 +00:00
|
|
|
def follow(%{assigns: %{user: follower}} = conn, %{"uri" => uri}) do
|
2019-04-15 09:37:49 +00:00
|
|
|
with {_, %User{} = followed} <- {:followed, User.get_cached_by_nickname(uri)},
|
2019-04-15 06:44:16 +00:00
|
|
|
{_, true} <- {:followed, follower.id != followed.id},
|
2019-03-03 21:50:00 +00:00
|
|
|
{:ok, follower, followed, _} <- CommonAPI.follow(follower, followed) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("account.json", %{user: followed, for: follower})
|
2017-10-28 21:07:38 +00:00
|
|
|
else
|
2019-04-15 06:44:16 +00:00
|
|
|
{:followed, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
{:error, message} ->
|
2017-10-28 21:07:38 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2017-10-28 21:07:38 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-14 16:30:05 +00:00
|
|
|
def unfollow(%{assigns: %{user: follower}} = conn, %{"id" => id}) do
|
2019-04-15 09:37:49 +00:00
|
|
|
with {_, %User{} = followed} <- {:followed, User.get_cached_by_id(id)},
|
2019-04-15 06:44:16 +00:00
|
|
|
{_, true} <- {:followed, follower.id != followed.id},
|
2019-03-13 06:04:49 +00:00
|
|
|
{:ok, follower} <- CommonAPI.unfollow(follower, followed) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: follower, target: followed})
|
2019-04-15 06:44:16 +00:00
|
|
|
else
|
|
|
|
{:followed, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
error ->
|
|
|
|
error
|
2017-09-14 16:30:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-05 20:49:15 +00:00
|
|
|
def mute(%{assigns: %{user: muter}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = muted <- User.get_cached_by_id(id),
|
2018-09-05 20:49:15 +00:00
|
|
|
{:ok, muter} <- User.mute(muter, muted) do
|
2019-02-19 20:09:16 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: muter, target: muted})
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2018-09-05 20:49:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unmute(%{assigns: %{user: muter}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = muted <- User.get_cached_by_id(id),
|
2018-09-05 20:49:15 +00:00
|
|
|
{:ok, muter} <- User.unmute(muter, muted) do
|
2019-02-19 20:09:16 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: muter, target: muted})
|
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2018-09-05 20:49:15 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 21:33:13 +00:00
|
|
|
def mutes(%{assigns: %{user: user}} = conn, _) do
|
2019-02-19 20:09:16 +00:00
|
|
|
with muted_accounts <- User.muted_users(user) do
|
|
|
|
res = AccountView.render("accounts.json", users: muted_accounts, for: user, as: :user)
|
2018-09-01 21:33:13 +00:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-03 07:38:05 +00:00
|
|
|
def block(%{assigns: %{user: blocker}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = blocked <- User.get_cached_by_id(id),
|
2018-05-22 08:27:40 +00:00
|
|
|
{:ok, blocker} <- User.block(blocker, blocked),
|
|
|
|
{:ok, _activity} <- ActivityPub.block(blocker, blocked) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: blocker, target: blocked})
|
2017-11-03 07:38:05 +00:00
|
|
|
else
|
2017-11-19 01:22:07 +00:00
|
|
|
{:error, message} ->
|
2017-11-03 07:38:05 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2017-11-03 07:38:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unblock(%{assigns: %{user: blocker}} = conn, %{"id" => id}) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = blocked <- User.get_cached_by_id(id),
|
2018-05-22 08:27:40 +00:00
|
|
|
{:ok, blocker} <- User.unblock(blocker, blocked),
|
|
|
|
{:ok, _activity} <- ActivityPub.unblock(blocker, blocked) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: blocker, target: blocked})
|
2017-11-03 07:38:05 +00:00
|
|
|
else
|
2017-11-19 01:22:07 +00:00
|
|
|
{:error, message} ->
|
2017-11-03 07:38:05 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
2018-03-27 14:45:38 +00:00
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2017-11-03 07:38:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-03 07:51:17 +00:00
|
|
|
def blocks(%{assigns: %{user: user}} = conn, _) do
|
2018-12-28 18:08:07 +00:00
|
|
|
with blocked_accounts <- User.blocked_users(user) do
|
|
|
|
res = AccountView.render("accounts.json", users: blocked_accounts, for: user, as: :user)
|
2017-11-03 07:51:17 +00:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-03 19:21:23 +00:00
|
|
|
def domain_blocks(%{assigns: %{user: %{info: info}}} = conn, _) do
|
2018-11-20 19:12:39 +00:00
|
|
|
json(conn, info.domain_blocks || [])
|
2018-06-03 19:21:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def block_domain(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
|
|
|
|
User.block_domain(blocker, domain)
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
|
|
|
def unblock_domain(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
|
|
|
|
User.unblock_domain(blocker, domain)
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
2019-04-05 15:51:45 +00:00
|
|
|
def subscribe(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-08 14:56:14 +00:00
|
|
|
with %User{} = subscription_target <- User.get_cached_by_id(id),
|
2019-04-06 15:20:06 +00:00
|
|
|
{:ok, subscription_target} = User.subscribe(user, subscription_target) do
|
2019-04-05 15:51:45 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: user, target: subscription_target})
|
2019-04-06 15:20:06 +00:00
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2019-04-05 15:51:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def unsubscribe(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2019-04-08 14:56:14 +00:00
|
|
|
with %User{} = subscription_target <- User.get_cached_by_id(id),
|
2019-04-06 15:20:06 +00:00
|
|
|
{:ok, subscription_target} = User.unsubscribe(user, subscription_target) do
|
2019-04-05 15:51:45 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: user, target: subscription_target})
|
2019-04-06 15:20:06 +00:00
|
|
|
else
|
|
|
|
{:error, message} ->
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(403, Jason.encode!(%{"error" => message}))
|
2019-04-05 15:51:45 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 01:08:54 +00:00
|
|
|
def search2(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
|
2019-03-01 17:13:02 +00:00
|
|
|
accounts = User.search(query, resolve: params["resolve"] == "true", for_user: user)
|
2019-05-31 09:22:13 +00:00
|
|
|
statuses = Activity.search(user, query)
|
2018-06-13 16:21:59 +00:00
|
|
|
tags_path = Web.base_url() <> "/tag/"
|
|
|
|
|
|
|
|
tags =
|
2019-02-03 17:44:18 +00:00
|
|
|
query
|
|
|
|
|> String.split()
|
2018-06-13 16:21:59 +00:00
|
|
|
|> Enum.uniq()
|
|
|
|
|> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
|
|
|
|
|> Enum.map(fn tag -> String.slice(tag, 1..-1) end)
|
|
|
|
|> Enum.map(fn tag -> %{name: tag, url: tags_path <> tag} end)
|
|
|
|
|
|
|
|
res = %{
|
|
|
|
"accounts" => AccountView.render("accounts.json", users: accounts, for: user, as: :user),
|
|
|
|
"statuses" =>
|
|
|
|
StatusView.render("index.json", activities: statuses, for: user, as: :activity),
|
|
|
|
"hashtags" => tags
|
|
|
|
}
|
|
|
|
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2017-10-30 03:37:07 +00:00
|
|
|
def search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
|
2019-03-01 17:13:02 +00:00
|
|
|
accounts = User.search(query, resolve: params["resolve"] == "true", for_user: user)
|
2019-05-31 09:22:13 +00:00
|
|
|
statuses = Activity.search(user, query)
|
2018-04-02 14:27:36 +00:00
|
|
|
|
|
|
|
tags =
|
2019-02-03 17:44:18 +00:00
|
|
|
query
|
|
|
|
|> String.split()
|
2018-04-02 14:27:36 +00:00
|
|
|
|> Enum.uniq()
|
|
|
|
|> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
|
|
|
|
|> Enum.map(fn tag -> String.slice(tag, 1..-1) end)
|
2017-09-16 08:42:24 +00:00
|
|
|
|
|
|
|
res = %{
|
|
|
|
"accounts" => AccountView.render("accounts.json", users: accounts, for: user, as: :user),
|
2018-03-30 13:01:53 +00:00
|
|
|
"statuses" =>
|
|
|
|
StatusView.render("index.json", activities: statuses, for: user, as: :activity),
|
2018-04-01 07:08:05 +00:00
|
|
|
"hashtags" => tags
|
2017-09-16 08:42:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2017-10-30 18:23:16 +00:00
|
|
|
def account_search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
|
2019-03-01 17:13:02 +00:00
|
|
|
accounts = User.search(query, resolve: params["resolve"] == "true", for_user: user)
|
2017-10-30 03:37:07 +00:00
|
|
|
|
|
|
|
res = AccountView.render("accounts.json", users: accounts, for: user, as: :user)
|
|
|
|
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2019-01-12 14:42:52 +00:00
|
|
|
def favourites(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 13:01:53 +00:00
|
|
|
params =
|
2019-01-12 14:42:52 +00:00
|
|
|
params
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("favorited_by", user.ap_id)
|
|
|
|
|> Map.put("blocking_user", user)
|
2017-09-17 11:09:49 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
activities =
|
2019-03-24 23:15:45 +00:00
|
|
|
ActivityPub.fetch_activities([], params)
|
2018-03-30 13:01:53 +00:00
|
|
|
|> Enum.reverse()
|
2017-09-17 11:09:49 +00:00
|
|
|
|
|
|
|
conn
|
2019-01-12 14:03:35 +00:00
|
|
|
|> add_link_headers(:favourites, activities)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-17 11:09:49 +00:00
|
|
|
end
|
|
|
|
|
2019-04-23 02:47:43 +00:00
|
|
|
def user_favourites(%{assigns: %{user: for_user}} = conn, %{"id" => id} = params) do
|
|
|
|
with %User{} = user <- User.get_by_id(id),
|
|
|
|
false <- user.info.hide_favorites do
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("favorited_by", user.ap_id)
|
|
|
|
|> Map.put("blocking_user", for_user)
|
|
|
|
|
|
|
|
recipients =
|
|
|
|
if for_user do
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"] ++
|
|
|
|
[for_user.ap_id | for_user.following]
|
|
|
|
else
|
|
|
|
["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
end
|
|
|
|
|
|
|
|
activities =
|
|
|
|
recipients
|
|
|
|
|> ActivityPub.fetch_activities(params)
|
|
|
|
|> Enum.reverse()
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(:favourites, activities)
|
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: for_user, as: :activity})
|
|
|
|
else
|
|
|
|
nil ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
|
|
|
true ->
|
|
|
|
conn
|
|
|
|
|> put_status(403)
|
|
|
|
|> json(%{error: "Can't get favorites"})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-14 12:45:56 +00:00
|
|
|
def bookmarks(%{assigns: %{user: user}} = conn, params) do
|
2019-04-22 07:20:43 +00:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-04-14 12:45:56 +00:00
|
|
|
|
|
|
|
bookmarks =
|
|
|
|
Bookmark.for_user_query(user.id)
|
|
|
|
|> Pagination.fetch_paginated(params)
|
2018-09-19 00:04:56 +00:00
|
|
|
|
|
|
|
activities =
|
2019-04-14 12:45:56 +00:00
|
|
|
bookmarks
|
2019-05-07 15:00:50 +00:00
|
|
|
|> Enum.map(fn b -> Map.put(b.activity, :bookmark, Map.delete(b, :activity)) end)
|
2018-09-19 00:04:56 +00:00
|
|
|
|
|
|
|
conn
|
2019-04-14 12:45:56 +00:00
|
|
|
|> add_link_headers(:bookmarks, bookmarks)
|
2018-09-19 00:04:56 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
|
2018-04-29 13:02:46 +00:00
|
|
|
def get_lists(%{assigns: %{user: user}} = conn, opts) do
|
|
|
|
lists = Pleroma.List.for_user(user, opts)
|
|
|
|
res = ListView.render("lists.json", lists: lists)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_list(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user) do
|
2018-04-29 13:02:46 +00:00
|
|
|
res = ListView.render("list.json", list: list)
|
|
|
|
json(conn, res)
|
|
|
|
else
|
2019-02-01 17:15:15 +00:00
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
2018-04-29 13:02:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-10-18 16:46:26 +00:00
|
|
|
def account_lists(%{assigns: %{user: user}} = conn, %{"id" => account_id}) do
|
|
|
|
lists = Pleroma.List.get_lists_account_belongs(user, account_id)
|
|
|
|
res = ListView.render("lists.json", lists: lists)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2018-04-29 13:02:46 +00:00
|
|
|
def delete_list(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
|
2018-04-29 13:02:46 +00:00
|
|
|
{:ok, _list} <- Pleroma.List.delete(list) do
|
|
|
|
json(conn, %{})
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
json(conn, "error")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_list(%{assigns: %{user: user}} = conn, %{"title" => title}) do
|
|
|
|
with {:ok, %Pleroma.List{} = list} <- Pleroma.List.create(title, user) do
|
|
|
|
res = ListView.render("list.json", list: list)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_to_list(%{assigns: %{user: user}} = conn, %{"id" => id, "account_ids" => accounts}) do
|
|
|
|
accounts
|
|
|
|
|> Enum.each(fn account_id ->
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
|
2019-04-22 07:20:43 +00:00
|
|
|
%User{} = followed <- User.get_cached_by_id(account_id) do
|
2018-04-29 13:02:46 +00:00
|
|
|
Pleroma.List.follow(list, followed)
|
2018-04-29 13:02:46 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
|
|
|
def remove_from_list(%{assigns: %{user: user}} = conn, %{"id" => id, "account_ids" => accounts}) do
|
|
|
|
accounts
|
|
|
|
|> Enum.each(fn account_id ->
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
|
2019-05-17 07:25:20 +00:00
|
|
|
%User{} = followed <- User.get_cached_by_id(account_id) do
|
2018-04-29 13:02:46 +00:00
|
|
|
Pleroma.List.unfollow(list, followed)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_accounts(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
|
2018-04-29 13:02:46 +00:00
|
|
|
{:ok, users} = Pleroma.List.get_following(list) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-05-02 19:19:14 +00:00
|
|
|
|> render("accounts.json", %{for: user, users: users, as: :user})
|
2018-04-29 13:02:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def rename_list(%{assigns: %{user: user}} = conn, %{"id" => id, "title" => title}) do
|
2018-04-29 13:02:46 +00:00
|
|
|
with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
|
2018-04-29 13:02:46 +00:00
|
|
|
{:ok, list} <- Pleroma.List.rename(list, title) do
|
|
|
|
res = ListView.render("list.json", list: list)
|
|
|
|
json(conn, res)
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
json(conn, "error")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def list_timeline(%{assigns: %{user: user}} = conn, %{"list_id" => id} = params) do
|
2018-12-09 09:12:48 +00:00
|
|
|
with %Pleroma.List{title: _title, following: following} <- Pleroma.List.get(id, user) do
|
2018-04-29 13:02:46 +00:00
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("blocking_user", user)
|
2018-09-05 20:49:15 +00:00
|
|
|
|> Map.put("muting_user", user)
|
2018-04-29 13:02:46 +00:00
|
|
|
|
2018-08-29 08:51:51 +00:00
|
|
|
# we must filter the following list for the user to avoid leaking statuses the user
|
|
|
|
# does not actually have permission to see (for more info, peruse security issue #270).
|
2019-02-03 17:44:18 +00:00
|
|
|
activities =
|
2018-08-29 08:51:51 +00:00
|
|
|
following
|
|
|
|
|> Enum.filter(fn x -> x in user.following end)
|
2019-02-03 17:44:18 +00:00
|
|
|
|> ActivityPub.fetch_activities_bounded(following, params)
|
2018-04-29 13:02:46 +00:00
|
|
|
|> Enum.reverse()
|
|
|
|
|
|
|
|
conn
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2018-04-29 13:02:46 +00:00
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
conn
|
|
|
|
|> put_status(403)
|
|
|
|
|> json(%{error: "Error."})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-12 13:23:05 +00:00
|
|
|
def index(%{assigns: %{user: user}} = conn, _params) do
|
2019-04-05 23:36:42 +00:00
|
|
|
token = get_session(conn, :oauth_token)
|
2017-11-12 13:23:05 +00:00
|
|
|
|
|
|
|
if user && token do
|
2017-11-16 08:40:06 +00:00
|
|
|
mastodon_emoji = mastodonized_emoji()
|
2018-09-22 02:48:42 +00:00
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
limit = Config.get([:instance, :limit])
|
2018-11-06 18:34:57 +00:00
|
|
|
|
2018-09-22 02:48:42 +00:00
|
|
|
accounts =
|
|
|
|
Map.put(%{}, user.id, AccountView.render("account.json", %{user: user, for: user}))
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
initial_state =
|
|
|
|
%{
|
|
|
|
meta: %{
|
2019-05-03 11:45:04 +00:00
|
|
|
streaming_api_base_url: Pleroma.Web.Endpoint.websocket_url(),
|
2018-03-30 13:01:53 +00:00
|
|
|
access_token: token,
|
|
|
|
locale: "en",
|
|
|
|
domain: Pleroma.Web.Endpoint.host(),
|
|
|
|
admin: "1",
|
|
|
|
me: "#{user.id}",
|
|
|
|
unfollow_modal: false,
|
|
|
|
boost_modal: false,
|
|
|
|
delete_modal: true,
|
|
|
|
auto_play_gif: false,
|
2018-06-04 15:44:08 +00:00
|
|
|
display_sensitive_media: false,
|
2018-06-23 09:54:04 +00:00
|
|
|
reduce_motion: false,
|
2019-04-04 07:07:25 +00:00
|
|
|
max_toot_chars: limit,
|
2019-05-20 15:12:55 +00:00
|
|
|
mascot: User.get_mascot(user)["url"]
|
2017-11-12 13:23:05 +00:00
|
|
|
},
|
2019-05-21 06:13:10 +00:00
|
|
|
poll_limits: Config.get([:instance, :poll_limits]),
|
2018-06-26 18:48:35 +00:00
|
|
|
rights: %{
|
2019-02-03 17:44:18 +00:00
|
|
|
delete_others_notice: present?(user.info.is_moderator),
|
|
|
|
admin: present?(user.info.is_admin)
|
2018-06-26 18:48:35 +00:00
|
|
|
},
|
2018-03-30 13:01:53 +00:00
|
|
|
compose: %{
|
|
|
|
me: "#{user.id}",
|
2018-11-20 19:12:39 +00:00
|
|
|
default_privacy: user.info.default_scope,
|
2019-02-17 23:21:13 +00:00
|
|
|
default_sensitive: false,
|
|
|
|
allow_content_types: Config.get([:instance, :allowed_post_formats])
|
2018-03-30 13:01:53 +00:00
|
|
|
},
|
|
|
|
media_attachments: %{
|
|
|
|
accept_content_types: [
|
|
|
|
".jpg",
|
|
|
|
".jpeg",
|
|
|
|
".png",
|
|
|
|
".gif",
|
|
|
|
".webm",
|
|
|
|
".mp4",
|
|
|
|
".m4v",
|
|
|
|
"image\/jpeg",
|
|
|
|
"image\/png",
|
|
|
|
"image\/gif",
|
|
|
|
"video\/webm",
|
|
|
|
"video\/mp4"
|
|
|
|
]
|
|
|
|
},
|
2018-04-10 16:38:52 +00:00
|
|
|
settings:
|
2018-12-16 11:15:34 +00:00
|
|
|
user.info.settings ||
|
2018-04-10 16:38:52 +00:00
|
|
|
%{
|
|
|
|
onboarded: true,
|
|
|
|
home: %{
|
|
|
|
shows: %{
|
|
|
|
reblog: true,
|
|
|
|
reply: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
notifications: %{
|
|
|
|
alerts: %{
|
|
|
|
follow: true,
|
|
|
|
favourite: true,
|
|
|
|
reblog: true,
|
|
|
|
mention: true
|
|
|
|
},
|
|
|
|
shows: %{
|
|
|
|
follow: true,
|
|
|
|
favourite: true,
|
|
|
|
reblog: true,
|
|
|
|
mention: true
|
|
|
|
},
|
|
|
|
sounds: %{
|
|
|
|
follow: true,
|
|
|
|
favourite: true,
|
|
|
|
reblog: true,
|
|
|
|
mention: true
|
|
|
|
}
|
|
|
|
}
|
2018-03-30 13:01:53 +00:00
|
|
|
},
|
|
|
|
push_subscription: nil,
|
|
|
|
accounts: accounts,
|
|
|
|
custom_emojis: mastodon_emoji,
|
2018-11-06 18:34:57 +00:00
|
|
|
char_limit: limit
|
2018-03-30 13:01:53 +00:00
|
|
|
}
|
|
|
|
|> Jason.encode!()
|
|
|
|
|
2017-11-12 13:23:05 +00:00
|
|
|
conn
|
|
|
|
|> put_layout(false)
|
2018-12-16 16:49:42 +00:00
|
|
|
|> put_view(MastodonView)
|
2019-05-31 23:42:46 +00:00
|
|
|
|> render("index.html", %{initial_state: initial_state})
|
2017-11-12 13:23:05 +00:00
|
|
|
else
|
|
|
|
conn
|
2019-04-05 23:36:42 +00:00
|
|
|
|> put_session(:return_to, conn.request_path)
|
2017-11-12 13:23:05 +00:00
|
|
|
|> redirect(to: "/web/login")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-07 14:26:56 +00:00
|
|
|
def put_settings(%{assigns: %{user: user}} = conn, %{"data" => settings} = _params) do
|
2018-12-06 14:42:07 +00:00
|
|
|
info_cng = User.Info.mastodon_settings_update(user.info, settings)
|
|
|
|
|
2018-12-16 11:15:34 +00:00
|
|
|
with changeset <- Ecto.Changeset.change(user),
|
2018-12-06 14:42:07 +00:00
|
|
|
changeset <- Ecto.Changeset.put_embed(changeset, :info, info_cng),
|
2018-12-09 09:12:48 +00:00
|
|
|
{:ok, _user} <- User.update_and_set_cache(changeset) do
|
|
|
|
json(conn, %{})
|
2018-04-10 16:38:52 +00:00
|
|
|
else
|
|
|
|
e ->
|
2018-12-16 11:15:34 +00:00
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/json")
|
|
|
|
|> send_resp(500, Jason.encode!(%{"error" => inspect(e)}))
|
2018-04-07 14:26:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 14:25:25 +00:00
|
|
|
def login(%{assigns: %{user: %User{}}} = conn, _params) do
|
|
|
|
redirect(conn, to: local_mastodon_root_path(conn))
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "Local Mastodon FE login init action"
|
|
|
|
def login(conn, %{"code" => auth_token}) do
|
2018-11-06 14:19:11 +00:00
|
|
|
with {:ok, app} <- get_or_make_app(),
|
2019-04-01 14:25:25 +00:00
|
|
|
%Authorization{} = auth <- Repo.get_by(Authorization, token: auth_token, app_id: app.id),
|
2018-11-06 14:19:11 +00:00
|
|
|
{:ok, token} <- Token.exchange_token(app, auth) do
|
|
|
|
conn
|
|
|
|
|> put_session(:oauth_token, token.token)
|
2019-04-01 14:25:25 +00:00
|
|
|
|> redirect(to: local_mastodon_root_path(conn))
|
2018-11-06 14:19:11 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-01 14:25:25 +00:00
|
|
|
@doc "Local Mastodon FE callback action"
|
2017-11-19 01:22:07 +00:00
|
|
|
def login(conn, _) do
|
2018-11-06 14:19:11 +00:00
|
|
|
with {:ok, app} <- get_or_make_app() do
|
|
|
|
path =
|
2019-01-27 12:39:20 +00:00
|
|
|
o_auth_path(
|
|
|
|
conn,
|
|
|
|
:authorize,
|
2018-11-06 14:19:11 +00:00
|
|
|
response_type: "code",
|
|
|
|
client_id: app.client_id,
|
|
|
|
redirect_uri: ".",
|
2019-02-17 10:49:14 +00:00
|
|
|
scope: Enum.join(app.scopes, " ")
|
2018-11-06 14:19:11 +00:00
|
|
|
)
|
|
|
|
|
2019-04-05 23:36:42 +00:00
|
|
|
redirect(conn, to: path)
|
2018-11-06 14:19:11 +00:00
|
|
|
end
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2019-04-05 23:36:42 +00:00
|
|
|
defp local_mastodon_root_path(conn) do
|
|
|
|
case get_session(conn, :return_to) do
|
|
|
|
nil ->
|
|
|
|
mastodon_api_path(conn, :index, ["getting-started"])
|
|
|
|
|
|
|
|
return_to ->
|
|
|
|
delete_session(conn, :return_to)
|
|
|
|
return_to
|
2018-11-06 14:19:11 +00:00
|
|
|
end
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2019-03-05 03:18:43 +00:00
|
|
|
defp get_or_make_app do
|
2019-02-07 19:14:06 +00:00
|
|
|
find_attrs = %{client_name: @local_mastodon_name, redirect_uris: "."}
|
2019-02-20 14:27:41 +00:00
|
|
|
scopes = ["read", "write", "follow", "push"]
|
2019-02-07 19:14:06 +00:00
|
|
|
|
|
|
|
with %App{} = app <- Repo.get_by(App, find_attrs) do
|
2019-02-20 14:27:41 +00:00
|
|
|
{:ok, app} =
|
|
|
|
if app.scopes == scopes do
|
|
|
|
{:ok, app}
|
|
|
|
else
|
|
|
|
app
|
|
|
|
|> Ecto.Changeset.change(%{scopes: scopes})
|
|
|
|
|> Repo.update()
|
|
|
|
end
|
|
|
|
|
2017-11-12 13:23:05 +00:00
|
|
|
{:ok, app}
|
|
|
|
else
|
|
|
|
_e ->
|
2019-02-13 21:29:29 +00:00
|
|
|
cs =
|
|
|
|
App.register_changeset(
|
|
|
|
%App{},
|
2019-02-20 14:27:41 +00:00
|
|
|
Map.put(find_attrs, :scopes, scopes)
|
2019-02-13 21:29:29 +00:00
|
|
|
)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-12 13:23:05 +00:00
|
|
|
Repo.insert(cs)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-19 12:23:16 +00:00
|
|
|
def logout(conn, _) do
|
|
|
|
conn
|
|
|
|
|> clear_session
|
|
|
|
|> redirect(to: "/")
|
|
|
|
end
|
|
|
|
|
2017-09-14 16:30:05 +00:00
|
|
|
def relationship_noop(%{assigns: %{user: user}} = conn, %{"id" => id}) do
|
|
|
|
Logger.debug("Unimplemented, returning unmodified relationship")
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{} = target <- User.get_cached_by_id(id) do
|
2018-12-16 16:49:42 +00:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
|
|
|
|> render("relationship.json", %{user: user, target: target})
|
2017-09-14 16:30:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-09 17:19:13 +00:00
|
|
|
def empty_array(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty array")
|
|
|
|
json(conn, [])
|
|
|
|
end
|
2017-11-10 13:24:39 +00:00
|
|
|
|
2018-03-09 18:56:21 +00:00
|
|
|
def empty_object(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty object")
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
2018-09-20 14:37:18 +00:00
|
|
|
def get_filters(%{assigns: %{user: user}} = conn, _) do
|
2019-02-03 17:44:18 +00:00
|
|
|
filters = Filter.get_filters(user)
|
2018-08-14 02:27:28 +00:00
|
|
|
res = FilterView.render("filters.json", filters: filters)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create_filter(
|
|
|
|
%{assigns: %{user: user}} = conn,
|
|
|
|
%{"phrase" => phrase, "context" => context} = params
|
|
|
|
) do
|
2019-02-03 17:44:18 +00:00
|
|
|
query = %Filter{
|
2018-08-14 02:27:28 +00:00
|
|
|
user_id: user.id,
|
|
|
|
phrase: phrase,
|
|
|
|
context: context,
|
2019-05-13 18:05:33 +00:00
|
|
|
hide: Map.get(params, "irreversible", false),
|
2018-08-14 02:27:28 +00:00
|
|
|
whole_word: Map.get(params, "boolean", true)
|
|
|
|
# expires_at
|
|
|
|
}
|
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
{:ok, response} = Filter.create(query)
|
2018-08-14 02:27:28 +00:00
|
|
|
res = FilterView.render("filter.json", filter: response)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2018-09-20 14:37:18 +00:00
|
|
|
def get_filter(%{assigns: %{user: user}} = conn, %{"id" => filter_id}) do
|
2019-02-03 17:44:18 +00:00
|
|
|
filter = Filter.get(filter_id, user)
|
2018-08-14 02:27:28 +00:00
|
|
|
res = FilterView.render("filter.json", filter: filter)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_filter(
|
|
|
|
%{assigns: %{user: user}} = conn,
|
|
|
|
%{"phrase" => phrase, "context" => context, "id" => filter_id} = params
|
|
|
|
) do
|
2019-02-03 17:44:18 +00:00
|
|
|
query = %Filter{
|
2018-08-14 02:27:28 +00:00
|
|
|
user_id: user.id,
|
|
|
|
filter_id: filter_id,
|
|
|
|
phrase: phrase,
|
|
|
|
context: context,
|
|
|
|
hide: Map.get(params, "irreversible", nil),
|
|
|
|
whole_word: Map.get(params, "boolean", true)
|
|
|
|
# expires_at
|
|
|
|
}
|
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
{:ok, response} = Filter.update(query)
|
2018-08-14 02:27:28 +00:00
|
|
|
res = FilterView.render("filter.json", filter: response)
|
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
|
2018-09-20 14:37:18 +00:00
|
|
|
def delete_filter(%{assigns: %{user: user}} = conn, %{"id" => filter_id}) do
|
2019-02-03 17:44:18 +00:00
|
|
|
query = %Filter{
|
2018-08-14 02:27:28 +00:00
|
|
|
user_id: user.id,
|
|
|
|
filter_id: filter_id
|
|
|
|
}
|
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
{:ok, _} = Filter.delete(query)
|
2018-08-14 02:27:28 +00:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
# fallback action
|
|
|
|
#
|
2019-04-03 15:55:04 +00:00
|
|
|
def errors(conn, {:error, %Changeset{} = changeset}) do
|
|
|
|
error_message =
|
|
|
|
changeset
|
|
|
|
|> Changeset.traverse_errors(fn {message, _opt} -> message end)
|
|
|
|
|> Enum.map_join(", ", fn {_k, v} -> v end)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_status(422)
|
|
|
|
|> json(%{error: error_message})
|
|
|
|
end
|
|
|
|
|
2019-03-28 09:39:10 +00:00
|
|
|
def errors(conn, {:error, :not_found}) do
|
|
|
|
conn
|
|
|
|
|> put_status(404)
|
|
|
|
|> json(%{error: "Record not found"})
|
|
|
|
end
|
|
|
|
|
2018-06-03 17:28:11 +00:00
|
|
|
def errors(conn, _) do
|
|
|
|
conn
|
|
|
|
|> put_status(500)
|
|
|
|
|> json("Something went wrong")
|
|
|
|
end
|
2018-07-13 15:21:38 +00:00
|
|
|
|
2018-07-13 15:44:18 +00:00
|
|
|
def suggestions(%{assigns: %{user: user}} = conn, _) do
|
2019-02-03 17:44:18 +00:00
|
|
|
suggestions = Config.get(:suggestions)
|
2018-11-06 18:34:57 +00:00
|
|
|
|
|
|
|
if Keyword.get(suggestions, :enabled, false) do
|
|
|
|
api = Keyword.get(suggestions, :third_party_engine, "")
|
|
|
|
timeout = Keyword.get(suggestions, :timeout, 5000)
|
|
|
|
limit = Keyword.get(suggestions, :limit, 23)
|
2018-07-17 07:45:18 +00:00
|
|
|
|
2019-02-03 17:44:18 +00:00
|
|
|
host = Config.get([Pleroma.Web.Endpoint, :url, :host])
|
2018-07-17 07:45:18 +00:00
|
|
|
|
|
|
|
user = user.nickname
|
2019-02-03 17:44:18 +00:00
|
|
|
|
|
|
|
url =
|
|
|
|
api
|
|
|
|
|> String.replace("{{host}}", host)
|
|
|
|
|> String.replace("{{user}}", user)
|
2018-07-17 07:45:18 +00:00
|
|
|
|
2018-12-02 14:08:36 +00:00
|
|
|
with {:ok, %{status: 200, body: body}} <-
|
2019-05-25 04:24:21 +00:00
|
|
|
HTTP.get(
|
2018-12-05 07:08:34 +00:00
|
|
|
url,
|
|
|
|
[],
|
|
|
|
adapter: [
|
2019-01-30 11:38:38 +00:00
|
|
|
recv_timeout: timeout,
|
|
|
|
pool: :default
|
2018-12-05 07:08:34 +00:00
|
|
|
]
|
|
|
|
),
|
2018-07-17 07:45:18 +00:00
|
|
|
{:ok, data} <- Jason.decode(body) do
|
2019-02-03 17:44:18 +00:00
|
|
|
data =
|
|
|
|
data
|
|
|
|
|> Enum.slice(0, limit)
|
2018-07-17 07:45:18 +00:00
|
|
|
|> Enum.map(fn x ->
|
2018-08-23 02:52:18 +00:00
|
|
|
Map.put(
|
|
|
|
x,
|
|
|
|
"id",
|
|
|
|
case User.get_or_fetch(x["acct"]) do
|
2019-05-01 09:09:53 +00:00
|
|
|
{:ok, %User{id: id}} -> id
|
2018-08-23 02:52:18 +00:00
|
|
|
_ -> 0
|
|
|
|
end
|
|
|
|
)
|
2018-07-17 07:45:18 +00:00
|
|
|
end)
|
2018-08-28 08:01:17 +00:00
|
|
|
|> Enum.map(fn x ->
|
|
|
|
Map.put(x, "avatar", MediaProxy.url(x["avatar"]))
|
|
|
|
end)
|
|
|
|
|> Enum.map(fn x ->
|
|
|
|
Map.put(x, "avatar_static", MediaProxy.url(x["avatar_static"]))
|
|
|
|
end)
|
2018-07-15 11:36:26 +00:00
|
|
|
|
2018-07-17 07:45:18 +00:00
|
|
|
conn
|
2019-02-03 17:44:18 +00:00
|
|
|
|> json(data)
|
2018-07-17 07:45:18 +00:00
|
|
|
else
|
2018-07-17 08:29:18 +00:00
|
|
|
e -> Logger.error("Could not retrieve suggestions at fetch #{url}, #{inspect(e)}")
|
2018-07-17 07:45:18 +00:00
|
|
|
end
|
2018-07-14 01:04:37 +00:00
|
|
|
else
|
2018-07-17 07:45:18 +00:00
|
|
|
json(conn, [])
|
2018-07-14 01:04:37 +00:00
|
|
|
end
|
2018-07-13 15:21:38 +00:00
|
|
|
end
|
2018-10-25 03:52:45 +00:00
|
|
|
|
2019-02-22 11:02:51 +00:00
|
|
|
def status_card(%{assigns: %{user: user}} = conn, %{"id" => status_id}) do
|
2019-04-02 09:50:31 +00:00
|
|
|
with %Activity{} = activity <- Activity.get_by_id(status_id),
|
2019-02-22 12:29:52 +00:00
|
|
|
true <- Visibility.visible_for_user?(activity, user) do
|
2019-01-28 06:04:54 +00:00
|
|
|
data =
|
|
|
|
StatusView.render(
|
|
|
|
"card.json",
|
|
|
|
Pleroma.Web.RichMedia.Helpers.fetch_data_for_activity(activity)
|
|
|
|
)
|
2019-01-27 09:37:11 +00:00
|
|
|
|
2019-01-28 06:04:54 +00:00
|
|
|
json(conn, data)
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
%{}
|
|
|
|
end
|
2019-01-20 23:53:41 +00:00
|
|
|
end
|
|
|
|
|
2019-02-20 16:51:25 +00:00
|
|
|
def reports(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
case CommonAPI.report(user, params) do
|
|
|
|
{:ok, activity} ->
|
|
|
|
conn
|
|
|
|
|> put_view(ReportView)
|
|
|
|
|> try_render("report.json", %{activity: activity})
|
|
|
|
|
|
|
|
{:error, err} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:bad_request)
|
|
|
|
|> json(%{error: err})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-13 18:35:45 +00:00
|
|
|
def account_register(
|
|
|
|
%{assigns: %{app: app}} = conn,
|
|
|
|
%{"username" => nickname, "email" => _, "password" => _, "agreement" => true} = params
|
|
|
|
) do
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.take([
|
|
|
|
"email",
|
|
|
|
"captcha_solution",
|
|
|
|
"captcha_token",
|
|
|
|
"captcha_answer_data",
|
|
|
|
"token",
|
|
|
|
"password"
|
|
|
|
])
|
|
|
|
|> Map.put("nickname", nickname)
|
|
|
|
|> Map.put("fullname", params["fullname"] || nickname)
|
|
|
|
|> Map.put("bio", params["bio"] || "")
|
|
|
|
|> Map.put("confirm", params["password"])
|
|
|
|
|
|
|
|
with {:ok, user} <- TwitterAPI.register_user(params, need_confirmation: true),
|
|
|
|
{:ok, token} <- Token.create_token(app, user, %{scopes: app.scopes}) do
|
|
|
|
json(conn, %{
|
|
|
|
token_type: "Bearer",
|
|
|
|
access_token: token.token,
|
|
|
|
scope: app.scopes,
|
|
|
|
created_at: Token.Utils.format_created_at(token)
|
|
|
|
})
|
|
|
|
else
|
|
|
|
{:error, errors} ->
|
|
|
|
conn
|
|
|
|
|> put_status(400)
|
|
|
|
|> json(Jason.encode!(errors))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_register(%{assigns: %{app: _app}} = conn, _params) do
|
|
|
|
conn
|
|
|
|
|> put_status(400)
|
|
|
|
|> json(%{error: "Missing parameters"})
|
|
|
|
end
|
|
|
|
|
|
|
|
def account_register(conn, _) do
|
|
|
|
conn
|
|
|
|
|> put_status(403)
|
|
|
|
|> json(%{error: "Invalid credentials"})
|
|
|
|
end
|
|
|
|
|
2019-04-10 15:48:31 +00:00
|
|
|
def conversations(%{assigns: %{user: user}} = conn, params) do
|
|
|
|
participations = Participation.for_user_with_last_activity_id(user, params)
|
|
|
|
|
|
|
|
conversations =
|
|
|
|
Enum.map(participations, fn participation ->
|
2019-04-21 16:14:27 +00:00
|
|
|
ConversationView.render("participation.json", %{participation: participation, user: user})
|
2019-04-10 15:48:31 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> add_link_headers(:conversations, participations)
|
|
|
|
|> json(conversations)
|
|
|
|
end
|
|
|
|
|
|
|
|
def conversation_read(%{assigns: %{user: user}} = conn, %{"id" => participation_id}) do
|
|
|
|
with %Participation{} = participation <-
|
|
|
|
Repo.get_by(Participation, id: participation_id, user_id: user.id),
|
|
|
|
{:ok, participation} <- Participation.mark_as_read(participation) do
|
2019-04-21 16:14:27 +00:00
|
|
|
participation_view =
|
|
|
|
ConversationView.render("participation.json", %{participation: participation, user: user})
|
2019-04-21 13:26:13 +00:00
|
|
|
|
2019-04-10 15:48:31 +00:00
|
|
|
conn
|
2019-04-21 16:14:27 +00:00
|
|
|
|> json(participation_view)
|
2019-04-10 15:48:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-16 16:49:42 +00:00
|
|
|
def try_render(conn, target, params)
|
2018-10-25 03:52:45 +00:00
|
|
|
when is_binary(target) do
|
2018-12-16 16:49:42 +00:00
|
|
|
res = render(conn, target, params)
|
2018-10-25 03:52:45 +00:00
|
|
|
|
|
|
|
if res == nil do
|
|
|
|
conn
|
|
|
|
|> put_status(501)
|
|
|
|
|> json(%{error: "Can't display this activity"})
|
|
|
|
else
|
|
|
|
res
|
|
|
|
end
|
|
|
|
end
|
2018-10-25 04:05:13 +00:00
|
|
|
|
2018-12-16 16:49:42 +00:00
|
|
|
def try_render(conn, _, _) do
|
2018-10-25 04:05:13 +00:00
|
|
|
conn
|
|
|
|
|> put_status(501)
|
|
|
|
|> json(%{error: "Can't display this activity"})
|
|
|
|
end
|
2019-02-03 17:44:18 +00:00
|
|
|
|
|
|
|
defp present?(nil), do: false
|
|
|
|
defp present?(false), do: false
|
|
|
|
defp present?(_), do: true
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|