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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
10b8fd71
Commit
10b8fd71
authored
Nov 14, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor token authenticatable encrypted strategy
parent
10ea7539
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
13 deletions
+20
-13
app/models/concerns/token_authenticatable_strategies/base.rb
app/models/concerns/token_authenticatable_strategies/base.rb
+6
-0
app/models/concerns/token_authenticatable_strategies/encrypted.rb
...ls/concerns/token_authenticatable_strategies/encrypted.rb
+14
-13
No files found.
app/models/concerns/token_authenticatable_strategies/base.rb
View file @
10b8fd71
# frozen_string_literal: true
module
TokenAuthenticatableStrategies
attr_reader
:klass
,
:token_field
,
:options
class
Base
def
initialize
(
klass
,
token_field
,
options
)
@klass
=
klass
...
...
@@ -36,6 +38,10 @@ module TokenAuthenticatableStrategies
instance
.
save!
if
Gitlab
::
Database
.
read_write?
end
def
fallback?
options
[
:fallback
]
==
true
end
protected
def
write_new_token
(
instance
)
...
...
app/models/concerns/token_authenticatable_strategies/encrypted.rb
View file @
10b8fd71
...
...
@@ -7,45 +7,46 @@ module TokenAuthenticatableStrategies
def
find_token_authenticatable
(
token
,
unscoped
=
false
)
return
unless
token
encrypted_value
=
Gitlab
::
CryptoHelper
.
aes256_gcm_encrypt
(
token
)
token_authenticatable
=
relation
(
unscoped
)
.
find_by
(
token_field_name
=>
Gitlab
::
CryptoHelper
.
aes256_gcm_encrypt
(
token
)
)
.
find_by
(
encrypted_field
=>
encrypted_value
)
if
@options
[
:fallback
]
token_authenticatable
||=
fallback_strategy
.
find_token_authenticatable
(
token
)
if
fallback?
token_authenticatable
||=
fallback_strategy
.
find_token_authenticatable
(
token
)
end
token_authenticatable
end
def
get_token
(
instance
)
raw_token
=
instance
.
read_attribute
(
token_field_name
)
raw_token
=
instance
.
read_attribute
(
encrypted_field
)
token
=
Gitlab
::
CryptoHelper
.
aes256_gcm_decrypt
(
raw_token
)
token
||=
fallback_strategy
.
get_token
(
instance
)
if
@options
[
:fallback
]
token
||=
fallback_strategy
.
get_token
(
instance
)
if
fallback?
end
def
set_token
(
instance
,
token
)
raise
ArgumentError
unless
token
raise
ArgumentError
unless
token
.
present?
instance
[
token_field_name
]
=
Gitlab
::
CryptoHelper
.
aes256_gcm_encrypt
(
token
)
# instance[@token_field] = nil if @options[:fallback] # TODO this seems wrong
instance
[
encrypted_field
]
=
Gitlab
::
CryptoHelper
.
aes256_gcm_encrypt
(
token
)
end
protected
def
fallback_strategy
@fallback_strategy
||=
TokenAuthenticatableStrategies
::
Insecure
.
new
(
@klass
,
@token_field
,
@
options
)
.
new
(
klass
,
token_field
,
options
)
end
def
token_set?
(
instance
)
raw_token
=
instance
.
read_attribute
(
token_field_name
)
raw_token
||=
instance
.
read_attribute
(
@token_field
)
if
@options
[
:fallback
]
raw_token
=
instance
.
read_attribute
(
encrypted_field
)
raw_token
||=
instance
.
read_attribute
(
token_field
)
if
fallback?
raw_token
.
present?
end
def
token_field_name
"
#{
@token_field
}
_encrypted"
def
encrypted_field
@encrypted_field
||=
"
#{
@token_field
}
_encrypted"
end
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