2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 15:44:49 -07:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 13:04:54 -07:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-11-22 11:06:07 -07:00
|
|
|
defmodule Pleroma.Web.MediaProxy.MediaProxyController do
|
|
|
|
use Pleroma.Web, :controller
|
2019-02-03 10:44:18 -07:00
|
|
|
alias Pleroma.ReverseProxy
|
|
|
|
alias Pleroma.Web.MediaProxy
|
2017-11-22 11:06:07 -07:00
|
|
|
|
2018-12-07 11:36:44 -07:00
|
|
|
@default_proxy_opts [max_body_length: 25 * 1_048_576, http: [follow_redirect: true]]
|
2018-11-30 09:44:42 -07:00
|
|
|
|
2019-02-03 10:44:18 -07:00
|
|
|
def remote(conn, %{"sig" => sig64, "url" => url64} = params) do
|
2018-12-02 03:24:02 -07:00
|
|
|
with config <- Pleroma.Config.get([:media_proxy], []),
|
2018-11-23 09:40:45 -07:00
|
|
|
true <- Keyword.get(config, :enabled, false),
|
|
|
|
{:ok, url} <- MediaProxy.decode_url(sig64, url64),
|
2019-07-14 15:01:32 -06:00
|
|
|
:ok <- filename_matches(params, conn.request_path, url) do
|
2018-12-02 03:24:02 -07:00
|
|
|
ReverseProxy.call(conn, url, Keyword.get(config, :proxy_opts, @default_proxy_opts))
|
2017-11-28 13:44:25 -07:00
|
|
|
else
|
2018-03-30 07:01:53 -06:00
|
|
|
false ->
|
2018-11-23 09:40:45 -07:00
|
|
|
send_resp(conn, 404, Plug.Conn.Status.reason_phrase(404))
|
2018-03-30 07:01:53 -06:00
|
|
|
|
|
|
|
{:error, :invalid_signature} ->
|
2018-11-23 09:40:45 -07:00
|
|
|
send_resp(conn, 403, Plug.Conn.Status.reason_phrase(403))
|
2018-03-30 07:01:53 -06:00
|
|
|
|
2018-11-23 09:40:45 -07:00
|
|
|
{:wrong_filename, filename} ->
|
|
|
|
redirect(conn, external: MediaProxy.build_url(sig64, url64, filename))
|
2017-11-22 11:06:07 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-14 15:01:32 -06:00
|
|
|
def filename_matches(%{"filename" => _} = _, path, url) do
|
|
|
|
filename = MediaProxy.filename(url)
|
2018-03-30 07:01:53 -06:00
|
|
|
|
2019-07-15 09:45:56 -06:00
|
|
|
if filename && does_not_match(path, filename) do
|
2018-12-09 23:39:57 -07:00
|
|
|
{:wrong_filename, filename}
|
|
|
|
else
|
|
|
|
:ok
|
2017-12-10 18:31:37 -07:00
|
|
|
end
|
|
|
|
end
|
2019-07-12 10:34:30 -06:00
|
|
|
|
2019-07-14 15:01:32 -06:00
|
|
|
def filename_matches(_, _, _), do: :ok
|
2019-07-15 09:45:56 -06:00
|
|
|
|
2019-07-12 10:34:30 -06:00
|
|
|
defp does_not_match(path, filename) do
|
|
|
|
basename = Path.basename(path)
|
|
|
|
basename != filename and URI.decode(basename) != filename and URI.encode(basename) != filename
|
|
|
|
end
|
2017-11-22 11:06:07 -07:00
|
|
|
end
|