2019-09-30 12:32:43 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 20:38:50 +00:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2019-09-30 12:32:43 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.PleromaAPI.MascotController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
2020-06-24 10:07:47 +00:00
|
|
|
alias Pleroma.Web.Plugs.OAuthScopesPlug
|
2019-09-30 12:32:43 +00:00
|
|
|
|
2020-06-16 17:00:54 +00:00
|
|
|
plug(Majic.Plug, [pool: Pleroma.MajicPool] when action in [:update])
|
2020-05-18 18:00:32 +00:00
|
|
|
plug(Pleroma.Web.ApiSpec.CastAndValidate)
|
2019-10-02 17:42:40 +00:00
|
|
|
plug(OAuthScopesPlug, %{scopes: ["read:accounts"]} when action == :show)
|
|
|
|
plug(OAuthScopesPlug, %{scopes: ["write:accounts"]} when action != :show)
|
|
|
|
|
2020-05-18 18:00:32 +00:00
|
|
|
defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.PleromaMascotOperation
|
|
|
|
|
2019-09-30 12:32:43 +00:00
|
|
|
@doc "GET /api/v1/pleroma/mascot"
|
|
|
|
def show(%{assigns: %{user: user}} = conn, _params) do
|
|
|
|
json(conn, User.get_mascot(user))
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc "PUT /api/v1/pleroma/mascot"
|
Pleroma.Web.PleromaAPI.MascotController: dialyzer errors
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:25:no_return
Function update/2 has no local return.
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:27:call
The function call will not succeed.
Pleroma.Web.ActivityPub.ActivityPub.upload(_file :: atom() | %{:content_type => _, _ => _}, [{:actor, <<_::56, _::size(8)>>}, ...]) ::
:ok
def a() do
:ok
end
will never return since the 2nd arguments differ
from the success typing arguments:
(any(), [
{:activity_type | :description | :filters | :size_limit | :type | :uploader,
atom() | binary() | [atom()] | non_neg_integer()}
])
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:31:call
The function call will not succeed.
Phoenix.Controller.json(
_conn :: %{
:assigns => %{:user => _, _ => _},
:body_params => %{:file => _, _ => _},
_ => _
},
_attachment :: any()
)
breaks the contract
(Plug.Conn.t(), term()) :: Plug.Conn.t()
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:34:call
The function call will not succeed.
Plug.Conn.put_status(
_conn :: %{
:assigns => %{:user => _, _ => _},
:body_params => %{:file => _, _ => _},
_ => _
},
:unsupported_media_type
)
breaks the contract
(t(), status()) :: t()
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:34:call
The function call will not succeed.
Plug.Conn.put_status(
_conn :: %{
:assigns => %{:user => _, _ => _},
:body_params => %{:file => _, _ => _},
_ => _
},
:unsupported_media_type
)
breaks the contract
(t(), status()) :: t()
lib/pleroma/web/pleroma_api/controllers/mascot_controller.ex:38:unused_fun
Function render_attachment/1 will never be called.
2024-01-28 17:29:12 +00:00
|
|
|
def update(%{assigns: %{user: user}, body_params: %{"file" => file}} = conn, _) do
|
2024-01-28 17:35:45 +00:00
|
|
|
with {_, "image" <> _} <- {:content_type, file.content_type},
|
|
|
|
{_, {:ok, object}} <- {:upload, ActivityPub.upload(file, actor: User.ap_id(user))} do
|
2020-06-16 13:11:45 +00:00
|
|
|
attachment = render_attachment(object)
|
2019-10-16 18:59:21 +00:00
|
|
|
{:ok, _user} = User.mascot_update(user, attachment)
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
json(conn, attachment)
|
|
|
|
else
|
2020-06-16 13:11:45 +00:00
|
|
|
{:content_type, _} ->
|
|
|
|
render_error(conn, :unsupported_media_type, "mascots can only be images")
|
2024-01-28 17:35:45 +00:00
|
|
|
|
|
|
|
{:upload, {:error, _}} ->
|
|
|
|
render_error(conn, :error, "error uploading file")
|
2019-09-30 12:32:43 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp render_attachment(object) do
|
|
|
|
attachment_data = Map.put(object.data, "id", object.id)
|
|
|
|
Pleroma.Web.MastodonAPI.StatusView.render("attachment.json", %{attachment: attachment_data})
|
|
|
|
end
|
|
|
|
end
|