c3cca5d613
Mainly transform `with` into `case` Signed-off-by: Thomas Citharel <tcit@tcit.fr>
188 lines
6.0 KiB
Elixir
188 lines
6.0 KiB
Elixir
# Portions of this file are derived from Pleroma:
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/upload.ex
|
|
|
|
defmodule MobilizonWeb.Upload do
|
|
@moduledoc """
|
|
Manage user uploads
|
|
|
|
Options:
|
|
* `:type`: presets for activity type (defaults to Document) and size limits from app configuration
|
|
* `:description`: upload alternative text
|
|
* `:base_url`: override base url
|
|
* `:uploader`: override uploader
|
|
* `:filters`: override filters
|
|
* `:size_limit`: override size limit
|
|
* `:activity_type`: override activity type
|
|
|
|
The `%MobilizonWeb.Upload{}` struct: all documented fields are meant to be overwritten in filters:
|
|
|
|
* `:id` - the upload id.
|
|
* `:name` - the upload file name.
|
|
* `:path` - the upload path: set at first to `id/name` but can be changed. Keep in mind that the path
|
|
is once created permanent and changing it (especially in uploaders) is probably a bad idea!
|
|
* `:tempfile` - path to the temporary file. Prefer in-place changes on the file rather than changing the
|
|
path as the temporary file is also tracked by `Plug.Upload{}` and automatically deleted once the request is over.
|
|
|
|
Related behaviors:
|
|
|
|
* `MobilizonWeb.Uploaders.Uploader`
|
|
* `MobilizonWeb.Upload.Filter`
|
|
|
|
"""
|
|
alias Ecto.UUID
|
|
require Logger
|
|
|
|
@type source ::
|
|
Plug.Upload.t()
|
|
| (data_uri_string :: String.t())
|
|
| {:from_local, name :: String.t(), id :: String.t(), path :: String.t()}
|
|
|
|
@type option ::
|
|
{:type, :avatar | :banner | :background}
|
|
| {:description, String.t()}
|
|
| {:activity_type, String.t()}
|
|
| {:size_limit, nil | non_neg_integer()}
|
|
| {:uploader, module()}
|
|
| {:filters, [module()]}
|
|
|
|
@type t :: %__MODULE__{
|
|
id: String.t(),
|
|
name: String.t(),
|
|
tempfile: String.t(),
|
|
content_type: String.t(),
|
|
path: String.t(),
|
|
size: integer()
|
|
}
|
|
defstruct [:id, :name, :tempfile, :content_type, :path, :size]
|
|
|
|
@spec store(source, options :: [option()]) :: {:ok, Map.t()} | {:error, any()}
|
|
def store(upload, opts \\ []) do
|
|
opts = get_opts(opts)
|
|
|
|
with {:ok, upload} <- prepare_upload(upload, opts),
|
|
upload = %__MODULE__{upload | path: upload.path || "#{upload.id}/#{upload.name}"},
|
|
{:ok, upload} <- MobilizonWeb.Upload.Filter.filter(opts.filters, upload),
|
|
{:ok, url_spec} <- MobilizonWeb.Uploaders.Uploader.put_file(opts.uploader, upload) do
|
|
{:ok,
|
|
%{
|
|
"type" => opts.activity_type || get_type(upload.content_type),
|
|
"url" => [
|
|
%{
|
|
"type" => "Link",
|
|
"mediaType" => upload.content_type,
|
|
"href" => url_from_spec(upload, opts.base_url, url_spec)
|
|
}
|
|
],
|
|
"size" => upload.size,
|
|
"name" => Map.get(opts, :description) || upload.name
|
|
}}
|
|
else
|
|
{:error, error} ->
|
|
Logger.error(
|
|
"#{__MODULE__} store (using #{inspect(opts.uploader)}) failed: #{inspect(error)}"
|
|
)
|
|
|
|
{:error, error}
|
|
end
|
|
end
|
|
|
|
def remove(url, opts \\ []) do
|
|
with opts <- get_opts(opts),
|
|
%URI{path: "/media/" <> path, host: host} <- URI.parse(url),
|
|
{:same_host, true} <- {:same_host, host == MobilizonWeb.Endpoint.host()} do
|
|
MobilizonWeb.Uploaders.Uploader.remove_file(opts.uploader, path)
|
|
else
|
|
%URI{} = _uri ->
|
|
{:error, "URL doesn't match pattern"}
|
|
|
|
{:same_host, _} ->
|
|
Logger.error("Media can't be deleted because its URL doesn't match current host")
|
|
end
|
|
end
|
|
|
|
def char_unescaped?(char) do
|
|
URI.char_unreserved?(char) or char == ?/
|
|
end
|
|
|
|
defp get_opts(opts) do
|
|
{size_limit, activity_type} =
|
|
case Keyword.get(opts, :type) do
|
|
:banner ->
|
|
{Mobilizon.CommonConfig.get!([:instance, :banner_upload_limit]), "Image"}
|
|
|
|
:avatar ->
|
|
{Mobilizon.CommonConfig.get!([:instance, :avatar_upload_limit]), "Image"}
|
|
|
|
_ ->
|
|
{Mobilizon.CommonConfig.get!([:instance, :upload_limit]), nil}
|
|
end
|
|
|
|
%{
|
|
activity_type: Keyword.get(opts, :activity_type, activity_type),
|
|
size_limit: Keyword.get(opts, :size_limit, size_limit),
|
|
uploader: Keyword.get(opts, :uploader, Mobilizon.CommonConfig.get([__MODULE__, :uploader])),
|
|
filters: Keyword.get(opts, :filters, Mobilizon.CommonConfig.get([__MODULE__, :filters])),
|
|
description: Keyword.get(opts, :description),
|
|
base_url:
|
|
Keyword.get(
|
|
opts,
|
|
:base_url,
|
|
Mobilizon.CommonConfig.get([__MODULE__, :base_url], MobilizonWeb.Endpoint.url())
|
|
)
|
|
}
|
|
end
|
|
|
|
defp prepare_upload(%Plug.Upload{} = file, opts) do
|
|
with {:ok, size} <- check_file_size(file.path, opts.size_limit),
|
|
{:ok, content_type, name} <- Mobilizon.MIME.file_mime_type(file.path, file.filename) do
|
|
{:ok,
|
|
%__MODULE__{
|
|
id: UUID.generate(),
|
|
name: name,
|
|
tempfile: file.path,
|
|
content_type: content_type,
|
|
size: size
|
|
}}
|
|
end
|
|
end
|
|
|
|
defp check_file_size(path, size_limit) when is_integer(size_limit) and size_limit > 0 do
|
|
with {:ok, %{size: size}} <- File.stat(path),
|
|
true <- size <= size_limit do
|
|
{:ok, size}
|
|
else
|
|
false -> {:error, :file_too_large}
|
|
error -> error
|
|
end
|
|
end
|
|
|
|
defp check_file_size(_, _), do: :ok
|
|
|
|
@picture_content_types ["image/png", "image/jpg", "image/jpeg", "image/webp"]
|
|
# Return whether the upload is a picture or not
|
|
defp get_type(content_type) do
|
|
if content_type in @picture_content_types do
|
|
"Image"
|
|
else
|
|
"Document"
|
|
end
|
|
end
|
|
|
|
defp url_from_spec(%__MODULE__{name: name}, base_url, {:file, path}) do
|
|
path =
|
|
URI.encode(path, &char_unescaped?/1) <>
|
|
if Mobilizon.CommonConfig.get([__MODULE__, :link_name], false) do
|
|
"?name=#{URI.encode(name, &char_unescaped?/1)}"
|
|
else
|
|
""
|
|
end
|
|
|
|
[base_url, "media", path]
|
|
|> Path.join()
|
|
end
|
|
|
|
defp url_from_spec(_upload, _base_url, {:url, url}), do: url
|
|
end
|