BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
585eb705
Commit
585eb705
authored
Nov 26, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix http push with namespaces. Allow use of username as login
parent
1d857aae
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
repository.rb
app/roles/repository.rb
+1
-1
grack_auth.rb
lib/gitlab/backend/grack_auth.rb
+8
-4
No files found.
app/roles/repository.rb
View file @
585eb705
...
@@ -185,7 +185,7 @@ module Repository
...
@@ -185,7 +185,7 @@ module Repository
end
end
def
http_url_to_repo
def
http_url_to_repo
http_url
=
[
Gitlab
.
config
.
url
,
"/"
,
path
,
".git"
].
join
(
''
)
http_url
=
[
Gitlab
.
config
.
url
,
"/"
,
path
_with_namespace
,
".git"
].
join
(
''
)
end
end
# Check if current branch name is marked as protected in the system
# Check if current branch name is marked as protected in the system
...
...
lib/gitlab/backend/grack_auth.rb
View file @
585eb705
...
@@ -4,10 +4,14 @@ module Grack
...
@@ -4,10 +4,14 @@ module Grack
def
valid?
def
valid?
# Authentication with username and password
# Authentication with username and password
email
,
password
=
@auth
.
credentials
login
,
password
=
@auth
.
credentials
self
.
user
=
User
.
find_by_email
(
email
)
self
.
user
=
User
.
find_by_email
(
login
)
||
User
.
find_by_username
(
login
)
return
false
unless
user
.
try
(
:valid_password?
,
password
)
return
false
unless
user
.
try
(
:valid_password?
,
password
)
email
=
user
.
email
# Set GL_USER env variable
# Set GL_USER env variable
ENV
[
'GL_USER'
]
=
email
ENV
[
'GL_USER'
]
=
email
# Pass Gitolite update hook
# Pass Gitolite update hook
...
@@ -18,8 +22,8 @@ module Grack
...
@@ -18,8 +22,8 @@ module Grack
@env
[
'SCRIPT_NAME'
]
=
""
@env
[
'SCRIPT_NAME'
]
=
""
# Find project by PATH_INFO from env
# Find project by PATH_INFO from env
if
m
=
/^\/([\w\.-]+)\.git/
.
match
(
@request
.
path_info
).
to_a
if
m
=
/^\/([\w\.
\/
-]+)\.git/
.
match
(
@request
.
path_info
).
to_a
self
.
project
=
Project
.
find_
by_path
(
m
.
last
)
self
.
project
=
Project
.
find_
with_namespace
(
m
.
last
)
return
false
unless
project
return
false
unless
project
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