Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
782badd0
Commit
782badd0
authored
Oct 18, 2018
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix content caching for non auth users
parent
329aa249
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
65 additions
and
7 deletions
+65
-7
app/controllers/application_controller.rb
app/controllers/application_controller.rb
+9
-0
spec/controllers/application_controller_spec.rb
spec/controllers/application_controller_spec.rb
+26
-0
spec/controllers/uploads_controller_spec.rb
spec/controllers/uploads_controller_spec.rb
+14
-7
spec/features/projects_spec.rb
spec/features/projects_spec.rb
+16
-0
No files found.
app/controllers/application_controller.rb
View file @
782badd0
...
@@ -46,6 +46,8 @@ class ApplicationController < ActionController::Base
...
@@ -46,6 +46,8 @@ class ApplicationController < ActionController::Base
:git_import_enabled?
,
:gitlab_project_import_enabled?
,
:git_import_enabled?
,
:gitlab_project_import_enabled?
,
:manifest_import_enabled?
:manifest_import_enabled?
DEFAULT_GITLAB_CACHE_CONTROL
=
"
#{
ActionDispatch
::
Http
::
Cache
::
Response
::
DEFAULT_CACHE_CONTROL
}
, no-store"
.
freeze
rescue_from
Encoding
::
CompatibilityError
do
|
exception
|
rescue_from
Encoding
::
CompatibilityError
do
|
exception
|
log_exception
(
exception
)
log_exception
(
exception
)
render
"errors/encoding"
,
layout:
"errors"
,
status:
500
render
"errors/encoding"
,
layout:
"errors"
,
status:
500
...
@@ -244,6 +246,13 @@ class ApplicationController < ActionController::Base
...
@@ -244,6 +246,13 @@ class ApplicationController < ActionController::Base
headers
[
'X-XSS-Protection'
]
=
'1; mode=block'
headers
[
'X-XSS-Protection'
]
=
'1; mode=block'
headers
[
'X-UA-Compatible'
]
=
'IE=edge'
headers
[
'X-UA-Compatible'
]
=
'IE=edge'
headers
[
'X-Content-Type-Options'
]
=
'nosniff'
headers
[
'X-Content-Type-Options'
]
=
'nosniff'
if
current_user
# Adds `no-store` to the DEFAULT_CACHE_CONTROL, to prevent security
# concerns due to caching private data.
headers
[
'Cache-Control'
]
=
DEFAULT_GITLAB_CACHE_CONTROL
headers
[
"Pragma"
]
=
"no-cache"
# HTTP 1.0 compatibility
end
end
end
def
validate_user_service_ticket!
def
validate_user_service_ticket!
...
...
spec/controllers/application_controller_spec.rb
View file @
782badd0
...
@@ -792,4 +792,30 @@ describe ApplicationController do
...
@@ -792,4 +792,30 @@ describe ApplicationController do
end
end
end
end
end
end
context
'control headers'
do
controller
(
described_class
)
do
def
index
render
json: :ok
end
end
context
'user not logged in'
do
it
'sets the default headers'
do
get
:index
expect
(
response
.
headers
[
'Cache-Control'
]).
to
be_nil
end
end
context
'user logged in'
do
it
'sets the default headers'
do
sign_in
(
user
)
get
:index
expect
(
response
.
headers
[
'Cache-Control'
]).
to
eq
'max-age=0, private, must-revalidate, no-store'
end
end
end
end
end
spec/controllers/uploads_controller_spec.rb
View file @
782badd0
...
@@ -5,6 +5,13 @@ shared_examples 'content not cached without revalidation' do
...
@@ -5,6 +5,13 @@ shared_examples 'content not cached without revalidation' do
end
end
end
end
shared_examples
'content not cached without revalidation and no-store'
do
it
'ensures content will not be cached without revalidation'
do
# Fixed in newer versions of ActivePack, it will only output a single `private`.
expect
(
subject
[
'Cache-Control'
]).
to
eq
(
'max-age=0, private, must-revalidate, private, no-store'
)
end
end
describe
UploadsController
do
describe
UploadsController
do
let!
(
:user
)
{
create
(
:user
,
avatar:
fixture_file_upload
(
"spec/fixtures/dk.png"
,
"image/png"
))
}
let!
(
:user
)
{
create
(
:user
,
avatar:
fixture_file_upload
(
"spec/fixtures/dk.png"
,
"image/png"
))
}
...
@@ -177,7 +184,7 @@ describe UploadsController do
...
@@ -177,7 +184,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'user'
,
mounted_as:
'avatar'
,
id:
user
.
id
,
filename:
'dk.png'
get
:show
,
model:
'user'
,
mounted_as:
'avatar'
,
id:
user
.
id
,
filename:
'dk.png'
...
@@ -239,7 +246,7 @@ describe UploadsController do
...
@@ -239,7 +246,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'project'
,
mounted_as:
'avatar'
,
id:
project
.
id
,
filename:
'dk.png'
get
:show
,
model:
'project'
,
mounted_as:
'avatar'
,
id:
project
.
id
,
filename:
'dk.png'
...
@@ -292,7 +299,7 @@ describe UploadsController do
...
@@ -292,7 +299,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'project'
,
mounted_as:
'avatar'
,
id:
project
.
id
,
filename:
'dk.png'
get
:show
,
model:
'project'
,
mounted_as:
'avatar'
,
id:
project
.
id
,
filename:
'dk.png'
...
@@ -344,7 +351,7 @@ describe UploadsController do
...
@@ -344,7 +351,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'group'
,
mounted_as:
'avatar'
,
id:
group
.
id
,
filename:
'dk.png'
get
:show
,
model:
'group'
,
mounted_as:
'avatar'
,
id:
group
.
id
,
filename:
'dk.png'
...
@@ -388,7 +395,7 @@ describe UploadsController do
...
@@ -388,7 +395,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'group'
,
mounted_as:
'avatar'
,
id:
group
.
id
,
filename:
'dk.png'
get
:show
,
model:
'group'
,
mounted_as:
'avatar'
,
id:
group
.
id
,
filename:
'dk.png'
...
@@ -445,7 +452,7 @@ describe UploadsController do
...
@@ -445,7 +452,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'note'
,
mounted_as:
'attachment'
,
id:
note
.
id
,
filename:
'dk.png'
get
:show
,
model:
'note'
,
mounted_as:
'attachment'
,
id:
note
.
id
,
filename:
'dk.png'
...
@@ -498,7 +505,7 @@ describe UploadsController do
...
@@ -498,7 +505,7 @@ describe UploadsController do
expect
(
response
).
to
have_gitlab_http_status
(
200
)
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
it_behaves_like
'content not cached without revalidation'
do
it_behaves_like
'content not cached without revalidation
and no-store
'
do
subject
do
subject
do
get
:show
,
model:
'note'
,
mounted_as:
'attachment'
,
id:
note
.
id
,
filename:
'dk.png'
get
:show
,
model:
'note'
,
mounted_as:
'attachment'
,
id:
note
.
id
,
filename:
'dk.png'
...
...
spec/features/projects_spec.rb
View file @
782badd0
...
@@ -322,6 +322,22 @@ describe 'Project' do
...
@@ -322,6 +322,22 @@ describe 'Project' do
end
end
end
end
context
'content is not cached after signing out'
,
:js
do
let
(
:user
)
{
create
(
:user
,
project_view:
'activity'
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
it
'does not load activity'
,
:js
do
project
.
add_maintainer
(
user
)
sign_in
(
user
)
visit
project_path
(
project
)
sign_out
(
user
)
page
.
evaluate_script
(
'window.history.back()'
)
expect
(
page
).
not_to
have_selector
(
'.event-item'
)
end
end
def
remove_with_confirm
(
button_text
,
confirm_with
)
def
remove_with_confirm
(
button_text
,
confirm_with
)
click_button
button_text
click_button
button_text
fill_in
'confirm_name_input'
,
with:
confirm_with
fill_in
'confirm_name_input'
,
with:
confirm_with
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment