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-03-25 22:13:58 +00:00
|
|
|
alias Pleroma.Pagination
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.User
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
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
|
|
|
|
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
|
|
|
|
|
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
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|