2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 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
|
2020-04-06 01:20:44 -06:00
|
|
|
@moduledoc """
|
|
|
|
Contains stubs for unimplemented Mastodon API endpoints.
|
|
|
|
|
|
|
|
Note: instead of routing directly to this controller's action,
|
|
|
|
it's preferable to define an action in relevant (non-generic) controller,
|
|
|
|
set up OAuth rules for it and call this controller's function from it.
|
|
|
|
"""
|
|
|
|
|
2017-09-06 11:06:25 -06:00
|
|
|
use Pleroma.Web, :controller
|
2019-07-28 14:30:10 -06:00
|
|
|
|
2017-11-18 18:22:07 -07:00
|
|
|
require Logger
|
2017-09-06 11:06:25 -06:00
|
|
|
|
2020-04-22 09:50:25 -06:00
|
|
|
plug(
|
|
|
|
:skip_plug,
|
|
|
|
[Pleroma.Plugs.OAuthScopesPlug, Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug]
|
|
|
|
when action in [:empty_array, :empty_object]
|
|
|
|
)
|
2020-04-06 01:20:44 -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-09-09 11:19:13 -06:00
|
|
|
def empty_array(conn, _) do
|
2020-04-06 01:20:44 -06:00
|
|
|
Logger.debug("Unimplemented, returning an empty array (list)")
|
2017-09-09 11:19:13 -06:00
|
|
|
json(conn, [])
|
|
|
|
end
|
2017-11-10 06:24:39 -07:00
|
|
|
|
2018-03-09 11:56:21 -07:00
|
|
|
def empty_object(conn, _) do
|
2020-04-06 01:20:44 -06:00
|
|
|
Logger.debug("Unimplemented, returning an empty object (map)")
|
2018-08-13 20:27:28 -06:00
|
|
|
json(conn, %{})
|
|
|
|
end
|
2017-09-06 11:06:25 -06:00
|
|
|
end
|