forked from AkkomaGang/akkoma
[#2497] Added support for enforcing output format for media proxy preview, used for avatar_static & header_static (AccountView).
This commit is contained in:
parent
85446cc30c
commit
60c925380d
4 changed files with 20 additions and 11 deletions
|
@ -15,6 +15,7 @@ def append_uri_params(uri, appended_params) do
|
|||
uri
|
||||
|> Map.put(:query, URI.encode_query(updated_params))
|
||||
|> URI.to_string()
|
||||
|> String.replace_suffix("?", "")
|
||||
end
|
||||
|
||||
def maybe_add_base("/" <> uri, base), do: Path.join([base, uri])
|
||||
|
|
|
@ -182,9 +182,9 @@ defp do_render("show.json", %{user: user} = opts) do
|
|||
display_name = user.name || user.nickname
|
||||
|
||||
avatar = User.avatar_url(user) |> MediaProxy.url()
|
||||
avatar_static = User.avatar_url(user) |> MediaProxy.preview_url()
|
||||
avatar_static = User.avatar_url(user) |> MediaProxy.preview_url(output_format: "jpeg")
|
||||
header = User.banner_url(user) |> MediaProxy.url()
|
||||
header_static = User.banner_url(user) |> MediaProxy.preview_url()
|
||||
header_static = User.banner_url(user) |> MediaProxy.preview_url(output_format: "jpeg")
|
||||
|
||||
following_count =
|
||||
if !user.hide_follows_count or !user.hide_follows or opts[:for] == user do
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
defmodule Pleroma.Web.MediaProxy do
|
||||
alias Pleroma.Config
|
||||
alias Pleroma.Helpers.UriHelper
|
||||
alias Pleroma.Upload
|
||||
alias Pleroma.Web
|
||||
alias Pleroma.Web.MediaProxy.Invalidation
|
||||
|
@ -58,9 +59,9 @@ def url_proxiable?(url) do
|
|||
|
||||
# Note: routing all URLs to preview handler (even local and whitelisted).
|
||||
# Preview handler will call url/1 on decoded URLs, and applicable ones will detour media proxy.
|
||||
def preview_url(url) do
|
||||
def preview_url(url, preview_params \\ []) do
|
||||
if preview_enabled?() do
|
||||
encode_preview_url(url)
|
||||
encode_preview_url(url, preview_params)
|
||||
else
|
||||
url
|
||||
end
|
||||
|
@ -116,10 +117,10 @@ def encode_url(url) do
|
|||
build_url(sig64, base64, filename(url))
|
||||
end
|
||||
|
||||
def encode_preview_url(url) do
|
||||
def encode_preview_url(url, preview_params \\ []) do
|
||||
{base64, sig64} = base64_sig64(url)
|
||||
|
||||
build_preview_url(sig64, base64, filename(url))
|
||||
build_preview_url(sig64, base64, filename(url), preview_params)
|
||||
end
|
||||
|
||||
def decode_url(sig, url) do
|
||||
|
@ -155,8 +156,10 @@ def build_url(sig_base64, url_base64, filename \\ nil) do
|
|||
proxy_url("proxy", sig_base64, url_base64, filename)
|
||||
end
|
||||
|
||||
def build_preview_url(sig_base64, url_base64, filename \\ nil) do
|
||||
proxy_url("proxy/preview", sig_base64, url_base64, filename)
|
||||
def build_preview_url(sig_base64, url_base64, filename \\ nil, preview_params \\ []) do
|
||||
uri = proxy_url("proxy/preview", sig_base64, url_base64, filename)
|
||||
|
||||
UriHelper.append_uri_params(uri, preview_params)
|
||||
end
|
||||
|
||||
def verify_request_path_and_url(
|
||||
|
|
|
@ -67,9 +67,14 @@ defp handle_preview(conn, url) do
|
|||
end
|
||||
end
|
||||
|
||||
# TODO: find a workaround so avatar_static and header_static can work.
|
||||
# Those only permit GIFs for animation, so we have to permit a way to
|
||||
# allow those to get real static variants.
|
||||
defp handle_preview(
|
||||
"image/" <> _ = _content_type,
|
||||
%{params: %{"output_format" => "jpeg"}} = conn,
|
||||
url
|
||||
) do
|
||||
handle_jpeg_preview(conn, url)
|
||||
end
|
||||
|
||||
defp handle_preview("image/gif" = _content_type, conn, url) do
|
||||
mediaproxy_url = url |> MediaProxy.url()
|
||||
|
||||
|
|
Loading…
Reference in a new issue