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
1566d5fd
Commit
1566d5fd
authored
Nov 02, 2021
by
nmilojevic1
Committed by
Nikola Milojevic
Nov 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ENV variable to control session_store
parent
f4756e90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
16 deletions
+17
-16
config/initializers/session_store.rb
config/initializers/session_store.rb
+11
-10
spec/initializers/session_store_spec.rb
spec/initializers/session_store_spec.rb
+6
-6
No files found.
config/initializers/session_store.rb
View file @
1566d5fd
...
@@ -18,14 +18,15 @@ cookie_key = if Rails.env.development?
...
@@ -18,14 +18,15 @@ cookie_key = if Rails.env.development?
else
else
"_gitlab_session"
"_gitlab_session"
end
end
if
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'GITLAB_LEGACY_SESSION_STORE'
],
default:
false
)
sessions_config
=
Gitlab
::
Redis
::
SharedState
.
params
sessions_config
[
:namespace
]
=
Gitlab
::
Redis
::
SharedState
::
SESSION_NAMESPACE
if
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'GITLAB_REDIS_STORE_WITH_SESSION_STORE'
],
default:
true
)
store
=
Gitlab
::
Redis
::
SharedState
.
store
(
namespace:
Gitlab
::
Redis
::
SharedState
::
SESSION_NAMESPACE
)
Gitlab
::
Application
.
config
.
session_store
(
Gitlab
::
Application
.
config
.
session_store
(
:redis_store
,
# Using the cookie_store would enable session replay attacks.
:redis_store
,
# Using the cookie_store would enable session replay attacks.
servers:
sessions_config
,
redis_store:
store
,
key:
cookie_key
,
key:
cookie_key
,
secure:
Gitlab
.
config
.
gitlab
.
https
,
secure:
Gitlab
.
config
.
gitlab
.
https
,
httponly:
true
,
httponly:
true
,
...
@@ -33,17 +34,17 @@ if Gitlab::Utils.to_boolean(ENV['GITLAB_LEGACY_SESSION_STORE'], default: false)
...
@@ -33,17 +34,17 @@ if Gitlab::Utils.to_boolean(ENV['GITLAB_LEGACY_SESSION_STORE'], default: false)
path:
Rails
.
application
.
config
.
relative_url_root
.
presence
||
'/'
path:
Rails
.
application
.
config
.
relative_url_root
.
presence
||
'/'
)
)
else
else
store
=
Gitlab
::
Redis
::
SharedState
.
store
(
sessions_config
=
Gitlab
::
Redis
::
SharedState
.
params
namespace:
Gitlab
::
Redis
::
SharedState
::
SESSION_NAMESPACE
sessions_config
[
:namespace
]
=
Gitlab
::
Redis
::
SharedState
::
SESSION_NAMESPACE
)
Gitlab
::
Application
.
config
.
session_store
(
Gitlab
::
Application
.
config
.
session_store
(
:redis_store
,
# Using the cookie_store would enable session replay attacks.
:redis_store
,
# Using the cookie_store would enable session replay attacks.
redis_store:
store
,
servers:
sessions_config
,
key:
cookie_key
,
key:
cookie_key
,
expires_in:
Settings
.
gitlab
[
'session_expire_delay'
]
*
60
,
secure:
Gitlab
.
config
.
gitlab
.
https
,
httponly:
true
,
httponly:
true
,
secure:
Gitlab
.
config
.
gitlab
.
https
expires_in:
Settings
.
gitlab
[
'session_expire_delay'
]
*
60
,
path:
Rails
.
application
.
config
.
relative_url_root
.
presence
||
'/'
)
)
end
end
...
...
spec/initializers/session_store_spec.rb
View file @
1566d5fd
...
@@ -10,26 +10,26 @@ RSpec.describe 'Session initializer for GitLab' do
...
@@ -10,26 +10,26 @@ RSpec.describe 'Session initializer for GitLab' do
end
end
describe
'config#session_store'
do
describe
'config#session_store'
do
context
'when the GITLAB_
LEGACY_SESSION_STORE env is enabled
'
do
context
'when the GITLAB_
REDIS_STORE_WITH_SESSION_STORE env is not set
'
do
before
do
before
do
stub_env
(
'GITLAB_
LEGACY_SESSION_STORE'
,
true
)
stub_env
(
'GITLAB_
REDIS_STORE_WITH_SESSION_STORE'
,
nil
)
end
end
it
'returns the regular cookie without a suffix'
do
it
'returns the regular cookie without a suffix'
do
expect
(
subject
).
to
receive
(
:session_store
).
with
(
:redis_store
,
a_hash_including
(
servers:
kind_of
(
Hash
)))
expect
(
subject
).
to
receive
(
:session_store
).
with
(
:redis_store
,
a_hash_including
(
redis_store:
kind_of
(
::
Redis
::
Store
)))
load_session_store
load_session_store
end
end
end
end
context
'when the GITLAB_
LEGACY_SESSION_STORE env is not set
'
do
context
'when the GITLAB_
REDIS_STORE_WITH_SESSION_STORE env is disabled
'
do
before
do
before
do
stub_env
(
'GITLAB_
LEGACY_SESSION_STORE'
,
nil
)
stub_env
(
'GITLAB_
REDIS_STORE_WITH_SESSION_STORE'
,
false
)
end
end
it
'returns the regular cookie without a suffix'
do
it
'returns the regular cookie without a suffix'
do
expect
(
subject
).
to
receive
(
:session_store
).
with
(
:redis_store
,
a_hash_including
(
redis_store:
kind_of
(
::
Redis
::
Store
)))
expect
(
subject
).
to
receive
(
:session_store
).
with
(
:redis_store
,
a_hash_including
(
servers:
kind_of
(
Hash
)))
load_session_store
load_session_store
end
end
...
...
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