2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 04:41:23 -05:00
|
|
|
require 'rails_helper'
|
2013-04-02 18:17:17 -05:00
|
|
|
|
|
|
|
describe UploadsController do
|
2019-05-28 20:00:25 -05:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
describe '#create' do
|
2013-09-06 12:18:42 -05:00
|
|
|
it 'requires you to be logged in' do
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json"
|
2018-01-11 21:15:10 -06:00
|
|
|
expect(response.status).to eq(403)
|
2013-04-02 18:17:17 -05:00
|
|
|
end
|
|
|
|
|
2013-09-06 12:18:42 -05:00
|
|
|
context 'logged in' do
|
2019-05-28 20:00:25 -05:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
2013-04-02 18:17:17 -05:00
|
|
|
|
2013-06-15 02:54:49 -05:00
|
|
|
let(:logo) do
|
2017-08-30 23:06:56 -05:00
|
|
|
Rack::Test::UploadedFile.new(file_from_fixtures("logo.png"))
|
2013-04-02 18:17:17 -05:00
|
|
|
end
|
|
|
|
|
2015-12-21 09:08:14 -06:00
|
|
|
let(:fake_jpg) do
|
2017-08-30 23:06:56 -05:00
|
|
|
Rack::Test::UploadedFile.new(file_from_fixtures("fake.jpg"))
|
2015-12-21 09:08:14 -06:00
|
|
|
end
|
|
|
|
|
2013-06-15 02:54:49 -05:00
|
|
|
let(:text_file) do
|
2017-08-30 23:06:56 -05:00
|
|
|
Rack::Test::UploadedFile.new(File.new("#{Rails.root}/LICENSE.txt"))
|
2013-06-15 02:54:49 -05:00
|
|
|
end
|
2013-04-02 18:17:17 -05:00
|
|
|
|
2017-05-18 05:13:13 -05:00
|
|
|
it 'expects a type' do
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: logo }
|
|
|
|
expect(response.status).to eq(400)
|
2017-08-22 15:40:01 -05:00
|
|
|
end
|
|
|
|
|
2015-05-19 18:39:58 -05:00
|
|
|
it 'is successful with an image' do
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: logo, type: "avatar" }
|
2015-05-19 18:39:58 -05:00
|
|
|
expect(response.status).to eq 200
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(JSON.parse(response.body)["id"]).to be_present
|
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(1)
|
2015-05-19 18:39:58 -05:00
|
|
|
end
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2015-05-19 18:39:58 -05:00
|
|
|
it 'is successful with an attachment' do
|
2017-06-12 15:41:29 -05:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2015-05-25 10:59:00 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: text_file, type: "composer" }
|
2015-05-19 18:39:58 -05:00
|
|
|
expect(response.status).to eq 200
|
2018-06-03 22:13:52 -05:00
|
|
|
|
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(0)
|
2017-11-26 19:43:18 -06:00
|
|
|
id = JSON.parse(response.body)["id"]
|
|
|
|
expect(id).to be
|
2015-06-21 06:52:52 -05:00
|
|
|
end
|
|
|
|
|
2018-02-24 05:35:57 -06:00
|
|
|
it 'is successful with api' do
|
2017-04-14 23:11:02 -05:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2018-06-03 22:13:52 -05:00
|
|
|
api_key = Fabricate(:api_key, user: user).key
|
2017-05-26 02:19:09 -05:00
|
|
|
|
2018-02-24 05:35:57 -06:00
|
|
|
url = "http://example.com/image.png"
|
|
|
|
png = File.read(Rails.root + "spec/fixtures/images/logo.png")
|
|
|
|
|
|
|
|
stub_request(:get, url).to_return(status: 200, body: png)
|
2015-06-21 06:52:52 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { url: url, type: "avatar", api_key: api_key, api_username: user.username }
|
2015-06-21 06:52:52 -05:00
|
|
|
|
|
|
|
json = ::JSON.parse(response.body)
|
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(1)
|
|
|
|
expect(json["id"]).to be_present
|
2017-08-22 15:40:01 -05:00
|
|
|
expect(json["short_url"]).to eq("upload://qUm0DGR49PAZshIi7HxMd3cAlzn.png")
|
2015-05-19 18:39:58 -05:00
|
|
|
end
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2015-05-19 18:39:58 -05:00
|
|
|
it 'correctly sets retain_hours for admins' do
|
2018-06-03 22:13:52 -05:00
|
|
|
sign_in(Fabricate(:admin))
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: {
|
2017-11-26 19:43:18 -06:00
|
|
|
file: logo,
|
|
|
|
retain_hours: 100,
|
|
|
|
type: "profile_background",
|
|
|
|
}
|
2014-04-29 12:12:35 -05:00
|
|
|
|
2017-11-26 19:43:18 -06:00
|
|
|
id = JSON.parse(response.body)["id"]
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(0)
|
2015-05-19 18:39:58 -05:00
|
|
|
expect(Upload.find(id).retain_hours).to eq(100)
|
2013-06-15 02:54:49 -05:00
|
|
|
end
|
2013-04-02 18:17:17 -05:00
|
|
|
|
2015-08-18 04:39:51 -05:00
|
|
|
it 'requires a file' do
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { type: "composer" }
|
2015-08-18 04:39:51 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(0)
|
2017-11-26 19:43:18 -06:00
|
|
|
message = JSON.parse(response.body)
|
|
|
|
expect(response.status).to eq 422
|
|
|
|
expect(message["errors"]).to contain_exactly(I18n.t("upload.file_missing"))
|
2015-08-18 04:39:51 -05:00
|
|
|
end
|
|
|
|
|
2015-05-19 18:39:58 -05:00
|
|
|
it 'properly returns errors' do
|
2018-06-03 22:13:52 -05:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2017-06-12 15:41:29 -05:00
|
|
|
SiteSetting.max_attachment_size_kb = 1
|
2013-04-02 18:17:17 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: text_file, type: "avatar" }
|
2015-05-25 10:59:00 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(response.status).to eq(422)
|
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(0)
|
2017-11-26 19:43:18 -06:00
|
|
|
errors = JSON.parse(response.body)["errors"]
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(errors.first).to eq(I18n.t("upload.attachments.too_large", max_size_kb: 1))
|
2013-04-02 18:17:17 -05:00
|
|
|
end
|
|
|
|
|
2015-11-12 03:26:45 -06:00
|
|
|
it 'ensures allow_uploaded_avatars is enabled when uploading an avatar' do
|
2017-06-12 15:41:29 -05:00
|
|
|
SiteSetting.allow_uploaded_avatars = false
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: logo, type: "avatar" }
|
|
|
|
expect(response.status).to eq(422)
|
2015-11-12 03:26:45 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'ensures sso_overrides_avatar is not enabled when uploading an avatar' do
|
2017-06-12 15:41:29 -05:00
|
|
|
SiteSetting.sso_overrides_avatar = true
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: logo, type: "avatar" }
|
|
|
|
expect(response.status).to eq(422)
|
2015-11-12 03:26:45 -06:00
|
|
|
end
|
|
|
|
|
2018-12-05 06:35:59 -06:00
|
|
|
it 'always allows admins to upload avatars' do
|
|
|
|
sign_in(Fabricate(:admin))
|
|
|
|
SiteSetting.allow_uploaded_avatars = false
|
|
|
|
|
|
|
|
post "/uploads.json", params: { file: logo, type: "avatar" }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
2017-06-12 15:41:29 -05:00
|
|
|
it 'allows staff to upload any file in PM' do
|
|
|
|
SiteSetting.authorized_extensions = "jpg"
|
|
|
|
SiteSetting.allow_staff_to_upload_any_file_in_pm = true
|
2018-06-03 22:13:52 -05:00
|
|
|
user.update_columns(moderator: true)
|
2017-06-12 15:41:29 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: {
|
2017-11-26 19:43:18 -06:00
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
for_private_message: "true",
|
|
|
|
}
|
2017-06-12 15:41:29 -05:00
|
|
|
|
2018-06-07 03:11:09 -05:00
|
|
|
expect(response.status).to eq(200)
|
2017-11-26 19:43:18 -06:00
|
|
|
id = JSON.parse(response.body)["id"]
|
2018-11-14 01:03:02 -06:00
|
|
|
expect(Upload.last.id).to eq(id)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows staff to upload supported images for site settings' do
|
|
|
|
SiteSetting.authorized_extensions = ''
|
|
|
|
user.update!(admin: true)
|
|
|
|
|
|
|
|
post "/uploads.json", params: {
|
|
|
|
file: logo,
|
|
|
|
type: "site_setting",
|
|
|
|
for_site_setting: "true",
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
id = JSON.parse(response.body)["id"]
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.id).to eq(id)
|
|
|
|
expect(upload.original_filename).to eq('logo.png')
|
2017-06-12 15:41:29 -05:00
|
|
|
end
|
|
|
|
|
2018-02-19 03:44:24 -06:00
|
|
|
it 'respects `authorized_extensions_for_staff` setting when staff upload file' do
|
|
|
|
SiteSetting.authorized_extensions = ""
|
|
|
|
SiteSetting.authorized_extensions_for_staff = "*"
|
2018-06-03 22:13:52 -05:00
|
|
|
user.update_columns(moderator: true)
|
2018-02-19 03:44:24 -06:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: {
|
2018-02-19 03:44:24 -06:00
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
}
|
|
|
|
|
2018-06-07 03:11:09 -05:00
|
|
|
expect(response.status).to eq(200)
|
2018-02-19 03:44:24 -06:00
|
|
|
data = JSON.parse(response.body)
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(data["id"]).to be_present
|
2018-02-19 03:44:24 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'ignores `authorized_extensions_for_staff` setting when non-staff upload file' do
|
|
|
|
SiteSetting.authorized_extensions = ""
|
|
|
|
SiteSetting.authorized_extensions_for_staff = "*"
|
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: {
|
2018-02-19 03:44:24 -06:00
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
}
|
|
|
|
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["errors"].first).to eq(I18n.t("upload.unauthorized", authorized_extensions: ''))
|
|
|
|
end
|
|
|
|
|
2015-12-21 09:08:14 -06:00
|
|
|
it 'returns an error when it could not determine the dimensions of an image' do
|
2018-06-03 22:13:52 -05:00
|
|
|
post "/uploads.json", params: { file: fake_jpg, type: "composer" }
|
2015-12-21 09:08:14 -06:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(response.status).to eq(422)
|
|
|
|
expect(Jobs::CreateAvatarThumbnails.jobs.size).to eq(0)
|
2017-11-26 19:43:18 -06:00
|
|
|
message = JSON.parse(response.body)["errors"]
|
|
|
|
expect(message).to contain_exactly(I18n.t("upload.images.size_not_found"))
|
2015-12-21 09:08:14 -06:00
|
|
|
end
|
2013-04-02 18:17:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
def upload_file(file, folder = "images")
|
|
|
|
fake_logo = Rack::Test::UploadedFile.new(file_from_fixtures(file, folder))
|
|
|
|
SiteSetting.authorized_extensions = "*"
|
|
|
|
sign_in(user)
|
2018-06-03 22:13:52 -05:00
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
post "/uploads.json", params: {
|
|
|
|
file: fake_logo,
|
|
|
|
type: "composer",
|
|
|
|
}
|
2018-06-03 22:13:52 -05:00
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
expect(response.status).to eq(200)
|
2019-05-14 19:42:17 -05:00
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
url = JSON.parse(response.body)["url"]
|
|
|
|
upload = Upload.get_from_url(url)
|
|
|
|
upload
|
|
|
|
end
|
2019-05-14 19:42:17 -05:00
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
describe '#show' do
|
|
|
|
let(:site) { "default" }
|
|
|
|
let(:sha) { Digest::SHA1.hexdigest("discourse") }
|
2015-05-19 05:31:12 -05:00
|
|
|
|
2019-05-14 15:36:54 -05:00
|
|
|
context "when using external storage" do
|
2019-05-14 19:42:17 -05:00
|
|
|
fab!(:upload) { upload_file("small.pdf", "pdf") }
|
|
|
|
|
2019-05-14 15:36:54 -05:00
|
|
|
before do
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
SiteSetting.s3_access_key_id = "fakeid7974664"
|
|
|
|
SiteSetting.s3_secret_access_key = "fakesecretid7974664"
|
|
|
|
end
|
2015-05-19 05:31:12 -05:00
|
|
|
|
2019-05-14 19:42:17 -05:00
|
|
|
it "returns 404 " do
|
|
|
|
upload = Fabricate(:upload_s3)
|
|
|
|
get "/uploads/#{site}/#{upload.sha1}.#{upload.extension}"
|
|
|
|
|
2019-05-14 15:36:54 -05:00
|
|
|
expect(response.response_code).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns upload if url not migrated" do
|
2019-05-14 19:42:17 -05:00
|
|
|
get "/uploads/#{site}/#{upload.sha1}.#{upload.extension}"
|
|
|
|
|
2019-05-14 15:36:54 -05:00
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
2013-09-06 12:18:42 -05:00
|
|
|
end
|
|
|
|
|
2016-12-19 12:39:04 -06:00
|
|
|
it "returns 404 when the upload doesn't exist" do
|
2018-06-03 22:13:52 -05:00
|
|
|
get "/uploads/#{site}/#{sha}.pdf"
|
|
|
|
expect(response.status).to eq(404)
|
2013-09-06 12:18:42 -05:00
|
|
|
end
|
|
|
|
|
2019-01-29 15:47:25 -06:00
|
|
|
it "returns 404 when the path is nil" do
|
|
|
|
upload = upload_file("logo.png")
|
|
|
|
upload.update_column(:url, "invalid-url")
|
|
|
|
|
|
|
|
get "/uploads/#{site}/#{upload.sha1}.#{upload.extension}"
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2013-09-06 12:18:42 -05:00
|
|
|
it 'uses send_file' do
|
2018-06-03 22:13:52 -05:00
|
|
|
upload = upload_file("logo.png")
|
|
|
|
get "/uploads/#{site}/#{upload.sha1}.#{upload.extension}"
|
|
|
|
expect(response.status).to eq(200)
|
2019-04-30 01:58:18 -05:00
|
|
|
|
2019-08-07 10:00:43 -05:00
|
|
|
expect(response.headers["Content-Disposition"])
|
|
|
|
.to eq(%Q|attachment; filename="logo.png"; filename*=UTF-8''logo.png|)
|
2013-09-06 12:18:42 -05:00
|
|
|
end
|
|
|
|
|
2019-10-13 23:40:33 -05:00
|
|
|
it 'returns 200 when js file' do
|
2019-10-15 18:39:31 -05:00
|
|
|
ActionDispatch::FileHandler.any_instance.stubs(:match?).returns(false)
|
2019-10-13 23:40:33 -05:00
|
|
|
upload = upload_file("test.js", "themes")
|
|
|
|
get upload.url
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
2018-08-19 21:41:46 -05:00
|
|
|
it "handles image without extension" do
|
2016-12-19 12:39:04 -06:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2018-06-03 22:13:52 -05:00
|
|
|
upload = upload_file("image_no_extension")
|
2016-12-19 12:39:04 -06:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
get "/uploads/#{site}/#{upload.sha1}.json"
|
|
|
|
expect(response.status).to eq(200)
|
2019-08-07 10:00:43 -05:00
|
|
|
expect(response.headers["Content-Disposition"])
|
|
|
|
.to eq(%Q|attachment; filename="image_no_extension.png"; filename*=UTF-8''image_no_extension.png|)
|
2018-08-19 21:41:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it "handles file without extension" do
|
|
|
|
SiteSetting.authorized_extensions = "*"
|
|
|
|
upload = upload_file("not_an_image")
|
|
|
|
|
|
|
|
get "/uploads/#{site}/#{upload.sha1}.json"
|
|
|
|
expect(response.status).to eq(200)
|
2019-08-07 10:00:43 -05:00
|
|
|
expect(response.headers["Content-Disposition"])
|
|
|
|
.to eq(%Q|attachment; filename="not_an_image"; filename*=UTF-8''not_an_image|)
|
2016-12-19 12:39:04 -06:00
|
|
|
end
|
|
|
|
|
2014-09-09 11:40:11 -05:00
|
|
|
context "prevent anons from downloading files" do
|
|
|
|
it "returns 404 when an anonymous user tries to download a file" do
|
2019-04-18 11:58:39 -05:00
|
|
|
upload = upload_file("small.pdf", "pdf")
|
2019-05-28 20:00:25 -05:00
|
|
|
delete "/session/#{user.username}.json"
|
2015-05-19 05:31:12 -05:00
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
SiteSetting.prevent_anons_from_downloading_files = true
|
2019-06-05 22:27:24 -05:00
|
|
|
get "/uploads/#{site}/#{upload.sha1}.#{upload.extension}"
|
2018-06-03 22:13:52 -05:00
|
|
|
expect(response.status).to eq(404)
|
2014-09-09 11:40:11 -05:00
|
|
|
end
|
|
|
|
end
|
2013-09-06 12:18:42 -05:00
|
|
|
end
|
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
describe "#show_short" do
|
2019-12-11 07:21:41 -06:00
|
|
|
it 'inlines only supported image files' do
|
|
|
|
upload = upload_file("smallest.png")
|
|
|
|
get upload.short_path, params: { inline: true }
|
|
|
|
expect(response.header['Content-Type']).to eq('image/png')
|
|
|
|
expect(response.header['Content-Disposition']).to include('inline;')
|
|
|
|
|
|
|
|
upload.update!(original_filename: "test.xml")
|
|
|
|
get upload.short_path, params: { inline: true }
|
|
|
|
expect(response.header['Content-Type']).to eq('application/xml')
|
|
|
|
expect(response.header['Content-Disposition']).to include('attachment;')
|
|
|
|
end
|
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
describe "local store" do
|
|
|
|
fab!(:image_upload) { upload_file("smallest.png") }
|
|
|
|
|
|
|
|
it "returns the right response" do
|
|
|
|
get image_upload.short_path
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
expect(response.headers["Content-Disposition"])
|
|
|
|
.to include("attachment; filename=\"#{image_upload.original_filename}\"")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the right response when `inline` param is given" do
|
|
|
|
get "#{image_upload.short_path}?inline=1"
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
expect(response.headers["Content-Disposition"])
|
|
|
|
.to include("inline; filename=\"#{image_upload.original_filename}\"")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the right response when base62 param is invalid " do
|
|
|
|
get "/uploads/short-url/12345.png"
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
2020-01-02 22:39:07 -06:00
|
|
|
it "returns uploads with underscore in extension correctly" do
|
|
|
|
fake_upload = upload_file("fake.not_image")
|
|
|
|
get fake_upload.short_path
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
2019-05-28 20:00:25 -05:00
|
|
|
it "returns the right response when anon tries to download a file " \
|
|
|
|
"when prevent_anons_from_downloading_files is true" do
|
|
|
|
|
|
|
|
delete "/session/#{user.username}.json"
|
|
|
|
SiteSetting.prevent_anons_from_downloading_files = true
|
|
|
|
|
|
|
|
get image_upload.short_path
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "s3 store" do
|
|
|
|
let(:upload) { Fabricate(:upload_s3) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
SiteSetting.s3_access_key_id = "fakeid7974664"
|
|
|
|
SiteSetting.s3_secret_access_key = "fakesecretid7974664"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should redirect to the s3 URL" do
|
|
|
|
get upload.short_path
|
|
|
|
|
|
|
|
expect(response).to redirect_to(upload.url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-17 19:25:42 -06:00
|
|
|
describe "#show_secure" do
|
|
|
|
describe "local store" do
|
|
|
|
fab!(:image_upload) { upload_file("smallest.png") }
|
|
|
|
|
|
|
|
it "does not return secure media when using local store" do
|
|
|
|
secure_url = image_upload.url.sub("/uploads", "/secure-media-uploads")
|
|
|
|
get secure_url
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "s3 store" do
|
|
|
|
let(:upload) { Fabricate(:upload_s3) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
SiteSetting.s3_upload_bucket = "s3-upload-bucket"
|
|
|
|
SiteSetting.s3_access_key_id = "fakeid7974664"
|
|
|
|
SiteSetting.s3_secret_access_key = "fakesecretid7974664"
|
2019-12-11 08:13:17 -06:00
|
|
|
SiteSetting.s3_region = "us-east-1"
|
2019-11-17 19:25:42 -06:00
|
|
|
SiteSetting.secure_media = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return 404 for anonymous requests requests" do
|
|
|
|
secure_url = upload.url.sub(SiteSetting.Upload.absolute_base_url, "/secure-media-uploads")
|
|
|
|
get secure_url
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return signed url for legitimate request" do
|
|
|
|
secure_url = upload.url.sub(SiteSetting.Upload.absolute_base_url, "/secure-media-uploads")
|
|
|
|
sign_in(user)
|
2019-12-11 13:26:52 -06:00
|
|
|
stub_request(:head, "https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com/")
|
2019-11-17 19:25:42 -06:00
|
|
|
|
|
|
|
get secure_url
|
|
|
|
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(response.redirect_url).to match("Amz-Expires")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return secure media URL when looking up urls" do
|
|
|
|
upload.update_column(:secure, true)
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
post "/uploads/lookup-urls.json", params: { short_urls: [upload.short_url] }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
result = JSON.parse(response.body)
|
|
|
|
expect(result[0]["url"]).to match("secure-media-uploads")
|
|
|
|
end
|
2020-01-06 20:27:24 -06:00
|
|
|
|
|
|
|
context "when secure media is disabled" do
|
|
|
|
before do
|
|
|
|
SiteSetting.secure_media = false
|
|
|
|
end
|
|
|
|
|
2020-01-06 22:02:17 -06:00
|
|
|
context "if the upload is secure false, meaning the ACL is probably public" do
|
|
|
|
before do
|
|
|
|
upload.update(secure: false)
|
|
|
|
end
|
2020-01-06 20:27:24 -06:00
|
|
|
|
2020-01-06 22:02:17 -06:00
|
|
|
it "should redirect to the regular show route" do
|
|
|
|
secure_url = upload.url.sub(SiteSetting.Upload.absolute_base_url, "/secure-media-uploads")
|
|
|
|
sign_in(user)
|
|
|
|
stub_request(:head, "https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com/")
|
2020-01-06 20:27:24 -06:00
|
|
|
|
2020-01-06 22:02:17 -06:00
|
|
|
get secure_url
|
|
|
|
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(response.redirect_url).to eq(Discourse.store.cdn_url(upload.url))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "if the upload is secure true, meaning the ACL is probably private" do
|
|
|
|
before do
|
|
|
|
upload.update(secure: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should redirect to the presigned URL still otherwise we will get a 403" do
|
|
|
|
secure_url = upload.url.sub(SiteSetting.Upload.absolute_base_url, "/secure-media-uploads")
|
|
|
|
sign_in(user)
|
|
|
|
stub_request(:head, "https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com/")
|
|
|
|
|
|
|
|
get secure_url
|
|
|
|
|
|
|
|
expect(response.status).to eq(302)
|
|
|
|
expect(response.redirect_url).to match("Amz-Expires")
|
|
|
|
end
|
2020-01-06 20:27:24 -06:00
|
|
|
end
|
|
|
|
end
|
2019-11-17 19:25:42 -06:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-03 22:13:52 -05:00
|
|
|
describe '#lookup_urls' do
|
|
|
|
it 'can look up long urls' do
|
2019-05-28 20:00:25 -05:00
|
|
|
sign_in(user)
|
2018-06-03 22:13:52 -05:00
|
|
|
upload = Fabricate(:upload)
|
|
|
|
|
|
|
|
post "/uploads/lookup-urls.json", params: { short_urls: [upload.short_url] }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
result = JSON.parse(response.body)
|
|
|
|
expect(result[0]["url"]).to eq(upload.url)
|
2019-05-28 20:00:25 -05:00
|
|
|
expect(result[0]["short_path"]).to eq(upload.short_path)
|
2018-06-03 22:13:52 -05:00
|
|
|
end
|
2019-11-17 19:25:42 -06:00
|
|
|
|
|
|
|
describe 'secure media' do
|
|
|
|
let(:upload) { Fabricate(:upload_s3, secure: true) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.authorized_extensions = "pdf|png"
|
|
|
|
SiteSetting.s3_upload_bucket = "s3-upload-bucket"
|
|
|
|
SiteSetting.s3_access_key_id = "s3-access-key-id"
|
|
|
|
SiteSetting.s3_secret_access_key = "s3-secret-access-key"
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
SiteSetting.secure_media = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns secure url for a secure media upload' do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
post "/uploads/lookup-urls.json", params: { short_urls: [upload.short_url] }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
result = JSON.parse(response.body)
|
|
|
|
expect(result[0]["url"]).to match("/secure-media-uploads")
|
|
|
|
expect(result[0]["short_path"]).to eq(upload.short_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not return secure urls for non-media uploads' do
|
|
|
|
upload.update!(original_filename: "not-an-image.pdf", extension: "pdf")
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
post "/uploads/lookup-urls.json", params: { short_urls: [upload.short_url] }
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
result = JSON.parse(response.body)
|
|
|
|
expect(result[0]["url"]).not_to match("/secure-media-uploads")
|
|
|
|
expect(result[0]["short_path"]).to eq(upload.short_path)
|
|
|
|
end
|
|
|
|
end
|
2018-06-03 22:13:52 -05:00
|
|
|
end
|
2019-02-20 20:13:37 -06:00
|
|
|
|
|
|
|
describe '#metadata' do
|
2019-05-06 22:12:20 -05:00
|
|
|
fab!(:upload) { Fabricate(:upload) }
|
2019-02-20 20:13:37 -06:00
|
|
|
|
|
|
|
describe 'when url is missing' do
|
|
|
|
it 'should return the right response' do
|
|
|
|
post "/uploads/lookup-metadata.json"
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when not signed in' do
|
|
|
|
it 'should return the right response' do
|
|
|
|
post "/uploads/lookup-metadata.json", params: { url: upload.url }
|
|
|
|
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when signed in' do
|
|
|
|
before do
|
2019-05-28 20:00:25 -05:00
|
|
|
sign_in(user)
|
2019-02-20 20:13:37 -06:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when url is invalid' do
|
|
|
|
it 'should return the right response' do
|
|
|
|
post "/uploads/lookup-metadata.json", params: { url: 'abc' }
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should return the right response" do
|
|
|
|
post "/uploads/lookup-metadata.json", params: { url: upload.url }
|
|
|
|
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
|
|
|
|
result = JSON.parse(response.body)
|
|
|
|
|
|
|
|
expect(result["original_filename"]).to eq(upload.original_filename)
|
|
|
|
expect(result["width"]).to eq(upload.width)
|
|
|
|
expect(result["height"]).to eq(upload.height)
|
|
|
|
expect(result["human_filesize"]).to eq(upload.human_filesize)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-04-02 18:17:17 -05:00
|
|
|
end
|