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
65e1a06e
Commit
65e1a06e
authored
Dec 28, 2016
by
Robert Schilling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Grapify the project git hooks API
parent
cf046802
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
48 deletions
+47
-48
lib/api/project_git_hook.rb
lib/api/project_git_hook.rb
+47
-48
No files found.
lib/api/project_git_hook.rb
View file @
65e1a06e
...
@@ -7,72 +7,71 @@ module API
...
@@ -7,72 +7,71 @@ module API
before
{
authenticate!
}
before
{
authenticate!
}
before
{
authorize_admin_project
}
before
{
authorize_admin_project
}
DEPRECATION_MESSAGE
=
'This endpoint is deprecated, replaced with push_rules, and will be removed in GitLab 9.0.'
.
freeze
params
do
requires
:id
,
type:
String
,
desc:
'The ID of a project'
end
resource
:projects
do
resource
:projects
do
# Get project push rule
helpers
do
#
params
:push_rule_params
do
# Parameters:
optional
:commit_message_regex
,
type:
String
,
desc:
'The commit message regex'
# id (required) - The ID of a project
optional
:deny_delete_tag
,
type:
Boolean
,
desc:
'Deny deleting a tag'
# Example Request:
at_least_one_of
:commit_message_regex
,
:deny_delete_tag
# GET /projects/:id/push_rule
end
end
desc
'Get project push rule'
do
success
Entities
::
ProjectPushRule
detail
DEPRECATION_MESSAGE
end
get
":id/git_hook"
do
get
":id/git_hook"
do
@
push_rule
=
user_project
.
push_rule
push_rule
=
user_project
.
push_rule
present
@
push_rule
,
with:
Entities
::
ProjectPushRule
present
push_rule
,
with:
Entities
::
ProjectPushRule
end
end
# Add push rule to project
desc
'Add a push rule to a project'
do
#
success
Entities
::
ProjectPushRule
# Parameters:
detail
DEPRECATION_MESSAGE
# id (required) - The ID of a project
end
# Example Request:
params
do
# POST /projects/:id/push_rule
use
:push_rule_params
end
post
":id/git_hook"
do
post
":id/git_hook"
do
attrs
=
attributes_for_keys
[
:commit_message_regex
,
:deny_delete_tag
]
if
user_project
.
push_rule
if
user_project
.
push_rule
error!
(
"Project push rule exists"
,
422
)
error!
(
"Project push rule exists"
,
422
)
else
else
@push_rule
=
user_project
.
create_push_rule
(
attr
s
)
push_rule
=
user_project
.
create_push_rule
(
declared_param
s
)
present
@
push_rule
,
with:
Entities
::
ProjectPushRule
present
push_rule
,
with:
Entities
::
ProjectPushRule
end
end
end
end
# Update an existing project push rule
desc
'Update an existing project push rule'
do
#
success
Entities
::
ProjectPushRule
# Parameters:
detail
DEPRECATION_MESSAGE
# id (required) - The ID of a project
end
# Example Request:
params
do
# PUT /projects/:id/push_rule
use
:push_rule_params
end
put
":id/git_hook"
do
put
":id/git_hook"
do
@push_rule
=
user_project
.
push_rule
push_rule
=
user_project
.
push_rule
not_found!
(
'Push Rule'
)
unless
push_rule
attrs
=
attributes_for_keys
[
:commit_message_regex
,
:deny_delete_tag
]
if
@push_rule
&&
@push_rule
.
update_attributes
(
attrs
)
if
push_rule
.
update_attributes
(
declared_params
(
include_missing:
false
)
)
present
@
push_rule
,
with:
Entities
::
ProjectPushRule
present
push_rule
,
with:
Entities
::
ProjectPushRule
else
else
not_found!
render_validation_error!
(
push_rule
)
end
end
end
end
# Deletes project push rule. This is an idempotent function.
desc
'Deletes project push rule'
do
#
detail
DEPRECATION_MESSAGE
# Parameters:
# id (required) - The ID of a project
# Example Request:
# DELETE /projects/:id/push_rule
delete
":id/git_hook"
do
@push_rule
=
user_project
.
push_rule
if
@push_rule
@push_rule
.
destroy
else
not_found!
end
end
delete
":id/git_hook"
do
push_rule
=
user_project
.
push_rule
not_found!
(
'Push Rule'
)
unless
push_rule
push_rule
.
destroy
end
end
end
end
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