2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-06 11:06:25 -06:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-07-28 14:30:10 -06:00
|
|
|
|
2019-09-30 02:47:01 -06:00
|
|
|
import Pleroma.Web.ControllerHelper, only: [add_link_headers: 2]
|
2019-07-28 14:30:10 -06:00
|
|
|
|
2019-04-14 06:45:56 -06:00
|
|
|
alias Pleroma.Bookmark
|
2019-02-09 08:16:26 -07:00
|
|
|
alias Pleroma.Config
|
2019-03-25 16:13:58 -06:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 08:16:26 -07:00
|
|
|
alias Pleroma.User
|
2017-09-07 00:58:10 -06:00
|
|
|
alias Pleroma.Web
|
2019-03-04 19:52:23 -07:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-03-25 09:00:30 -06:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-02-09 08:16:26 -07:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
|
|
alias Pleroma.Web.MastodonAPI.MastodonView
|
2019-03-04 19:52:23 -07:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2018-12-06 06:50:20 -07:00
|
|
|
|
2017-11-18 18:22:07 -07:00
|
|
|
require Logger
|
2017-09-06 11:06:25 -06:00
|
|
|
|
2019-08-26 06:16:40 -06:00
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
2018-06-03 11:28:11 -06:00
|
|
|
|
2017-11-16 01:40:06 -07:00
|
|
|
defp mastodonized_emoji do
|
2018-11-05 05:24:00 -07:00
|
|
|
Pleroma.Emoji.get_all()
|
2019-08-31 01:14:53 -06:00
|
|
|
|> Enum.map(fn {shortcode, %Pleroma.Emoji{file: relative_url, tags: tags}} ->
|
2018-03-30 07:01:53 -06:00
|
|
|
url = to_string(URI.merge(Web.base_url(), relative_url))
|
|
|
|
|
2017-11-07 12:28:31 -07:00
|
|
|
%{
|
|
|
|
"shortcode" => shortcode,
|
|
|
|
"static_url" => url,
|
2018-05-01 00:24:30 -06:00
|
|
|
"visible_in_picker" => true,
|
2019-04-01 04:17:57 -06:00
|
|
|
"url" => url,
|
2019-06-29 17:05:28 -06:00
|
|
|
"tags" => tags,
|
|
|
|
# Assuming that a comma is authorized in the category name
|
|
|
|
"category" => (tags -- ["Custom"]) |> Enum.join(",")
|
2017-11-07 12:28:31 -07:00
|
|
|
}
|
|
|
|
end)
|
2017-11-16 01:40:06 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def custom_emojis(conn, _params) do
|
|
|
|
mastodon_emoji = mastodonized_emoji()
|
2018-03-30 07:01:53 -06:00
|
|
|
json(conn, mastodon_emoji)
|
2017-11-07 12:28:31 -07:00
|
|
|
end
|
|
|
|
|
2019-09-30 06:10:54 -06:00
|
|
|
def follows(%{assigns: %{user: follower}} = conn, %{"uri" => uri}) do
|
2019-04-15 03:37:49 -06:00
|
|
|
with {_, %User{} = followed} <- {:followed, User.get_cached_by_nickname(uri)},
|
2019-04-15 00:44:16 -06:00
|
|
|
{_, true} <- {:followed, follower.id != followed.id},
|
2019-03-03 14:50:00 -07:00
|
|
|
{:ok, follower, followed, _} <- CommonAPI.follow(follower, followed) do
|
2018-12-16 09:49:42 -07:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-09-30 06:10:54 -06:00
|
|
|
|> render("show.json", %{user: followed, for: follower})
|
2017-10-28 15:07:38 -06:00
|
|
|
else
|
2019-04-15 00:44:16 -06:00
|
|
|
{:followed, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
2017-11-18 18:22:07 -07:00
|
|
|
{:error, message} ->
|
2017-10-28 15:07:38 -06:00
|
|
|
conn
|
2019-07-10 03:25:58 -06:00
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(%{error: message})
|
2017-10-28 15:07:38 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 15:33:13 -06:00
|
|
|
def mutes(%{assigns: %{user: user}} = conn, _) do
|
2019-02-19 13:09:16 -07:00
|
|
|
with muted_accounts <- User.muted_users(user) do
|
2019-09-30 06:10:54 -06:00
|
|
|
res = AccountView.render("index.json", users: muted_accounts, for: user, as: :user)
|
2018-09-01 15:33:13 -06:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-03 01:51:17 -06:00
|
|
|
def blocks(%{assigns: %{user: user}} = conn, _) do
|
2018-12-28 11:08:07 -07:00
|
|
|
with blocked_accounts <- User.blocked_users(user) do
|
2019-09-30 06:10:54 -06:00
|
|
|
res = AccountView.render("index.json", users: blocked_accounts, for: user, as: :user)
|
2017-11-03 01:51:17 -06:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-12 07:42:52 -07:00
|
|
|
def favourites(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 07:01:53 -06:00
|
|
|
params =
|
2019-01-12 07:42:52 -07:00
|
|
|
params
|
2018-03-30 07:01:53 -06:00
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("favorited_by", user.ap_id)
|
|
|
|
|> Map.put("blocking_user", user)
|
2017-09-17 05:09:49 -06:00
|
|
|
|
2018-03-30 07:01:53 -06:00
|
|
|
activities =
|
2019-03-24 17:15:45 -06:00
|
|
|
ActivityPub.fetch_activities([], params)
|
2018-03-30 07:01:53 -06:00
|
|
|
|> Enum.reverse()
|
2017-09-17 05:09:49 -06:00
|
|
|
|
|
|
|
conn
|
2019-09-06 04:08:47 -06:00
|
|
|
|> add_link_headers(activities)
|
2018-12-16 09:49:42 -07:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-17 05:09:49 -06:00
|
|
|
end
|
|
|
|
|
2019-04-14 06:45:56 -06:00
|
|
|
def bookmarks(%{assigns: %{user: user}} = conn, params) do
|
2019-04-22 01:20:43 -06:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-04-14 06:45:56 -06:00
|
|
|
|
|
|
|
bookmarks =
|
|
|
|
Bookmark.for_user_query(user.id)
|
|
|
|
|> Pagination.fetch_paginated(params)
|
2018-09-18 18:04:56 -06:00
|
|
|
|
|
|
|
activities =
|
2019-04-14 06:45:56 -06:00
|
|
|
bookmarks
|
2019-05-07 09:00:50 -06:00
|
|
|
|> Enum.map(fn b -> Map.put(b.activity, :bookmark, Map.delete(b, :activity)) end)
|
2018-09-18 18:04:56 -06:00
|
|
|
|
|
|
|
conn
|
2019-09-06 04:08:47 -06:00
|
|
|
|> add_link_headers(bookmarks)
|
2018-09-18 18:04:56 -06:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
|
2017-11-12 06:23:05 -07:00
|
|
|
def index(%{assigns: %{user: user}} = conn, _params) do
|
2019-04-05 17:36:42 -06:00
|
|
|
token = get_session(conn, :oauth_token)
|
2017-11-12 06:23:05 -07:00
|
|
|
|
|
|
|
if user && token do
|
2017-11-16 01:40:06 -07:00
|
|
|
mastodon_emoji = mastodonized_emoji()
|
2018-09-21 20:48:42 -06:00
|
|
|
|
2019-02-03 10:44:18 -07:00
|
|
|
limit = Config.get([:instance, :limit])
|
2018-11-06 11:34:57 -07:00
|
|
|
|
2019-09-30 06:10:54 -06:00
|
|
|
accounts = Map.put(%{}, user.id, AccountView.render("show.json", %{user: user, for: user}))
|
2018-03-30 07:01:53 -06:00
|
|
|
|
|
|
|
initial_state =
|
|
|
|
%{
|
|
|
|
meta: %{
|
2019-05-03 05:45:04 -06:00
|
|
|
streaming_api_base_url: Pleroma.Web.Endpoint.websocket_url(),
|
2018-03-30 07:01:53 -06: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 09:44:08 -06:00
|
|
|
display_sensitive_media: false,
|
2018-06-23 03:54:04 -06:00
|
|
|
reduce_motion: false,
|
2019-04-04 01:07:25 -06:00
|
|
|
max_toot_chars: limit,
|
2019-05-20 09:12:55 -06:00
|
|
|
mascot: User.get_mascot(user)["url"]
|
2017-11-12 06:23:05 -07:00
|
|
|
},
|
2019-05-21 00:13:10 -06:00
|
|
|
poll_limits: Config.get([:instance, :poll_limits]),
|
2018-06-26 12:48:35 -06:00
|
|
|
rights: %{
|
2019-02-03 10:44:18 -07:00
|
|
|
delete_others_notice: present?(user.info.is_moderator),
|
|
|
|
admin: present?(user.info.is_admin)
|
2018-06-26 12:48:35 -06:00
|
|
|
},
|
2018-03-30 07:01:53 -06:00
|
|
|
compose: %{
|
|
|
|
me: "#{user.id}",
|
2018-11-20 12:12:39 -07:00
|
|
|
default_privacy: user.info.default_scope,
|
2019-02-17 16:21:13 -07:00
|
|
|
default_sensitive: false,
|
|
|
|
allow_content_types: Config.get([:instance, :allowed_post_formats])
|
2018-03-30 07:01:53 -06: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 10:38:52 -06:00
|
|
|
settings:
|
2018-12-16 04:15:34 -07:00
|
|
|
user.info.settings ||
|
2018-04-10 10:38:52 -06: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 07:01:53 -06:00
|
|
|
},
|
|
|
|
push_subscription: nil,
|
|
|
|
accounts: accounts,
|
|
|
|
custom_emojis: mastodon_emoji,
|
2018-11-06 11:34:57 -07:00
|
|
|
char_limit: limit
|
2018-03-30 07:01:53 -06:00
|
|
|
}
|
|
|
|
|> Jason.encode!()
|
|
|
|
|
2017-11-12 06:23:05 -07:00
|
|
|
conn
|
|
|
|
|> put_layout(false)
|
2018-12-16 09:49:42 -07:00
|
|
|
|> put_view(MastodonView)
|
2019-05-31 17:42:46 -06:00
|
|
|
|> render("index.html", %{initial_state: initial_state})
|
2017-11-12 06:23:05 -07:00
|
|
|
else
|
|
|
|
conn
|
2019-04-05 17:36:42 -06:00
|
|
|
|> put_session(:return_to, conn.request_path)
|
2017-11-12 06:23:05 -07:00
|
|
|
|> redirect(to: "/web/login")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-04-07 08:26:56 -06:00
|
|
|
def put_settings(%{assigns: %{user: user}} = conn, %{"data" => settings} = _params) do
|
2019-09-24 01:49:02 -06:00
|
|
|
with {:ok, _} <- User.update_info(user, &User.Info.mastodon_settings_update(&1, settings)) do
|
2018-12-09 02:12:48 -07:00
|
|
|
json(conn, %{})
|
2018-04-10 10:38:52 -06:00
|
|
|
else
|
|
|
|
e ->
|
2018-12-16 04:15:34 -07:00
|
|
|
conn
|
2019-07-10 03:25:58 -06:00
|
|
|
|> put_status(:internal_server_error)
|
|
|
|
|> json(%{error: inspect(e)})
|
2018-04-07 08:26:56 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-06 12:50:00 -06:00
|
|
|
# Stubs for unimplemented mastodon api
|
|
|
|
#
|
2017-09-09 11:19:13 -06:00
|
|
|
def empty_array(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty array")
|
|
|
|
json(conn, [])
|
|
|
|
end
|
2017-11-10 06:24:39 -07:00
|
|
|
|
2018-03-09 11:56:21 -07:00
|
|
|
def empty_object(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty object")
|
2018-08-13 20:27:28 -06:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
|
2019-02-03 10:44:18 -07:00
|
|
|
defp present?(nil), do: false
|
|
|
|
defp present?(false), do: false
|
|
|
|
defp present?(_), do: true
|
2017-09-06 11:06:25 -06:00
|
|
|
end
|