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
732ad2f6
Commit
732ad2f6
authored
Jul 20, 2016
by
Sean McGivern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clarify intentions of secret token initializer
parent
90565b5f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
55 additions
and
35 deletions
+55
-35
config/initializers/secret_token.rb
config/initializers/secret_token.rb
+55
-35
No files found.
config/initializers/secret_token.rb
View file @
732ad2f6
...
...
@@ -2,44 +2,71 @@
require
'securerandom'
def
generate_new_secure_token
SecureRandom
.
hex
(
64
)
end
def
warn_missing_secret
(
secret
)
warn
"Missing Rails.application.secrets.
#{
secret
}
for
#{
Rails
.
env
}
environment. The secret will be generated and stored in config/secrets.yml."
end
# Transition material in .secret to the secret_key_base key in config/secrets.yml.
# Historically, ENV['SECRET_KEY_BASE'] takes precedence over .secret, so we maintain that
# behavior.
#
# It also used to be the case that the key material in ENV['SECRET_KEY_BASE'] or .secret
# was used to encrypt OTP (two-factor authentication) data so if present, we copy that key
# material into config/secrets.yml under otp_key_base.
#
# Finally, if we have successfully migrated all secrets to config/secrets.yml, delete the
# .secret file to avoid confusion.
#
def
create_tokens
secret_file
=
Rails
.
root
.
join
(
'.secret'
)
file_key
=
File
.
read
(
secret_file
).
chomp
if
File
.
exist?
(
secret_file
)
env_key
=
ENV
[
'SECRET_KEY_BASE'
]
yaml_additions
=
{}
file_secret_key
=
File
.
read
(
secret_file
).
chomp
if
File
.
exist?
(
secret_file
)
env_secret_key
=
ENV
[
'SECRET_KEY_BASE'
]
# Ensure environment variable always overrides secrets.yml.
Rails
.
application
.
secrets
.
secret_key_base
=
env_
key
if
env
_key
.
present?
Rails
.
application
.
secrets
.
secret_key_base
=
env_
secret_key
if
env_secret
_key
.
present?
defaults
=
{
secret_key_base:
file_key
||
generate_new_secure_token
,
otp_key_base:
env_
key
||
file
_key
||
generate_new_secure_token
,
secret_key_base:
file_
secret_
key
||
generate_new_secure_token
,
otp_key_base:
env_
secret_key
||
file_secret
_key
||
generate_new_secure_token
,
db_key_base:
generate_new_secure_token
}
defaults
.
stringify_keys
.
each
do
|
key
,
default
|
missing_secrets
=
set_missing_keys
(
defaults
)
write_secrets_yml
(
missing_secrets
)
unless
missing_secrets
.
empty?
begin
File
.
delete
(
secret_file
)
if
file_secret_key
rescue
=>
e
warn
"Error deleting useless .secret file:
#{
e
}
"
end
end
def
generate_new_secure_token
SecureRandom
.
hex
(
64
)
end
def
warn_missing_secret
(
secret
)
warn
"Missing Rails.application.secrets.
#{
secret
}
for
#{
Rails
.
env
}
environment. The secret will be generated and stored in config/secrets.yml."
end
def
set_missing_keys
(
defaults
)
defaults
.
stringify_keys
.
each_with_object
({})
do
|
(
key
,
default
),
missing
|
if
Rails
.
application
.
secrets
[
key
].
blank?
warn_missing_secret
(
key
)
yaml_additions
[
key
]
=
Rails
.
application
.
secrets
[
key
]
=
default
missing
[
key
]
=
Rails
.
application
.
secrets
[
key
]
=
default
end
end
end
unless
yaml_additions
.
empty?
def
write_secrets_yml
(
missing_secrets
)
secrets_yml
=
Rails
.
root
.
join
(
'config/secrets.yml'
)
all_secrets
=
YAML
.
load_file
(
secrets_yml
)
if
File
.
exist?
(
secrets_yml
)
all_secrets
||=
{}
env_secrets
=
all_secrets
[
Rails
.
env
.
to_s
]
||
{}
all_secrets
[
Rails
.
env
.
to_s
]
=
env_secrets
.
merge
(
yaml_additions
)
do
|
key
,
old
,
new
|
rails_env
=
Rails
.
env
.
to_s
secrets
=
YAML
.
load_file
(
secrets_yml
)
if
File
.
exist?
(
secrets_yml
)
secrets
||=
{}
secrets
[
rails_env
]
||=
{}
secrets
[
rails_env
].
merge!
(
missing_secrets
)
do
|
key
,
old
,
new
|
# Previously, it was possible this was set to the literal contents of an Erb
# expression that evaluated to an empty value. We don't want to support that
# specifically, just ensure we don't break things further.
#
if
old
.
present?
warn
<<
EOM
Rails.application.secrets.
#{
key
}
was blank, but the literal value in config/secrets.yml was:
...
...
@@ -54,14 +81,7 @@ EOM
new
end
File
.
write
(
secrets_yml
,
YAML
.
dump
(
all_secrets
),
mode:
'w'
,
perm:
0600
)
end
begin
File
.
delete
(
secret_file
)
if
file_key
rescue
=>
e
warn
"Error deleting useless .secret file:
#{
e
}
"
end
File
.
write
(
secrets_yml
,
YAML
.
dump
(
secrets
),
mode:
'w'
,
perm:
0600
)
end
create_tokens
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