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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
15a03e1d
Commit
15a03e1d
authored
Jul 02, 2012
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1023 from SaitoWu/feature/https
Feature/https
parents
f464d4c9
40134016
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
11 deletions
+18
-11
app/roles/git_push.rb
app/roles/git_push.rb
+5
-7
app/workers/post_receive.rb
app/workers/post_receive.rb
+7
-3
config/initializers/grack_auth.rb
config/initializers/grack_auth.rb
+5
-0
config/routes.rb
config/routes.rb
+1
-1
No files found.
app/roles/git_push.rb
View file @
15a03e1d
...
...
@@ -86,12 +86,10 @@ module GitPush
# This method will be called after each post receive
# and only if
autor_key_id present in gitlab.
# and only if
user present in gitlab.
# All callbacks for post receive should be placed here
#
def
trigger_post_receive
(
oldrev
,
newrev
,
ref
,
author_key_id
)
user
=
Key
.
find_by_identifier
(
author_key_id
).
user
def
trigger_post_receive
(
oldrev
,
newrev
,
ref
,
user
)
# Create push event
self
.
observe_push
(
oldrev
,
newrev
,
ref
,
user
)
...
...
app/workers/post_receive.rb
View file @
15a03e1d
class
PostReceive
@queue
=
:post_receive
def
self
.
perform
(
reponame
,
oldrev
,
newrev
,
ref
,
author_key_id
)
def
self
.
perform
(
reponame
,
oldrev
,
newrev
,
ref
,
identifier
)
project
=
Project
.
find_by_path
(
reponame
)
return
false
if
project
.
nil?
# Ignore push from non-gitlab users
return
false
unless
Key
.
find_by_identifier
(
author_key_id
)
if
/^[A-Z0-9._%a-z\-]+@(?:[A-Z0-9a-z\-]+\.)+[A-Za-z]{2,4}$/
.
match
(
identifier
)
return
false
unless
user
=
User
.
find_by_email
(
identifier
)
else
return
false
unless
user
=
Key
.
find_by_identifier
(
identifier
).
try
(
:user
)
end
project
.
trigger_post_receive
(
oldrev
,
newrev
,
ref
,
author_key_id
)
project
.
trigger_post_receive
(
oldrev
,
newrev
,
ref
,
user
)
end
end
config/initializers/grack_auth.rb
View file @
15a03e1d
...
...
@@ -7,6 +7,11 @@ module Grack
user
=
User
.
find_by_email
(
email
)
return
false
unless
user
.
try
(
:valid_password?
,
password
)
# Set GL_USER env variable
ENV
[
'GL_USER'
]
=
email
# Pass Gitolite update hook
ENV
[
'GL_BYPASS_UPDATE_HOOK'
]
=
"true"
# Need this patch because the rails mount
@env
[
'PATH_INFO'
]
=
@env
[
'REQUEST_PATH'
]
...
...
config/routes.rb
View file @
15a03e1d
...
...
@@ -18,7 +18,7 @@ Gitlab::Application.routes.draw do
project_root:
GIT_HOST
[
'base_path'
],
upload_pack:
GIT_HOST
[
'upload_pack'
],
receive_pack:
GIT_HOST
[
'receive_pack'
]
}),
at:
'/:path'
,
constraints:
{
path:
/[\w-]+
.git*
/
}
}),
at:
'/:path'
,
constraints:
{
path:
/[\w-]+
\.git
/
}
#
# Help
...
...
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