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
eaf60bb5
Commit
eaf60bb5
authored
Aug 29, 2017
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement /internal/post_receive unified endpoint for PostReceive tasks
parent
cbaa015c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
190 additions
and
1 deletion
+190
-1
lib/api/helpers/internal_helpers.rb
lib/api/helpers/internal_helpers.rb
+4
-0
lib/api/internal.rb
lib/api/internal.rb
+16
-1
lib/gitlab/reference_counter.rb
lib/gitlab/reference_counter.rb
+44
-0
spec/lib/gitlab/reference_counter_spec.rb
spec/lib/gitlab/reference_counter_spec.rb
+37
-0
spec/requests/api/internal_spec.rb
spec/requests/api/internal_spec.rb
+89
-0
No files found.
lib/api/helpers/internal_helpers.rb
View file @
eaf60bb5
...
...
@@ -42,6 +42,10 @@ module API
::
Users
::
ActivityService
.
new
(
actor
,
'Git SSH'
).
execute
if
commands
.
include?
(
params
[
:action
])
end
def
merge_request_urls
::
MergeRequests
::
GetUrlsService
.
new
(
project
).
execute
(
params
[
:changes
])
end
private
def
set_project
...
...
lib/api/internal.rb
View file @
eaf60bb5
...
...
@@ -68,7 +68,7 @@ module API
end
get
"/merge_request_urls"
do
::
MergeRequests
::
GetUrlsService
.
new
(
project
).
execute
(
params
[
:changes
])
merge_request_urls
end
#
...
...
@@ -155,6 +155,21 @@ module API
# render_api_error!(e, 500)
# end
end
post
'/post_receive'
do
status
200
PostReceive
.
perform_async
(
params
[
:gl_repository
],
params
[
:identifier
],
params
[
:changes
])
broadcast_message
=
BroadcastMessage
.
current
&
.
last
&
.
message
reference_counter_decreased
=
Gitlab
::
ReferenceCounter
.
new
(
params
[
:gl_repository
]).
decrease
{
merge_request_urls:
merge_request_urls
,
broadcast_message:
broadcast_message
,
reference_counter_decreased:
reference_counter_decreased
}
end
end
end
end
lib/gitlab/reference_counter.rb
0 → 100644
View file @
eaf60bb5
module
Gitlab
class
ReferenceCounter
REFERENCE_EXPIRE_TIME
=
600
attr_reader
:gl_repository
,
:key
def
initialize
(
gl_repository
)
@gl_repository
=
gl_repository
@key
=
"git-receive-pack-reference-counter:
#{
gl_repository
}
"
end
def
value
Gitlab
::
Redis
::
SharedState
.
with
{
|
redis
|
(
redis
.
get
(
key
)
||
0
).
to_i
}
end
def
increase
redis_cmd
do
|
redis
|
redis
.
incr
(
key
)
redis
.
expire
(
key
,
REFERENCE_EXPIRE_TIME
)
end
end
def
decrease
redis_cmd
do
|
redis
|
current_value
=
redis
.
decr
(
key
)
if
current_value
<
0
Rails
.
logger
.
warn
(
"Reference counter for
#{
gl_repository
}
decreased"
\
" when its value was less than 1. Reseting the counter."
)
redis
.
del
(
key
)
end
end
end
private
def
redis_cmd
Gitlab
::
Redis
::
SharedState
.
with
{
|
redis
|
yield
(
redis
)
}
true
rescue
=>
e
Rails
.
logger
.
warn
(
"GitLab: An unexpected error occurred in writing to Redis:
#{
e
}
"
)
false
end
end
end
spec/lib/gitlab/reference_counter_spec.rb
0 → 100644
View file @
eaf60bb5
require
'spec_helper'
describe
Gitlab
::
ReferenceCounter
do
let
(
:redis
)
{
double
(
'redis'
)
}
let
(
:reference_counter_key
)
{
"git-receive-pack-reference-counter:project-1"
}
let
(
:reference_counter
)
{
described_class
.
new
(
'project-1'
)
}
before
do
allow
(
Gitlab
::
Redis
::
SharedState
).
to
receive
(
:with
).
and_yield
(
redis
)
end
it
'increases and set the expire time of a reference count for a path'
do
expect
(
redis
).
to
receive
(
:incr
).
with
(
reference_counter_key
)
expect
(
redis
).
to
receive
(
:expire
).
with
(
reference_counter_key
,
described_class
::
REFERENCE_EXPIRE_TIME
)
expect
(
reference_counter
.
increase
).
to
be
(
true
)
end
it
'decreases the reference count for a path'
do
allow
(
redis
).
to
receive
(
:decr
).
and_return
(
0
)
expect
(
redis
).
to
receive
(
:decr
).
with
(
reference_counter_key
)
expect
(
reference_counter
.
decrease
).
to
be
(
true
)
end
it
'warns if attempting to decrease a counter with a value of one or less, and resets the counter'
do
expect
(
redis
).
to
receive
(
:decr
).
and_return
(
-
1
)
expect
(
redis
).
to
receive
(
:del
)
expect
(
Rails
.
logger
).
to
receive
(
:warn
).
with
(
"Reference counter for project-1"
\
" decreased when its value was less than 1. Reseting the counter."
)
expect
(
reference_counter
.
decrease
).
to
be
(
true
)
end
it
'get the reference count for a path'
do
allow
(
redis
).
to
receive
(
:get
).
and_return
(
1
)
expect
(
reference_counter
.
value
).
to
be
(
1
)
end
end
spec/requests/api/internal_spec.rb
View file @
eaf60bb5
...
...
@@ -660,6 +660,95 @@ describe API::Internal do
# end
# end
describe
'POST /internal/post_receive'
do
let
(
:gl_repository
)
{
"project-
#{
project
.
id
}
"
}
let
(
:identifier
)
{
'key-123'
}
let
(
:reference_counter
)
{
double
(
'ReferenceCounter'
)
}
let
(
:valid_params
)
do
{
gl_repository:
gl_repository
,
secret_token:
secret_token
,
identifier:
identifier
,
changes:
changes
}
end
let
(
:changes
)
do
"
#{
Gitlab
::
Git
::
BLANK_SHA
}
570e7b2abdd848b95f2f578043fc23bd6f6fd24d refs/heads/new_branch"
end
before
do
project
.
team
<<
[
user
,
:developer
]
end
it
'enqueues a PostReceive worker job'
do
expect
(
PostReceive
).
to
receive
(
:perform_async
)
.
with
(
gl_repository
,
identifier
,
changes
)
post
api
(
"/internal/post_receive"
),
valid_params
end
it
'decreases the reference counter and returns the result'
do
expect
(
Gitlab
::
ReferenceCounter
).
to
receive
(
:new
).
with
(
gl_repository
)
.
and_return
(
reference_counter
)
expect
(
reference_counter
).
to
receive
(
:decrease
).
and_return
(
true
)
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
json_response
[
'reference_counter_decreased'
]).
to
be
(
true
)
end
it
'returns link to create new merge request'
do
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
json_response
[
'merge_request_urls'
]).
to
match
[{
"branch_name"
=>
"new_branch"
,
"url"
=>
"http://
#{
Gitlab
.
config
.
gitlab
.
host
}
/
#{
project
.
namespace
.
name
}
/
#{
project
.
path
}
/merge_requests/new?merge_request%5Bsource_branch%5D=new_branch"
,
"new_merge_request"
=>
true
}]
end
it
'returns empty array if printing_merge_request_link_enabled is false'
do
project
.
update!
(
printing_merge_request_link_enabled:
false
)
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
json_response
[
'merge_request_urls'
]).
to
eq
([])
end
context
'broadcast message exists'
do
let!
(
:broadcast_message
)
{
create
(
:broadcast_message
,
starts_at:
1
.
day
.
ago
,
ends_at:
1
.
day
.
from_now
)
}
it
'returns one broadcast message'
do
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
[
'broadcast_message'
]).
to
eq
(
broadcast_message
.
message
)
end
end
context
'broadcast message does not exist'
do
it
'returns empty string'
do
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
[
'broadcast_message'
]).
to
eq
(
nil
)
end
end
context
'nil broadcast message'
do
it
'returns empty string'
do
allow
(
BroadcastMessage
).
to
receive
(
:current
).
and_return
(
nil
)
post
api
(
"/internal/post_receive"
),
valid_params
expect
(
response
).
to
have_http_status
(
200
)
expect
(
json_response
[
'broadcast_message'
]).
to
eq
(
nil
)
end
end
end
def
project_with_repo_path
(
path
)
double
().
tap
do
|
fake_project
|
allow
(
fake_project
).
to
receive_message_chain
(
'repository.path_to_repo'
=>
path
)
...
...
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