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-03-25 16:13:58 -06:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 08:16:26 -07:00
|
|
|
alias Pleroma.User
|
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
|
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
|
|
|
|
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
|
|
|
|
|
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
|
2017-09-06 11:06:25 -06:00
|
|
|
end
|