akkoma/lib/pleroma/web/media_proxy/media_proxy.ex

64 lines
1.7 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 15:41:47 +00:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-11-22 18:06:07 +00:00
defmodule Pleroma.Web.MediaProxy do
@base64_opts [padding: false]
def url(nil), do: nil
def url(""), do: nil
2019-02-03 17:44:18 +00:00
def url("/" <> _ = url), do: url
2017-11-22 18:06:07 +00:00
def url(url) do
config = Application.get_env(:pleroma, :media_proxy, [])
2018-03-30 13:01:53 +00:00
if !Keyword.get(config, :enabled, false) or String.starts_with?(url, Pleroma.Web.base_url()) do
2017-11-22 18:06:07 +00:00
url
else
secret = Application.get_env(:pleroma, Pleroma.Web.Endpoint)[:secret_key_base]
2018-12-07 20:44:04 +00:00
# The URL is url-decoded and encoded again to ensure it is correctly encoded and not twice.
base64 =
url
|> URI.decode()
|> URI.encode()
|> Base.url_encode64(@base64_opts)
sig = :crypto.hmac(:sha, secret, base64)
2017-11-22 18:06:07 +00:00
sig64 = sig |> Base.url_encode64(@base64_opts)
2018-11-23 16:40:45 +00:00
build_url(sig64, base64, filename(url))
2017-11-22 18:06:07 +00:00
end
end
def decode_url(sig, url) do
secret = Application.get_env(:pleroma, Pleroma.Web.Endpoint)[:secret_key_base]
2017-11-22 18:06:07 +00:00
sig = Base.url_decode64!(sig, @base64_opts)
local_sig = :crypto.hmac(:sha, secret, url)
2018-03-30 13:01:53 +00:00
2017-11-22 18:06:07 +00:00
if local_sig == sig do
{:ok, Base.url_decode64!(url, @base64_opts)}
else
{:error, :invalid_signature}
end
end
2018-11-23 16:40:45 +00:00
def filename(url_or_path) do
if path = URI.parse(url_or_path).path, do: Path.basename(path)
end
def build_url(sig_base64, url_base64, filename \\ nil) do
[
Pleroma.Config.get([:media_proxy, :base_url], Pleroma.Web.base_url()),
"proxy",
sig_base64,
url_base64,
filename
]
|> Enum.filter(fn value -> value end)
|> Path.join()
end
2017-11-22 18:06:07 +00:00
end