Skip to content

Commit d3b1f2c

Browse files
authored
Merge pull request #3802 from manyfold3d/fix-signed-urls-in-single-user-mode
Fix signed urls (open in slicer) in single user mode
2 parents c23678a + 8fcead6 commit d3b1f2c

File tree

3 files changed

+26
-20
lines changed

3 files changed

+26
-20
lines changed

app/controllers/application_controller.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class ApplicationController < ActionController::Base
55
after_action :verify_policy_scoped, only: :index, unless: :active_admin_controller?
66
after_action :set_content_security_policy_header, if: -> { request.format.html? }
77

8-
before_action :authenticate_user!, if: -> { !SiteSettings.multiuser_enabled? }
8+
before_action :authenticate_user!, unless: -> { SiteSettings.multiuser_enabled? || has_signed_id? }
99
around_action :switch_locale
1010
before_action :check_for_first_use
1111
before_action :show_security_alerts
@@ -45,6 +45,10 @@ def active_admin_controller?
4545

4646
private
4747

48+
def has_signed_id?
49+
params[:id] && ApplicationRecord.signed_id_verifier.valid_message?(params[:id])
50+
end
51+
4852
def img_src
4953
url = ENV.fetch "SITE_ICON", nil
5054
url ? URI.parse(url).host : nil

app/controllers/model_files_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def get_model
140140

141141
def get_file
142142
# Check for signed download URLs
143-
if params[:id].length > 20
143+
if has_signed_id?
144144
@file = @model.model_files.find_signed!(params[:id], purpose: "download")
145145
skip_authorization
146146
else

spec/requests/model_files_spec.rb

+20-18
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,30 @@
1111
# DELETE /models/:model_id/model_files/:id(.:format) model_files#destroy
1212

1313
RSpec.describe "Model Files" do
14-
context "when signed out" do
15-
context "when downloading via a signed ID", :multiuser do
16-
before { create(:admin) }
14+
[:multiuser, :singleuser].each do |mode|
15+
context "when signed out in #{mode} mode", mode do
16+
context "when downloading via a signed ID" do
17+
before { create(:admin) }
1718

18-
let!(:file) { create(:model_file, filename: "test.jpg") }
19+
let!(:file) { create(:model_file, filename: "test.jpg") }
1920

20-
it "succeeds with a valid ID" do
21-
id = file.signed_id(expires_in: 1.minute, purpose: "download")
22-
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
23-
expect(response).to have_http_status(:success)
24-
end
21+
it "succeeds with a valid ID" do
22+
id = file.signed_id(expires_in: 1.minute, purpose: "download")
23+
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
24+
expect(response).to have_http_status(:success)
25+
end
2526

26-
it "fails if expired" do
27-
id = file.signed_id(expires_at: 1.minute.ago, purpose: "download")
28-
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
29-
expect(response).to have_http_status(:not_found)
30-
end
27+
it "fails if expired" do
28+
id = file.signed_id(expires_at: 1.minute.ago, purpose: "download")
29+
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
30+
expect(response).to have_http_status(:not_found)
31+
end
3132

32-
it "fails if purpose doesn't match" do
33-
id = file.signed_id(expires_in: 1.minute, purpose: "shenanigans")
34-
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
35-
expect(response).to have_http_status(:not_found)
33+
it "fails if purpose doesn't match" do
34+
id = file.signed_id(expires_in: 1.minute, purpose: "shenanigans")
35+
get "/models/#{file.model.to_param}/model_files/#{id}.jpg?download=true"
36+
expect(response).to have_http_status(:not_found)
37+
end
3638
end
3739
end
3840
end

0 commit comments

Comments
 (0)