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-07-28 20:30:10 +00:00
|
|
|
|
2019-09-30 08:47:01 +00:00
|
|
|
import Pleroma.Web.ControllerHelper, only: [add_link_headers: 2]
|
2019-07-28 20:30:10 +00:00
|
|
|
|
2019-04-14 12:45:56 +00:00
|
|
|
alias Pleroma.Bookmark
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Config
|
2019-03-25 22:13:58 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 15:16:26 +00:00
|
|
|
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
|
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
|
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonView
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2018-12-06 13:50:20 +00:00
|
|
|
|
2017-11-19 01:22:07 +00:00
|
|
|
require Logger
|
2017-09-06 17:06:25 +00:00
|
|
|
|
2019-08-26 12:16:40 +00:00
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
2018-06-03 17:28:11 +00:00
|
|
|
|
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-08-31 07:14:53 +00:00
|
|
|
|> Enum.map(fn {shortcode, %Pleroma.Emoji{file: relative_url, tags: 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-06-29 23:05:28 +00:00
|
|
|
"tags" => tags,
|
|
|
|
# Assuming that a comma is authorized in the category name
|
|
|
|
"category" => (tags -- ["Custom"]) |> Enum.join(",")
|
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
|
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
def follows(%{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)
|
2019-09-30 12:10:54 +00:00
|
|
|
|> render("show.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
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(%{error: message})
|
2017-10-28 21:07:38 +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
|
2019-09-30 12:10:54 +00:00
|
|
|
res = AccountView.render("index.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: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
|
2019-09-30 12:10:54 +00:00
|
|
|
res = AccountView.render("index.json", users: blocked_accounts, for: user, as: :user)
|
2017-11-03 07:51:17 +00:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
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-09-06 10:08:47 +00:00
|
|
|
|> add_link_headers(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-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-09-06 10:08:47 +00:00
|
|
|
|> add_link_headers(bookmarks)
|
2018-09-19 00:04:56 +00:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
|
|
|
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
|
|
|
|
2019-09-30 12:10:54 +00:00
|
|
|
accounts = Map.put(%{}, user.id, AccountView.render("show.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
|
2019-09-24 07:49:02 +00:00
|
|
|
with {:ok, _} <- User.update_info(user, &User.Info.mastodon_settings_update(&1, settings)) do
|
2018-12-09 09:12:48 +00:00
|
|
|
json(conn, %{})
|
2018-04-10 16:38:52 +00:00
|
|
|
else
|
|
|
|
e ->
|
2018-12-16 11:15:34 +00:00
|
|
|
conn
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_status(:internal_server_error)
|
|
|
|
|> json(%{error: inspect(e)})
|
2018-04-07 14:26:56 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-06 18:50:00 +00:00
|
|
|
# Stubs for unimplemented mastodon api
|
|
|
|
#
|
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")
|
2018-08-14 02:27:28 +00:00
|
|
|
json(conn, %{})
|
|
|
|
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
|