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
7bd4071b
Unverified
Commit
7bd4071b
authored
6 years ago
by
Stephan Renatus
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1396 from jtnord/useLoginId-dexidp
Use github login as the id
parents
815311fa
fe247b10
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Documentation/connectors/github.md
+3
-0
3 additions, 0 deletions
Documentation/connectors/github.md
connector/github/github.go
+8
-0
8 additions, 0 deletions
connector/github/github.go
connector/github/github_test.go
+36
-1
36 additions, 1 deletion
connector/github/github_test.go
with
47 additions
and
1 deletion
Documentation/connectors/github.md
+
3
−
0
View file @
7bd4071b
...
...
@@ -67,6 +67,9 @@ connectors:
# - ['acme:site-reliability-engineers'] for 'slug'
# - ['acme:Site Reliability Engineers', 'acme:site-reliability-engineers'] for 'both'
teamNameField
:
slug
# flag which will switch from using the internal GitHub id to the users handle (@mention) as the user id.
# It is possible for a user to change their own user name but it is very rare for them to do so
useLoginAsID
:
false
```
## GitHub Enterprise
...
...
This diff is collapsed.
Click to expand it.
connector/github/github.go
+
8
−
0
View file @
7bd4071b
...
...
@@ -48,6 +48,7 @@ type Config struct {
RootCA
string
`json:"rootCA"`
TeamNameField
string
`json:"teamNameField"`
LoadAllGroups
bool
`json:"loadAllGroups"`
UseLoginAsID
bool
`json:"useLoginAsID"`
}
// Org holds org-team filters, in which teams are optional.
...
...
@@ -83,6 +84,7 @@ func (c *Config) Open(id string, logger logrus.FieldLogger) (connector.Connector
clientSecret
:
c
.
ClientSecret
,
apiURL
:
apiURL
,
logger
:
logger
,
useLoginAsID
:
c
.
UseLoginAsID
,
}
if
c
.
HostName
!=
""
{
...
...
@@ -148,6 +150,8 @@ type githubConnector struct {
teamNameField
string
// if set to true and no orgs are configured then connector loads all user claims (all orgs and team)
loadAllGroups
bool
// if set to true will use the users handle rather than their numeric id as the ID
useLoginAsID
bool
}
// groupsRequired returns whether dex requires GitHub's 'read:org' scope. Dex
...
...
@@ -260,12 +264,16 @@ func (c *githubConnector) HandleCallback(s connector.Scopes, r *http.Request) (i
if
username
==
""
{
username
=
user
.
Login
}
identity
=
connector
.
Identity
{
UserID
:
strconv
.
Itoa
(
user
.
ID
),
Username
:
username
,
Email
:
user
.
Email
,
EmailVerified
:
true
,
}
if
c
.
useLoginAsID
{
identity
.
UserID
=
user
.
Login
}
// Only set identity.Groups if 'orgs', 'org', or 'groups' scope are specified.
if
c
.
groupsRequired
(
s
.
Groups
)
{
...
...
This diff is collapsed.
Click to expand it.
connector/github/github_test.go
+
36
−
1
View file @
7bd4071b
...
...
@@ -124,10 +124,11 @@ func TestUserGroupsWithTeamNameAndSlugFieldConfig(t *testing.T) {
})
}
// tests that the users login is used as their username when they have no username set
func
TestUsernameIncludedInFederatedIdentity
(
t
*
testing
.
T
)
{
s
:=
newTestServer
(
map
[
string
]
testResponse
{
"/user"
:
{
data
:
user
{
Login
:
"some-login"
}},
"/user"
:
{
data
:
user
{
Login
:
"some-login"
,
ID
:
12345678
}},
"/user/emails"
:
{
data
:
[]
userEmail
{{
Email
:
"some@email.com"
,
Verified
:
true
,
...
...
@@ -154,6 +155,7 @@ func TestUsernameIncludedInFederatedIdentity(t *testing.T) {
expectNil
(
t
,
err
)
expectEquals
(
t
,
identity
.
Username
,
"some-login"
)
expectEquals
(
t
,
identity
.
UserID
,
"12345678"
)
expectEquals
(
t
,
0
,
len
(
identity
.
Groups
))
c
=
githubConnector
{
apiURL
:
s
.
URL
,
hostName
:
hostURL
.
Host
,
httpClient
:
newClient
(),
loadAllGroups
:
true
}
...
...
@@ -161,8 +163,41 @@ func TestUsernameIncludedInFederatedIdentity(t *testing.T) {
expectNil
(
t
,
err
)
expectEquals
(
t
,
identity
.
Username
,
"some-login"
)
expectEquals
(
t
,
identity
.
UserID
,
"12345678"
)
expectEquals
(
t
,
identity
.
Groups
,
[]
string
{
"org-1"
})
}
func
TestLoginUsedAsIDWhenConfigured
(
t
*
testing
.
T
)
{
s
:=
newTestServer
(
map
[
string
]
testResponse
{
"/user"
:
{
data
:
user
{
Login
:
"some-login"
,
ID
:
12345678
,
Name
:
"Joe Bloggs"
}},
"/user/emails"
:
{
data
:
[]
userEmail
{{
Email
:
"some@email.com"
,
Verified
:
true
,
Primary
:
true
,
}}},
"/login/oauth/access_token"
:
{
data
:
map
[
string
]
interface
{}{
"access_token"
:
"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9"
,
"expires_in"
:
"30"
,
}},
"/user/orgs"
:
{
data
:
[]
org
{{
Login
:
"org-1"
}},
},
})
defer
s
.
Close
()
hostURL
,
err
:=
url
.
Parse
(
s
.
URL
)
expectNil
(
t
,
err
)
req
,
err
:=
http
.
NewRequest
(
"GET"
,
hostURL
.
String
(),
nil
)
expectNil
(
t
,
err
)
c
:=
githubConnector
{
apiURL
:
s
.
URL
,
hostName
:
hostURL
.
Host
,
httpClient
:
newClient
(),
useLoginAsID
:
true
}
identity
,
err
:=
c
.
HandleCallback
(
connector
.
Scopes
{
Groups
:
true
},
req
)
expectNil
(
t
,
err
)
expectEquals
(
t
,
identity
.
UserID
,
"some-login"
)
expectEquals
(
t
,
identity
.
Username
,
"Joe Bloggs"
)
}
func
newTestServer
(
responses
map
[
string
]
testResponse
)
*
httptest
.
Server
{
...
...
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