Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dex
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hdacloud
dex
Commits
fd4f57b5
Commit
fd4f57b5
authored
7 years ago
by
rithu john
Browse files
Options
Downloads
Patches
Plain Diff
storage/static.go: storage backend should not explicitly lower-case email ids.
parent
e40c01ec
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
cmd/dex/serve.go
+1
-1
1 addition, 1 deletion
cmd/dex/serve.go
storage/memory/memory.go
+3
-3
3 additions, 3 deletions
storage/memory/memory.go
storage/memory/static_test.go
+25
-7
25 additions, 7 deletions
storage/memory/static_test.go
storage/static.go
+17
-7
17 additions, 7 deletions
storage/static.go
with
46 additions
and
18 deletions
cmd/dex/serve.go
+
1
−
1
View file @
fd4f57b5
...
...
@@ -144,7 +144,7 @@ func serve(cmd *cobra.Command, args []string) error {
for
i
,
p
:=
range
c
.
StaticPasswords
{
passwords
[
i
]
=
storage
.
Password
(
p
)
}
s
=
storage
.
WithStaticPasswords
(
s
,
passwords
)
s
=
storage
.
WithStaticPasswords
(
s
,
passwords
,
logger
)
}
storageConnectors
:=
make
([]
storage
.
Connector
,
len
(
c
.
StaticConnectors
))
...
...
This diff is collapsed.
Click to expand it.
storage/memory/memory.go
+
3
−
3
View file @
fd4f57b5
...
...
@@ -128,12 +128,12 @@ func (s *memStorage) CreateAuthRequest(a storage.AuthRequest) (err error) {
}
func
(
s
*
memStorage
)
CreatePassword
(
p
storage
.
Password
)
(
err
error
)
{
p
.
Email
=
strings
.
ToLower
(
p
.
Email
)
lower
Email
:
=
strings
.
ToLower
(
p
.
Email
)
s
.
tx
(
func
()
{
if
_
,
ok
:=
s
.
passwords
[
p
.
Email
];
ok
{
if
_
,
ok
:=
s
.
passwords
[
lower
Email
];
ok
{
err
=
storage
.
ErrAlreadyExists
}
else
{
s
.
passwords
[
p
.
Email
]
=
p
s
.
passwords
[
lower
Email
]
=
p
}
})
return
...
...
This diff is collapsed.
Click to expand it.
storage/memory/static_test.go
+
25
−
7
View file @
fd4f57b5
...
...
@@ -108,9 +108,10 @@ func TestStaticPasswords(t *testing.T) {
p1
:=
storage
.
Password
{
Email
:
"foo@example.com"
,
Username
:
"foo_secret"
}
p2
:=
storage
.
Password
{
Email
:
"bar@example.com"
,
Username
:
"bar_secret"
}
p3
:=
storage
.
Password
{
Email
:
"spam@example.com"
,
Username
:
"spam_secret"
}
p4
:=
storage
.
Password
{
Email
:
"Spam@example.com"
,
Username
:
"Spam_secret"
}
backing
.
CreatePassword
(
p1
)
s
:=
storage
.
WithStaticPasswords
(
backing
,
[]
storage
.
Password
{
p2
})
s
:=
storage
.
WithStaticPasswords
(
backing
,
[]
storage
.
Password
{
p2
}
,
logger
)
tests
:=
[]
struct
{
name
string
...
...
@@ -160,22 +161,39 @@ func TestStaticPasswords(t *testing.T) {
},
},
{
name
:
"
list
passwords"
,
name
:
"
create
passwords"
,
action
:
func
()
error
{
passwords
,
err
:=
s
.
ListPasswords
()
if
err
:=
s
.
CreatePassword
(
p4
);
err
!=
nil
{
return
err
}
return
s
.
CreatePassword
(
p3
)
},
wantErr
:
true
,
},
{
name
:
"get password"
,
action
:
func
()
error
{
p
,
err
:=
s
.
GetPassword
(
p4
.
Email
)
if
err
!=
nil
{
return
err
}
if
n
:=
len
(
passwords
);
n
!=
2
{
return
fmt
.
Errorf
(
"expected
2
passwords got %
d
"
,
n
)
if
strings
.
Compare
(
p
.
Email
,
p4
.
Email
)
!=
0
{
return
fmt
.
Errorf
(
"expected
%s
passwords got %
s
"
,
p4
.
Email
,
p
.
Email
)
}
return
nil
},
},
{
name
:
"
create
password"
,
name
:
"
list
password
s
"
,
action
:
func
()
error
{
return
s
.
CreatePassword
(
p3
)
passwords
,
err
:=
s
.
ListPasswords
()
if
err
!=
nil
{
return
err
}
if
n
:=
len
(
passwords
);
n
!=
3
{
return
fmt
.
Errorf
(
"expected 3 passwords got %d"
,
n
)
}
return
nil
},
},
}
...
...
This diff is collapsed.
Click to expand it.
storage/static.go
+
17
−
7
View file @
fd4f57b5
...
...
@@ -3,6 +3,8 @@ package storage
import
(
"errors"
"strings"
"github.com/sirupsen/logrus"
)
// Tests for this code are in the "memory" package, since this package doesn't
...
...
@@ -25,6 +27,7 @@ func WithStaticClients(s Storage, staticClients []Client) Storage {
for
_
,
client
:=
range
staticClients
{
clientsByID
[
client
.
ID
]
=
client
}
return
staticClientsStorage
{
s
,
staticClients
,
clientsByID
}
}
...
...
@@ -82,19 +85,26 @@ type staticPasswordsStorage struct {
Storage
// A read-only set of passwords.
passwords
[]
Password
passwords
[]
Password
// A map of passwords that is indexed by lower-case email ids
passwordsByEmail
map
[
string
]
Password
logger
logrus
.
FieldLogger
}
// WithStaticPasswords returns a storage with a read-only set of passwords. Write actions,
// such as creating other passwords, will fail.
func
WithStaticPasswords
(
s
Storage
,
staticPasswords
[]
Password
)
Storage
{
// WithStaticPasswords returns a storage with a read-only set of passwords.
func
WithStaticPasswords
(
s
Storage
,
staticPasswords
[]
Password
,
logger
logrus
.
FieldLogger
)
Storage
{
passwordsByEmail
:=
make
(
map
[
string
]
Password
,
len
(
staticPasswords
))
for
_
,
p
:=
range
staticPasswords
{
p
.
Email
=
strings
.
ToLower
(
p
.
Email
)
passwordsByEmail
[
p
.
Email
]
=
p
//Enable case insensitive email comparison.
lowerEmail
:=
strings
.
ToLower
(
p
.
Email
)
if
_
,
ok
:=
passwordsByEmail
[
lowerEmail
];
ok
{
logger
.
Errorf
(
"Attempting to create StaticPasswords with the same email id: %s"
,
p
.
Email
)
}
passwordsByEmail
[
lowerEmail
]
=
p
}
return
staticPasswordsStorage
{
s
,
staticPasswords
,
passwordsByEmail
}
return
staticPasswordsStorage
{
s
,
staticPasswords
,
passwordsByEmail
,
logger
}
}
func
(
s
staticPasswordsStorage
)
isStatic
(
email
string
)
bool
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment