Commit 5fc63a1d authored by Tim Zallmann's avatar Tim Zallmann

Changed the Caching of User Avatars to be public and to 5 minutes

parent c141d0af
......@@ -29,7 +29,13 @@ module UploadsActions
def show
return render_404 unless uploader&.exists?
expires_in 0.seconds, must_revalidate: true, private: true
if cache_privately?
expires_in 0.seconds, must_revalidate: true, private: true
else
# We need to reset caching from the applications controller to get rid of the no-store value
headers['Cache-Control'] = ''
expires_in 5.minutes, public: true, must_revalidate: false
end
disposition = uploader.image_or_video? ? 'inline' : 'attachment'
......@@ -114,6 +120,10 @@ module UploadsActions
nil
end
def cache_privately?
true
end
def model
strong_memoize(:model) { find_model }
end
......
......@@ -70,6 +70,10 @@ class UploadsController < ApplicationController
end
end
def cache_privately?
true unless (User === model || Appearance === model)
end
def upload_model_class
MODEL_CLASSES[params[:model]] || raise(UnknownUploadModelError)
end
......
......@@ -12,6 +12,13 @@ shared_examples 'content not cached without revalidation and no-store' do
end
end
shared_examples 'content publicy cached' do
it 'ensures content is publicly cached' do
# Fixed in newer versions of ActivePack, it will only output a single `private`.
expect(subject['Cache-Control']).to eq('max-age=300, public')
end
end
describe UploadsController do
let!(:user) { create(:user, avatar: fixture_file_upload("spec/fixtures/dk.png", "image/png")) }
......@@ -184,7 +191,7 @@ describe UploadsController do
expect(response).to have_gitlab_http_status(200)
end
it_behaves_like 'content not cached without revalidation and no-store' do
it_behaves_like 'content publicy cached' do
subject do
get :show, params: { model: 'user', mounted_as: 'avatar', id: user.id, filename: 'dk.png' }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment