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
998afa5f
Commit
998afa5f
authored
Mar 01, 2017
by
Robert Schilling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
API: Respect the 'If-Unmodified-Since' for delete endpoints
parent
7ccef75a
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
72 additions
and
1 deletion
+72
-1
lib/api/access_requests.rb
lib/api/access_requests.rb
+3
-0
lib/api/award_emoji.rb
lib/api/award_emoji.rb
+1
-0
lib/api/boards.rb
lib/api/boards.rb
+1
-0
lib/api/broadcast_messages.rb
lib/api/broadcast_messages.rb
+1
-0
lib/api/deploy_keys.rb
lib/api/deploy_keys.rb
+2
-0
lib/api/environments.rb
lib/api/environments.rb
+1
-0
lib/api/groups.rb
lib/api/groups.rb
+2
-0
lib/api/helpers.rb
lib/api/helpers.rb
+8
-0
lib/api/issues.rb
lib/api/issues.rb
+2
-0
lib/api/labels.rb
lib/api/labels.rb
+2
-0
lib/api/members.rb
lib/api/members.rb
+2
-1
lib/api/merge_requests.rb
lib/api/merge_requests.rb
+2
-0
lib/api/notes.rb
lib/api/notes.rb
+2
-0
lib/api/project_hooks.rb
lib/api/project_hooks.rb
+2
-0
lib/api/project_snippets.rb
lib/api/project_snippets.rb
+2
-0
lib/api/projects.rb
lib/api/projects.rb
+2
-0
lib/api/runners.rb
lib/api/runners.rb
+2
-0
lib/api/services.rb
lib/api/services.rb
+2
-0
lib/api/snippets.rb
lib/api/snippets.rb
+1
-0
lib/api/system_hooks.rb
lib/api/system_hooks.rb
+2
-0
lib/api/triggers.rb
lib/api/triggers.rb
+2
-0
lib/api/users.rb
lib/api/users.rb
+28
-0
No files found.
lib/api/access_requests.rb
View file @
998afa5f
...
...
@@ -67,6 +67,9 @@ module API
end
delete
":id/access_requests/:user_id"
do
source
=
find_source
(
source_type
,
params
[
:id
])
member
=
source
.
public_send
(
:requesters
).
find_by!
(
user_id:
params
[
:user_id
])
check_unmodified_since
(
member
.
updated_at
)
status
204
::
Members
::
DestroyService
.
new
(
source
,
current_user
,
params
)
...
...
lib/api/award_emoji.rb
View file @
998afa5f
...
...
@@ -85,6 +85,7 @@ module API
end
delete
"
#{
endpoint
}
/:award_id"
do
award
=
awardable
.
award_emoji
.
find
(
params
[
:award_id
])
check_unmodified_since
(
award
.
updated_at
)
unauthorized!
unless
award
.
user
==
current_user
||
current_user
.
admin?
...
...
lib/api/boards.rb
View file @
998afa5f
...
...
@@ -124,6 +124,7 @@ module API
authorize!
(
:admin_list
,
user_project
)
list
=
board_lists
.
find
(
params
[
:list_id
])
check_unmodified_since
(
list
.
updated_at
)
service
=
::
Boards
::
Lists
::
DestroyService
.
new
(
user_project
,
current_user
)
...
...
lib/api/broadcast_messages.rb
View file @
998afa5f
...
...
@@ -90,6 +90,7 @@ module API
end
delete
':id'
do
message
=
find_message
check_unmodified_since
(
message
.
updated_at
)
status
204
message
.
destroy
...
...
lib/api/deploy_keys.rb
View file @
998afa5f
...
...
@@ -125,6 +125,8 @@ module API
key
=
user_project
.
deploy_keys_projects
.
find_by
(
deploy_key_id:
params
[
:key_id
])
not_found!
(
'Deploy Key'
)
unless
key
check_unmodified_since
(
key
.
updated_at
)
status
204
key
.
destroy
end
...
...
lib/api/environments.rb
View file @
998afa5f
...
...
@@ -78,6 +78,7 @@ module API
authorize!
:update_environment
,
user_project
environment
=
user_project
.
environments
.
find
(
params
[
:environment_id
])
check_unmodified_since
(
environment
.
updated_at
)
status
204
environment
.
destroy
...
...
lib/api/groups.rb
View file @
998afa5f
...
...
@@ -117,6 +117,8 @@ module API
delete
":id"
do
group
=
find_group!
(
params
[
:id
])
authorize!
:admin_group
,
group
check_unmodified_since
(
group
.
updated_at
)
status
204
::
Groups
::
DestroyService
.
new
(
group
,
current_user
).
execute
...
...
lib/api/helpers.rb
View file @
998afa5f
...
...
@@ -11,6 +11,14 @@ module API
declared
(
params
,
options
).
to_h
.
symbolize_keys
end
def
check_unmodified_since
(
last_modified
)
if_unmodified_since
=
Time
.
parse
(
headers
[
'If-Unmodified-Since'
])
if
headers
.
key?
(
'If-Unmodified-Since'
)
rescue
nil
if
if_unmodified_since
&&
if_unmodified_since
<
last_modified
render_api_error!
(
'412 Precondition Failed'
,
412
)
end
end
def
current_user
return
@current_user
if
defined?
(
@current_user
)
...
...
lib/api/issues.rb
View file @
998afa5f
...
...
@@ -230,6 +230,8 @@ module API
not_found!
(
'Issue'
)
unless
issue
authorize!
(
:destroy_issue
,
issue
)
check_unmodified_since
(
issue
.
updated_at
)
status
204
issue
.
destroy
end
...
...
lib/api/labels.rb
View file @
998afa5f
...
...
@@ -56,6 +56,8 @@ module API
label
=
user_project
.
labels
.
find_by
(
title:
params
[
:name
])
not_found!
(
'Label'
)
unless
label
check_unmodified_since
(
label
.
updated_at
)
status
204
label
.
destroy
end
...
...
lib/api/members.rb
View file @
998afa5f
...
...
@@ -94,7 +94,8 @@ module API
delete
":id/members/:user_id"
do
source
=
find_source
(
source_type
,
params
[
:id
])
# Ensure that memeber exists
source
.
members
.
find_by!
(
user_id:
params
[
:user_id
])
member
=
source
.
members
.
find_by!
(
user_id:
params
[
:user_id
])
check_unmodified_since
(
member
.
updated_at
)
status
204
::
Members
::
DestroyService
.
new
(
source
,
current_user
,
declared_params
).
execute
...
...
lib/api/merge_requests.rb
View file @
998afa5f
...
...
@@ -164,6 +164,8 @@ module API
merge_request
=
find_project_merge_request
(
params
[
:merge_request_iid
])
authorize!
(
:destroy_merge_request
,
merge_request
)
check_unmodified_since
(
merge_request
.
updated_at
)
status
204
merge_request
.
destroy
end
...
...
lib/api/notes.rb
View file @
998afa5f
...
...
@@ -129,7 +129,9 @@ module API
end
delete
":id/
#{
noteables_str
}
/:noteable_id/notes/:note_id"
do
note
=
user_project
.
notes
.
find
(
params
[
:note_id
])
authorize!
:admin_note
,
note
check_unmodified_since
(
note
.
updated_at
)
status
204
::
Notes
::
DestroyService
.
new
(
user_project
,
current_user
).
execute
(
note
)
...
...
lib/api/project_hooks.rb
View file @
998afa5f
...
...
@@ -96,6 +96,8 @@ module API
delete
":id/hooks/:hook_id"
do
hook
=
user_project
.
hooks
.
find
(
params
.
delete
(
:hook_id
))
check_unmodified_since
(
hook
.
updated_at
)
status
204
hook
.
destroy
end
...
...
lib/api/project_snippets.rb
View file @
998afa5f
...
...
@@ -116,6 +116,8 @@ module API
not_found!
(
'Snippet'
)
unless
snippet
authorize!
:admin_project_snippet
,
snippet
check_unmodified_since
(
snippet
.
updated_at
)
status
204
snippet
.
destroy
end
...
...
lib/api/projects.rb
View file @
998afa5f
...
...
@@ -334,6 +334,8 @@ module API
desc
'Remove a project'
delete
":id"
do
authorize!
:remove_project
,
user_project
check_unmodified_since
(
user_project
.
updated_at
)
::
Projects
::
DestroyService
.
new
(
user_project
,
current_user
,
{}).
async_execute
accepted!
...
...
lib/api/runners.rb
View file @
998afa5f
...
...
@@ -77,7 +77,9 @@ module API
end
delete
':id'
do
runner
=
get_runner
(
params
[
:id
])
authenticate_delete_runner!
(
runner
)
check_unmodified_since
(
runner
.
updated_at
)
status
204
runner
.
destroy!
...
...
lib/api/services.rb
View file @
998afa5f
...
...
@@ -655,6 +655,8 @@ module API
end
delete
":id/services/:service_slug"
do
service
=
user_project
.
find_or_initialize_service
(
params
[
:service_slug
].
underscore
)
# Todo, not sure
check_unmodified_since
(
service
.
updated_at
)
attrs
=
service_attributes
(
service
).
inject
({})
do
|
hash
,
key
|
hash
.
merge!
(
key
=>
nil
)
...
...
lib/api/snippets.rb
View file @
998afa5f
...
...
@@ -122,6 +122,7 @@ module API
return
not_found!
(
'Snippet'
)
unless
snippet
authorize!
:destroy_personal_snippet
,
snippet
check_unmodified_since
(
snippet
.
updated_at
)
status
204
snippet
.
destroy
...
...
lib/api/system_hooks.rb
View file @
998afa5f
...
...
@@ -66,6 +66,8 @@ module API
hook
=
SystemHook
.
find_by
(
id:
params
[
:id
])
not_found!
(
'System hook'
)
unless
hook
check_unmodified_since
(
hook
.
updated_at
)
status
204
hook
.
destroy
end
...
...
lib/api/triggers.rb
View file @
998afa5f
...
...
@@ -140,6 +140,8 @@ module API
trigger
=
user_project
.
triggers
.
find
(
params
.
delete
(
:trigger_id
))
return
not_found!
(
'Trigger'
)
unless
trigger
check_unmodified_since
(
trigger
.
updated_at
)
status
204
trigger
.
destroy
end
...
...
lib/api/users.rb
View file @
998afa5f
...
...
@@ -230,7 +230,12 @@ module API
key
=
user
.
keys
.
find_by
(
id:
params
[
:key_id
])
not_found!
(
'Key'
)
unless
key
<<<<<<<
HEAD
status
204
=======
check_unmodified_since
(
key
.
updated_at
)
>>>>>>>
API
:
Respect
the
'If-Unmodified-Since'
for
delete
endpoints
key
.
destroy
end
...
...
@@ -287,7 +292,14 @@ module API
email
=
user
.
emails
.
find_by
(
id:
params
[
:email_id
])
not_found!
(
'Email'
)
unless
email
<<<<<<<
HEAD
Emails
::
DestroyService
.
new
(
user
,
email:
email
.
email
).
execute
=======
check_unmodified_since
(
email
.
updated_at
)
email
.
destroy
user
.
update_secondary_emails!
>>>>>>>
API
:
Respect
the
'If-Unmodified-Since'
for
delete
endpoints
end
desc
'Delete a user. Available only for admins.'
do
...
...
@@ -299,11 +311,18 @@ module API
end
delete
":id"
do
authenticated_as_admin!
user
=
User
.
find_by
(
id:
params
[
:id
])
not_found!
(
'User'
)
unless
user
<<<<<<<
HEAD
status
204
user
.
delete_async
(
deleted_by:
current_user
,
params:
params
)
=======
check_unmodified_since
(
user
.
updated_at
)
::
Users
::
DestroyService
.
new
(
current_user
).
execute
(
user
)
>>>>>>>
API
:
Respect
the
'If-Unmodified-Since'
for
delete
endpoints
end
desc
'Block a user. Available only for admins.'
...
...
@@ -481,6 +500,8 @@ module API
key
=
current_user
.
keys
.
find_by
(
id:
params
[
:key_id
])
not_found!
(
'Key'
)
unless
key
check_unmodified_since
(
key
.
updated_at
)
status
204
key
.
destroy
end
...
...
@@ -533,6 +554,7 @@ module API
email
=
current_user
.
emails
.
find_by
(
id:
params
[
:email_id
])
not_found!
(
'Email'
)
unless
email
<<<<<<<
HEAD
status
204
Emails
::
DestroyService
.
new
(
current_user
,
email:
email
.
email
).
execute
end
...
...
@@ -550,6 +572,12 @@ module API
.
reorder
(
last_activity_on: :asc
)
present
paginate
(
activities
),
with:
Entities
::
UserActivity
=======
check_unmodified_since
(
email
.
updated_at
)
email
.
destroy
current_user
.
update_secondary_emails!
>>>>>>>
API
:
Respect
the
'If-Unmodified-Since'
for
delete
endpoints
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