2019-03-14 13:02:48 -06:00
|
|
|
# Pleroma: A lightweight social networking server
|
2023-01-02 13:38:50 -07:00
|
|
|
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
|
2019-03-14 13:02:48 -06:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-06-23 09:16:47 -06:00
|
|
|
defmodule Pleroma.Web.Plugs.UploadedMediaPlugTest do
|
2020-12-21 04:21:40 -07:00
|
|
|
use Pleroma.Web.ConnCase, async: true
|
2019-03-14 13:02:48 -06:00
|
|
|
alias Pleroma.Upload
|
|
|
|
|
2019-03-14 13:26:54 -06:00
|
|
|
defp upload_file(context) do
|
|
|
|
Pleroma.DataCase.ensure_local_uploader(context)
|
2019-03-14 13:02:48 -06:00
|
|
|
File.cp!("test/fixtures/image.jpg", "test/fixtures/image_tmp.jpg")
|
|
|
|
|
|
|
|
file = %Plug.Upload{
|
2020-10-13 09:37:24 -06:00
|
|
|
content_type: "image/jpeg",
|
2019-03-14 13:02:48 -06:00
|
|
|
path: Path.absname("test/fixtures/image_tmp.jpg"),
|
|
|
|
filename: "nice_tf.jpg"
|
|
|
|
}
|
|
|
|
|
|
|
|
{:ok, data} = Upload.store(file)
|
|
|
|
[%{"href" => attachment_url} | _] = data["url"]
|
|
|
|
[attachment_url: attachment_url]
|
|
|
|
end
|
|
|
|
|
2019-03-14 13:26:54 -06:00
|
|
|
setup_all :upload_file
|
|
|
|
|
2019-03-14 13:02:48 -06:00
|
|
|
test "does not send Content-Disposition header when name param is not set", %{
|
|
|
|
attachment_url: attachment_url
|
|
|
|
} do
|
|
|
|
conn = get(build_conn(), attachment_url)
|
|
|
|
refute Enum.any?(conn.resp_headers, &(elem(&1, 0) == "content-disposition"))
|
|
|
|
end
|
|
|
|
|
|
|
|
test "sends Content-Disposition header when name param is set", %{
|
|
|
|
attachment_url: attachment_url
|
|
|
|
} do
|
2023-04-17 16:07:39 -06:00
|
|
|
conn = get(build_conn(), attachment_url <> ~s[?name="cofe".gif])
|
2019-03-14 13:02:48 -06:00
|
|
|
|
|
|
|
assert Enum.any?(
|
|
|
|
conn.resp_headers,
|
2023-04-17 16:07:39 -06:00
|
|
|
&(&1 == {"content-disposition", ~s[inline; filename="\\"cofe\\".gif"]})
|
2019-03-14 13:02:48 -06:00
|
|
|
)
|
|
|
|
end
|
2023-05-29 12:16:03 -06:00
|
|
|
|
|
|
|
test "denies access to media if wrong Host", %{
|
|
|
|
attachment_url: attachment_url
|
|
|
|
} do
|
|
|
|
conn = get(build_conn(), attachment_url)
|
|
|
|
|
|
|
|
assert conn.status == 200
|
|
|
|
|
2023-05-30 14:56:09 -06:00
|
|
|
new_media_base = "http://media.localhost:8080"
|
|
|
|
|
|
|
|
%{scheme: new_media_scheme, host: new_media_host, port: new_media_port} =
|
|
|
|
URI.parse(new_media_base)
|
|
|
|
|
|
|
|
clear_config([Pleroma.Upload, :base_url], new_media_base)
|
2023-05-29 12:16:03 -06:00
|
|
|
|
|
|
|
conn = get(build_conn(), attachment_url)
|
|
|
|
|
2023-05-30 14:56:09 -06:00
|
|
|
expected_url =
|
|
|
|
URI.parse(attachment_url)
|
|
|
|
|> Map.put(:host, new_media_host)
|
|
|
|
|> Map.put(:port, new_media_port)
|
|
|
|
|> Map.put(:scheme, new_media_scheme)
|
|
|
|
|> URI.to_string()
|
|
|
|
|
2023-05-31 07:50:47 -06:00
|
|
|
assert redirected_to(conn, 302) == expected_url
|
2023-05-29 12:16:03 -06:00
|
|
|
end
|
2019-03-14 13:02:48 -06:00
|
|
|
end
|