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
Jérome Perrin
gitlab-ce
Commits
20a88f5c
Commit
20a88f5c
authored
Apr 29, 2013
by
Friedrich Beckmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LDAP authentication in grack - check ldap conf before call / added comment
parent
228baa80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/gitlab/backend/grack_auth.rb
lib/gitlab/backend/grack_auth.rb
+6
-2
No files found.
lib/gitlab/backend/grack_auth.rb
View file @
20a88f5c
...
...
@@ -34,11 +34,15 @@ module Grack
login
,
password
=
@auth
.
credentials
self
.
user
=
User
.
find_by_email
(
login
)
||
User
.
find_by_username
(
login
)
if
user
.
nil?
# If the provided login was not a known email or username
# then user is nil
if
user
.
nil?
# Second chance - try LDAP authentication
return
false
unless
Gitlab
.
config
.
ldap
.
enabled
ldap_auth
(
login
,
password
)
return
false
unless
!
user
.
nil?
else
return
false
unless
user
.
valid_password?
(
password
)
;
return
false
unless
user
.
valid_password?
(
password
)
end
Gitlab
::
ShellEnv
.
set_env
(
user
)
...
...
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