Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
nexedi
gitlab-shell
Commits
58df68e3
Commit
58df68e3
authored
Aug 30, 2017
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support new /internal/post-receive API endpoint
parent
e358cf25
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
356 additions
and
160 deletions
+356
-160
CHANGELOG
CHANGELOG
+3
-0
lib/gitlab_net.rb
lib/gitlab_net.rb
+14
-0
lib/gitlab_post_receive.rb
lib/gitlab_post_receive.rb
+39
-20
spec/gitlab_net_spec.rb
spec/gitlab_net_spec.rb
+40
-0
spec/gitlab_post_receive_spec.rb
spec/gitlab_post_receive_spec.rb
+172
-140
spec/vcr_cassettes/post-receive-not-found.yml
spec/vcr_cassettes/post-receive-not-found.yml
+42
-0
spec/vcr_cassettes/post-receive.yml
spec/vcr_cassettes/post-receive.yml
+46
-0
No files found.
CHANGELOG
View file @
58df68e3
v5.9.0
- Support new /internal/post-receive API endpoint for post-receive operations
v5.8.1
- Support old versions of ruby without monotonic clock
...
...
lib/gitlab_net.rb
View file @
58df68e3
...
...
@@ -11,6 +11,7 @@ require_relative 'httpunix'
class
GitlabNet
class
ApiUnreachableError
<
StandardError
;
end
class
NotFound
<
StandardError
;
end
CHECK_TIMEOUT
=
5
READ_TIMEOUT
=
300
...
...
@@ -112,6 +113,19 @@ class GitlabNet
false
end
def
post_receive
(
gl_repository
,
identifier
,
changes
)
params
=
{
gl_repository:
gl_repository
,
identifier:
identifier
,
changes:
changes
}
resp
=
post
(
"
#{
host
}
/post_receive"
,
params
)
raise
NotFound
if
resp
.
code
==
'404'
JSON
.
parse
(
resp
.
body
)
if
resp
.
code
==
'200'
end
def
redis_client
redis_config
=
config
.
redis
database
=
redis_config
[
'database'
]
||
0
...
...
lib/gitlab_post_receive.rb
View file @
58df68e3
...
...
@@ -20,29 +20,20 @@ class GitlabPostReceive
end
def
exec
result
=
update_redis
response
=
GitlabMetrics
.
measure
(
"post-receive"
)
do
api
.
post_receive
(
gl_repository
,
@actor
,
changes
)
end
begin
broadcast_message
=
GitlabMetrics
.
measure
(
"broadcast-message"
)
do
api
.
broadcast_message
end
return
false
unless
response
if
broadcast_message
.
has_key?
(
"message"
)
puts
print_broadcast_message
(
broadcast_message
[
"message"
])
end
print_broadcast_message
(
response
[
'broadcast_message'
])
if
response
[
'broadcast_message'
]
print_merge_request_links
(
response
[
'merge_request_urls'
])
if
response
[
'merge_request_urls'
]
merge_request_urls
=
GitlabMetrics
.
measure
(
"merge-request-urls"
)
do
api
.
merge_request_urls
(
@gl_repository
,
@repo_path
,
@changes
)
end
print_merge_request_links
(
merge_request_urls
)
api
.
notify_post_receive
(
gl_repository
,
repo_path
)
rescue
GitlabNet
::
ApiUnreachableError
nil
end
result
&&
GitlabReferenceCounter
.
new
(
repo_path
).
decrease
response
[
'reference_counter_decreased'
]
rescue
GitlabNet
::
ApiUnreachableError
false
rescue
GitlabNet
::
NotFound
fallback_post_receive
end
protected
...
...
@@ -89,6 +80,7 @@ class GitlabPostReceive
# message.scan returns a nested array of capture groups, so flatten.
lines
=
message
.
scan
(
/(.{,
#{
text_width
}
})(?:\s|$)/
)[
0
...-
1
].
flatten
puts
puts
"="
*
total_width
puts
...
...
@@ -127,4 +119,31 @@ class GitlabPostReceive
false
end
end
private
def
fallback_post_receive
result
=
update_redis
begin
broadcast_message
=
GitlabMetrics
.
measure
(
"broadcast-message"
)
do
api
.
broadcast_message
end
if
broadcast_message
.
has_key?
(
"message"
)
print_broadcast_message
(
broadcast_message
[
"message"
])
end
merge_request_urls
=
GitlabMetrics
.
measure
(
"merge-request-urls"
)
do
api
.
merge_request_urls
(
@gl_repository
,
@repo_path
,
@changes
)
end
print_merge_request_links
(
merge_request_urls
)
api
.
notify_post_receive
(
gl_repository
,
repo_path
)
rescue
GitlabNet
::
ApiUnreachableError
nil
end
result
&&
GitlabReferenceCounter
.
new
(
repo_path
).
decrease
end
end
spec/gitlab_net_spec.rb
View file @
58df68e3
...
...
@@ -126,6 +126,46 @@ describe GitlabNet, vcr: true do
end
end
describe
:post_receive
do
let
(
:gl_repository
)
{
"project-1"
}
let
(
:changes
)
{
"123456 789012 refs/heads/test
\n
654321 210987 refs/tags/tag"
}
let
(
:params
)
do
{
gl_repository:
gl_repository
,
identifier:
key
,
changes:
changes
}
end
let
(
:merge_request_urls
)
do
[{
"branch_name"
=>
"test"
,
"url"
=>
"http://localhost:3000/gitlab-org/gitlab-test/merge_requests/7"
,
"new_merge_request"
=>
false
}]
end
subject
{
gitlab_net
.
post_receive
(
gl_repository
,
key
,
changes
)
}
it
'sends the correct parameters'
do
Net
::
HTTP
::
Post
.
any_instance
.
should_receive
(
:set_form_data
).
with
(
hash_including
(
params
))
VCR
.
use_cassette
(
"post-receive"
)
do
subject
end
end
it
'calls /internal/post-receive'
do
VCR
.
use_cassette
(
"post-receive"
)
do
expect
(
subject
[
'merge_request_urls'
]).
to
eq
(
merge_request_urls
)
expect
(
subject
[
'broadcast_message'
]).
to
eq
(
'Message'
)
expect
(
subject
[
'reference_counter_decreased'
]).
to
eq
(
true
)
end
end
it
'throws a NotFound error when post-receive is not available'
do
VCR
.
use_cassette
(
"post-receive-not-found"
)
do
expect
{
subject
}.
to
raise_error
(
GitlabNet
::
NotFound
)
end
end
end
describe
:authorized_key
do
let
(
:ssh_key
)
{
"rsa-key"
}
...
...
spec/gitlab_post_receive_spec.rb
View file @
58df68e3
This diff is collapsed.
Click to expand it.
spec/vcr_cassettes/post-receive-not-found.yml
0 → 100644
View file @
58df68e3
---
http_interactions
:
-
request
:
method
:
post
uri
:
http://localhost:3000/api/v4/internal/post_receive
body
:
encoding
:
US-ASCII
string
:
gl_repository=project-1&identifier=key-1&changes=123456+789012+refs%2Fheads%2Ftest%0A654321+210987+refs%2Ftags%2Ftag&secret_token=0a3938d9d95d807e94d937af3a4fbbea%0A
headers
:
Accept-Encoding
:
-
gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept
:
-
"
*/*"
User-Agent
:
-
Ruby
Content-Type
:
-
application/x-www-form-urlencoded
response
:
status
:
code
:
404
message
:
Not Found
headers
:
Cache-Control
:
-
no-cache
Content-Length
:
-
'
25'
Content-Type
:
-
application/json
Date
:
-
Wed, 30 Aug 2017 22:24:37 GMT
Vary
:
-
Origin
X-Request-Id
:
-
bbfdb1ed-99dc-4246-a606-3074ffd5d87b
X-Runtime
:
-
'
0.459681'
body
:
encoding
:
UTF-8
string
:
'
{"error":"404
Not
Found"}'
http_version
:
recorded_at
:
Wed, 30 Aug 2017 22:24:37 GMT
recorded_with
:
VCR 2.4.0
spec/vcr_cassettes/post-receive.yml
0 → 100644
View file @
58df68e3
---
http_interactions
:
-
request
:
method
:
post
uri
:
http://localhost:3000/api/v4/internal/post_receive
body
:
encoding
:
US-ASCII
string
:
gl_repository=project-1&identifier=key-1&changes=123456+789012+refs%2Fheads%2Ftest%0A654321+210987+refs%2Ftags%2Ftag&secret_token=0a3938d9d95d807e94d937af3a4fbbea%0A
headers
:
Accept-Encoding
:
-
gzip;q=1.0,deflate;q=0.6,identity;q=0.3
Accept
:
-
"
*/*"
User-Agent
:
-
Ruby
Content-Type
:
-
application/x-www-form-urlencoded
response
:
status
:
code
:
200
message
:
OK
headers
:
Cache-Control
:
-
max-age=0, private, must-revalidate
Content-Length
:
-
'
208'
Content-Type
:
-
application/json
Date
:
-
Wed, 30 Aug 2017 22:08:28 GMT
Etag
:
-
W/"1757d1411091b751684cde10119e0942"
Vary
:
-
Origin
X-Frame-Options
:
-
SAMEORIGIN
X-Request-Id
:
-
f7d422a7-c1a3-49d1-9b81-7fc48c954767
X-Runtime
:
-
'
0.687283'
body
:
encoding
:
UTF-8
string
:
'
{"merge_request_urls":[{"branch_name":"test","url":"http://localhost:3000/gitlab-org/gitlab-test/merge_requests/7","new_merge_request":false}],"broadcast_message":"Message","reference_counter_decreased":true}'
http_version
:
recorded_at
:
Wed, 30 Aug 2017 22:08:28 GMT
recorded_with
:
VCR 2.4.0
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