Revert "Pleroma.Web.PleromaAPI.EmojiFileController: dialyzer errors"
This reverts commit dc912dc590
.
This commit is contained in:
parent
b709fc4dfe
commit
4a9ed4682a
|
@ -36,9 +36,9 @@ def create_operation do
|
||||||
defp create_request do
|
defp create_request do
|
||||||
%Schema{
|
%Schema{
|
||||||
type: :object,
|
type: :object,
|
||||||
required: ["file"],
|
required: [:file],
|
||||||
properties: %{
|
properties: %{
|
||||||
"file" => %Schema{
|
file: %Schema{
|
||||||
description:
|
description:
|
||||||
"File needs to be uploaded with the multipart request or link to remote file",
|
"File needs to be uploaded with the multipart request or link to remote file",
|
||||||
anyOf: [
|
anyOf: [
|
||||||
|
@ -46,12 +46,12 @@ defp create_request do
|
||||||
%Schema{type: :string, format: :uri}
|
%Schema{type: :string, format: :uri}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"shortcode" => %Schema{
|
shortcode: %Schema{
|
||||||
type: :string,
|
type: :string,
|
||||||
description:
|
description:
|
||||||
"Shortcode for new emoji, must be unique for all emoji. If not sended, shortcode will be taken from original filename."
|
"Shortcode for new emoji, must be unique for all emoji. If not sended, shortcode will be taken from original filename."
|
||||||
},
|
},
|
||||||
"filename" => %Schema{
|
filename: %Schema{
|
||||||
type: :string,
|
type: :string,
|
||||||
description:
|
description:
|
||||||
"New emoji file name. If not specified will be taken from original filename."
|
"New emoji file name. If not specified will be taken from original filename."
|
||||||
|
@ -81,21 +81,21 @@ def update_operation do
|
||||||
defp update_request do
|
defp update_request do
|
||||||
%Schema{
|
%Schema{
|
||||||
type: :object,
|
type: :object,
|
||||||
required: ["shortcode", "new_shortcode", "new_filename"],
|
required: [:shortcode, :new_shortcode, :new_filename],
|
||||||
properties: %{
|
properties: %{
|
||||||
"shortcode" => %Schema{
|
shortcode: %Schema{
|
||||||
type: :string,
|
type: :string,
|
||||||
description: "Emoji file shortcode"
|
description: "Emoji file shortcode"
|
||||||
},
|
},
|
||||||
"new_shortcode" => %Schema{
|
new_shortcode: %Schema{
|
||||||
type: :string,
|
type: :string,
|
||||||
description: "New emoji file shortcode"
|
description: "New emoji file shortcode"
|
||||||
},
|
},
|
||||||
"new_filename" => %Schema{
|
new_filename: %Schema{
|
||||||
type: :string,
|
type: :string,
|
||||||
description: "New filename for emoji file"
|
description: "New filename for emoji file"
|
||||||
},
|
},
|
||||||
"force" => %Schema{
|
force: %Schema{
|
||||||
type: :boolean,
|
type: :boolean,
|
||||||
description: "With true value to overwrite existing emoji with new shortcode",
|
description: "With true value to overwrite existing emoji with new shortcode",
|
||||||
default: false
|
default: false
|
||||||
|
|
|
@ -23,11 +23,11 @@ defmodule Pleroma.Web.PleromaAPI.EmojiFileController do
|
||||||
defdelegate open_api_operation(action), to: ApiSpec.PleromaEmojiFileOperation
|
defdelegate open_api_operation(action), to: ApiSpec.PleromaEmojiFileOperation
|
||||||
|
|
||||||
def create(%{body_params: params} = conn, %{name: pack_name}) do
|
def create(%{body_params: params} = conn, %{name: pack_name}) do
|
||||||
filename = params["filename"] || get_filename(params["file"])
|
filename = params[:filename] || get_filename(params[:file])
|
||||||
shortcode = params["shortcode"] || Path.basename(filename, Path.extname(filename))
|
shortcode = params[:shortcode] || Path.basename(filename, Path.extname(filename))
|
||||||
|
|
||||||
with {:ok, pack} <- Pack.load_pack(pack_name),
|
with {:ok, pack} <- Pack.load_pack(pack_name),
|
||||||
{:ok, file} <- get_file(params["file"]),
|
{:ok, file} <- get_file(params[:file]),
|
||||||
{:ok, pack} <- Pack.add_file(pack, shortcode, filename, file) do
|
{:ok, pack} <- Pack.add_file(pack, shortcode, filename, file) do
|
||||||
json(conn, pack.files)
|
json(conn, pack.files)
|
||||||
else
|
else
|
||||||
|
@ -49,10 +49,10 @@ def create(%{body_params: params} = conn, %{name: pack_name}) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def update(%{body_params: %{"shortcode" => shortcode} = params} = conn, %{name: pack_name}) do
|
def update(%{body_params: %{shortcode: shortcode} = params} = conn, %{name: pack_name}) do
|
||||||
new_shortcode = params["new_shortcode"]
|
new_shortcode = params[:new_shortcode]
|
||||||
new_filename = params["new_filename"]
|
new_filename = params[:new_filename]
|
||||||
force = params["force"]
|
force = params[:force]
|
||||||
|
|
||||||
with {:ok, pack} <- Pack.load_pack(pack_name),
|
with {:ok, pack} <- Pack.load_pack(pack_name),
|
||||||
{:ok, pack} <- Pack.update_file(pack, shortcode, new_shortcode, new_filename, force) do
|
{:ok, pack} <- Pack.update_file(pack, shortcode, new_shortcode, new_filename, force) do
|
||||||
|
@ -128,9 +128,9 @@ defp handle_error(conn, {:error, error}, opts) do
|
||||||
defp get_filename(%Plug.Upload{filename: filename}), do: filename
|
defp get_filename(%Plug.Upload{filename: filename}), do: filename
|
||||||
defp get_filename(url) when is_binary(url), do: Path.basename(url)
|
defp get_filename(url) when is_binary(url), do: Path.basename(url)
|
||||||
|
|
||||||
defp get_file(%Plug.Upload{} = file), do: {:ok, file}
|
def get_file(%Plug.Upload{} = file), do: {:ok, file}
|
||||||
|
|
||||||
defp get_file(url) when is_binary(url) do
|
def get_file(url) when is_binary(url) do
|
||||||
with {:ok, %Tesla.Env{body: body, status: code, headers: headers}}
|
with {:ok, %Tesla.Env{body: body, status: code, headers: headers}}
|
||||||
when code in 200..299 <- Pleroma.HTTP.get(url) do
|
when code in 200..299 <- Pleroma.HTTP.get(url) do
|
||||||
path = Plug.Upload.random_file!("emoji")
|
path = Plug.Upload.random_file!("emoji")
|
||||||
|
|
Loading…
Reference in New Issue