2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 16:41:47 +01:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-07-28 22:30:10 +02:00
|
|
|
|
2019-09-30 10:47:01 +02:00
|
|
|
import Pleroma.Web.ControllerHelper, only: [add_link_headers: 2]
|
2019-07-28 22:30:10 +02:00
|
|
|
|
2019-04-14 14:45:56 +02:00
|
|
|
alias Pleroma.Bookmark
|
2019-03-25 23:13:58 +01:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.User
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2018-03-25 17:00:30 +02:00
|
|
|
alias Pleroma.Web.CommonAPI
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Web.MastodonAPI.StatusView
|
2018-12-06 14:50:20 +01:00
|
|
|
|
2017-11-19 02:22:07 +01:00
|
|
|
require Logger
|
2017-09-06 19:06:25 +02:00
|
|
|
|
2019-08-26 14:16:40 +02:00
|
|
|
action_fallback(Pleroma.Web.MastodonAPI.FallbackController)
|
2018-06-03 19:28:11 +02:00
|
|
|
|
2019-09-30 14:10:54 +02:00
|
|
|
def follows(%{assigns: %{user: follower}} = conn, %{"uri" => uri}) do
|
2019-04-15 11:37:49 +02:00
|
|
|
with {_, %User{} = followed} <- {:followed, User.get_cached_by_nickname(uri)},
|
2019-04-15 08:44:16 +02:00
|
|
|
{_, true} <- {:followed, follower.id != followed.id},
|
2019-03-03 22:50:00 +01:00
|
|
|
{:ok, follower, followed, _} <- CommonAPI.follow(follower, followed) do
|
2018-12-16 17:49:42 +01:00
|
|
|
conn
|
|
|
|
|> put_view(AccountView)
|
2019-09-30 14:10:54 +02:00
|
|
|
|> render("show.json", %{user: followed, for: follower})
|
2017-10-28 23:07:38 +02:00
|
|
|
else
|
2019-04-15 08:44:16 +02:00
|
|
|
{:followed, _} ->
|
|
|
|
{:error, :not_found}
|
|
|
|
|
2017-11-19 02:22:07 +01:00
|
|
|
{:error, message} ->
|
2017-10-28 23:07:38 +02:00
|
|
|
conn
|
2019-07-10 11:25:58 +02:00
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(%{error: message})
|
2017-10-28 23:07:38 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-09-01 23:33:13 +02:00
|
|
|
def mutes(%{assigns: %{user: user}} = conn, _) do
|
2019-02-19 21:09:16 +01:00
|
|
|
with muted_accounts <- User.muted_users(user) do
|
2019-09-30 14:10:54 +02:00
|
|
|
res = AccountView.render("index.json", users: muted_accounts, for: user, as: :user)
|
2018-09-01 23:33:13 +02:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-03 08:51:17 +01:00
|
|
|
def blocks(%{assigns: %{user: user}} = conn, _) do
|
2018-12-28 19:08:07 +01:00
|
|
|
with blocked_accounts <- User.blocked_users(user) do
|
2019-09-30 14:10:54 +02:00
|
|
|
res = AccountView.render("index.json", users: blocked_accounts, for: user, as: :user)
|
2017-11-03 08:51:17 +01:00
|
|
|
json(conn, res)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-12 15:42:52 +01:00
|
|
|
def favourites(%{assigns: %{user: user}} = conn, params) do
|
2018-03-30 15:01:53 +02:00
|
|
|
params =
|
2019-01-12 15:42:52 +01:00
|
|
|
params
|
2018-03-30 15:01:53 +02:00
|
|
|
|> Map.put("type", "Create")
|
|
|
|
|> Map.put("favorited_by", user.ap_id)
|
|
|
|
|> Map.put("blocking_user", user)
|
2017-09-17 13:09:49 +02:00
|
|
|
|
2018-03-30 15:01:53 +02:00
|
|
|
activities =
|
2019-03-25 00:15:45 +01:00
|
|
|
ActivityPub.fetch_activities([], params)
|
2018-03-30 15:01:53 +02:00
|
|
|
|> Enum.reverse()
|
2017-09-17 13:09:49 +02:00
|
|
|
|
|
|
|
conn
|
2019-09-06 12:08:47 +02:00
|
|
|
|> add_link_headers(activities)
|
2018-12-16 17:49:42 +01:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
2017-09-17 13:09:49 +02:00
|
|
|
end
|
|
|
|
|
2019-04-14 14:45:56 +02:00
|
|
|
def bookmarks(%{assigns: %{user: user}} = conn, params) do
|
2019-04-22 09:20:43 +02:00
|
|
|
user = User.get_cached_by_id(user.id)
|
2019-04-14 14:45:56 +02:00
|
|
|
|
|
|
|
bookmarks =
|
|
|
|
Bookmark.for_user_query(user.id)
|
|
|
|
|> Pagination.fetch_paginated(params)
|
2018-09-19 02:04:56 +02:00
|
|
|
|
|
|
|
activities =
|
2019-04-14 14:45:56 +02:00
|
|
|
bookmarks
|
2019-05-07 17:00:50 +02:00
|
|
|
|> Enum.map(fn b -> Map.put(b.activity, :bookmark, Map.delete(b, :activity)) end)
|
2018-09-19 02:04:56 +02:00
|
|
|
|
|
|
|
conn
|
2019-09-06 12:08:47 +02:00
|
|
|
|> add_link_headers(bookmarks)
|
2018-09-19 02:04:56 +02:00
|
|
|
|> put_view(StatusView)
|
|
|
|
|> render("index.json", %{activities: activities, for: user, as: :activity})
|
|
|
|
end
|
|
|
|
|
2019-09-06 20:50:00 +02:00
|
|
|
# Stubs for unimplemented mastodon api
|
|
|
|
#
|
2017-09-09 19:19:13 +02:00
|
|
|
def empty_array(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty array")
|
|
|
|
json(conn, [])
|
|
|
|
end
|
2017-11-10 14:24:39 +01:00
|
|
|
|
2018-03-09 19:56:21 +01:00
|
|
|
def empty_object(conn, _) do
|
|
|
|
Logger.debug("Unimplemented, returning an empty object")
|
2018-08-14 04:27:28 +02:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
2017-09-06 19:06:25 +02:00
|
|
|
end
|