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
623756aa
Commit
623756aa
authored
Jun 04, 2020
by
Blair Lunceford
Committed by
Imre Farkas
Jun 04, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support first_name and last_name attributes in LDAP user sync
parent
2cff28a5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
60 additions
and
7 deletions
+60
-7
changelogs/unreleased/11805-support-first-name-and-last-name-attributes-in-ldap-user-sync.yml
...first-name-and-last-name-attributes-in-ldap-user-sync.yml
+5
-0
ee/lib/ee/gitlab/auth/ldap/person.rb
ee/lib/ee/gitlab/auth/ldap/person.rb
+17
-2
ee/spec/lib/gitlab/auth/ldap/access_spec.rb
ee/spec/lib/gitlab/auth/ldap/access_spec.rb
+21
-0
ee/spec/lib/gitlab/auth/ldap/person_spec.rb
ee/spec/lib/gitlab/auth/ldap/person_spec.rb
+11
-2
lib/gitlab/auth/ldap/person.rb
lib/gitlab/auth/ldap/person.rb
+1
-1
spec/lib/gitlab/auth/ldap/person_spec.rb
spec/lib/gitlab/auth/ldap/person_spec.rb
+5
-2
No files found.
changelogs/unreleased/11805-support-first-name-and-last-name-attributes-in-ldap-user-sync.yml
0 → 100644
View file @
623756aa
---
title
:
Support first_name and last_name attributes in LDAP user sync
merge_request
:
29542
author
:
type
:
added
ee/lib/ee/gitlab/auth/ldap/person.rb
View file @
623756aa
...
@@ -8,6 +8,7 @@ module EE
...
@@ -8,6 +8,7 @@ module EE
module
Ldap
module
Ldap
module
Person
module
Person
extend
ActiveSupport
::
Concern
extend
ActiveSupport
::
Concern
extend
::
Gitlab
::
Utils
::
Override
class_methods
do
class_methods
do
def
find_by_email
(
email
,
adapter
)
def
find_by_email
(
email
,
adapter
)
...
@@ -54,9 +55,11 @@ module EE
...
@@ -54,9 +55,11 @@ module EE
def
ldap_attributes
(
config
)
def
ldap_attributes
(
config
)
attributes
=
super
+
[
attributes
=
super
+
[
'memberof'
,
'memberof'
,
(
config
.
sync_ssh_keys
if
config
.
sync_ssh_keys
.
is_a?
(
String
))
(
config
.
sync_ssh_keys
if
config
.
sync_ssh_keys
.
is_a?
(
String
)),
*
config
.
attributes
[
'first_name'
],
*
config
.
attributes
[
'last_name'
]
]
]
attributes
.
compact
.
uniq
attributes
.
compact
.
uniq
.
reject
(
&
:blank?
)
end
end
end
end
...
@@ -93,6 +96,18 @@ module EE
...
@@ -93,6 +96,18 @@ module EE
# the group name
# the group name
memberof
.
match
(
/(?:cn=([\w\s-]+))/i
)
&
.
captures
&
.
first
memberof
.
match
(
/(?:cn=([\w\s-]+))/i
)
&
.
captures
&
.
first
end
end
override
:name
def
name
name
=
super
return
name
if
name
.
present?
first_name
=
attribute_value
(
:first_name
)
&
.
first
last_name
=
attribute_value
(
:last_name
)
&
.
first
return
unless
first_name
.
present?
||
last_name
.
present?
"
#{
first_name
}
#{
last_name
}
"
.
strip
end
end
end
end
end
end
end
...
...
ee/spec/lib/gitlab/auth/ldap/access_spec.rb
View file @
623756aa
...
@@ -194,6 +194,27 @@ RSpec.describe Gitlab::Auth::Ldap::Access do
...
@@ -194,6 +194,27 @@ RSpec.describe Gitlab::Auth::Ldap::Access do
expect
{
access
.
update_user
}.
not_to
change
(
user
,
:email
)
expect
{
access
.
update_user
}.
not_to
change
(
user
,
:email
)
end
end
end
end
context
'when first and last name attributes passed'
do
before
do
entry
[
'givenName'
]
=
[
'Jane'
]
entry
[
'sn'
]
=
[
'Doe'
]
end
it
'does not update the name when in a read-only GitLab instance'
do
allow
(
Gitlab
::
Database
).
to
receive
(
:read_only?
).
and_return
(
true
)
expect
{
access
.
update_user
}.
not_to
change
(
user
,
:name
)
end
it
'updates the name if the user name is different'
do
expect
{
access
.
update_user
}.
to
change
(
user
,
:name
).
to
(
'Jane Doe'
)
end
it
'does not update the email if the user name is different'
do
expect
{
access
.
update_user
}.
not_to
change
(
user
,
:email
)
end
end
end
end
context
'group memberships'
do
context
'group memberships'
do
...
...
ee/spec/lib/gitlab/auth/ldap/person_spec.rb
View file @
623756aa
...
@@ -16,6 +16,13 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
...
@@ -16,6 +16,13 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
stub_ldap_config
(
sync_ssh_keys:
'sshPublicKey'
)
stub_ldap_config
(
sync_ssh_keys:
'sshPublicKey'
)
expect
(
described_class
.
ldap_attributes
(
ldap_adapter
.
config
)).
to
include
(
'sshPublicKey'
)
expect
(
described_class
.
ldap_attributes
(
ldap_adapter
.
config
)).
to
include
(
'sshPublicKey'
)
end
end
it
'appends first and last name attributes'
do
stub_ldap_config
(
options:
{
'attributes'
=>
{
'first_name'
=>
'name'
,
'last_name'
=>
'surname'
}
})
expect
(
described_class
.
ldap_attributes
(
ldap_adapter
.
config
)).
to
include
(
'name'
)
expect
(
described_class
.
ldap_attributes
(
ldap_adapter
.
config
)).
to
include
(
'surname'
)
end
end
end
describe
'.find_by_email'
do
describe
'.find_by_email'
do
...
@@ -91,7 +98,9 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
...
@@ -91,7 +98,9 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
'attributes'
=>
{
'attributes'
=>
{
'name'
=>
'cn'
,
'name'
=>
'cn'
,
'email'
=>
'mail'
,
'email'
=>
'mail'
,
'username'
=>
%w(uid mail memberof)
'username'
=>
%w(uid mail)
,
'first_name'
=>
'name'
,
'last_name'
=>
'surname'
},
},
'sync_ssh_keys'
=>
value
'sync_ssh_keys'
=>
value
}
}
...
@@ -100,7 +109,7 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
...
@@ -100,7 +109,7 @@ RSpec.describe Gitlab::Auth::Ldap::Person do
let
(
:config
)
{
Gitlab
::
Auth
::
Ldap
::
Config
.
new
(
'ldapmain'
)
}
let
(
:config
)
{
Gitlab
::
Auth
::
Ldap
::
Config
.
new
(
'ldapmain'
)
}
let
(
:ldap_attributes
)
{
described_class
.
ldap_attributes
(
config
)
}
let
(
:ldap_attributes
)
{
described_class
.
ldap_attributes
(
config
)
}
let
(
:expected_attributes
)
{
%w(dn cn uid mail memberof)
}
let
(
:expected_attributes
)
{
%w(dn cn uid mail memberof
name surname
)
}
it
'includes a real attribute name'
do
it
'includes a real attribute name'
do
stub_sync_ssh_keys
(
'my-ssh-attribute'
)
stub_sync_ssh_keys
(
'my-ssh-attribute'
)
...
...
lib/gitlab/auth/ldap/person.rb
View file @
623756aa
...
@@ -39,7 +39,7 @@ module Gitlab
...
@@ -39,7 +39,7 @@ module Gitlab
*
config
.
attributes
[
'name'
],
*
config
.
attributes
[
'name'
],
*
config
.
attributes
[
'email'
],
*
config
.
attributes
[
'email'
],
*
config
.
attributes
[
'username'
]
*
config
.
attributes
[
'username'
]
].
compact
.
uniq
].
compact
.
uniq
.
reject
(
&
:blank?
)
end
end
def
self
.
normalize_dn
(
dn
)
def
self
.
normalize_dn
(
dn
)
...
...
spec/lib/gitlab/auth/ldap/person_spec.rb
View file @
623756aa
...
@@ -57,14 +57,17 @@ describe Gitlab::Auth::Ldap::Person do
...
@@ -57,14 +57,17 @@ describe Gitlab::Auth::Ldap::Person do
'attributes'
=>
{
'attributes'
=>
{
'name'
=>
'cn'
,
'name'
=>
'cn'
,
'email'
=>
'mail'
,
'email'
=>
'mail'
,
'username'
=>
%w(uid mail memberof)
'username'
=>
%w(uid mail)
,
'first_name'
=>
''
}
}
}
}
)
)
config
=
Gitlab
::
Auth
::
Ldap
::
Config
.
new
(
'ldapmain'
)
config
=
Gitlab
::
Auth
::
Ldap
::
Config
.
new
(
'ldapmain'
)
ldap_attributes
=
described_class
.
ldap_attributes
(
config
)
ldap_attributes
=
described_class
.
ldap_attributes
(
config
)
expect
(
ldap_attributes
).
to
match_array
(
%w(dn uid cn mail memberof)
)
expect
(
ldap_attributes
).
to
include
(
'dn'
,
'uid'
,
'cn'
,
'mail'
)
expect
(
ldap_attributes
).
to
be_present
expect
(
ldap_attributes
.
uniq!
).
to
eq
(
nil
)
end
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