summaryrefslogtreecommitdiff
path: root/lib/api/helpers.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-08-31 09:13:41 +0200
committerDouwe Maan <douwe@selenight.nl>2017-08-31 09:13:41 +0200
commit7c215dd23dfa942d6b83252403ce326df96ab3ea (patch)
tree52c2d7bfa1a11beac6bb135c6eb425dd22d2e320 /lib/api/helpers.rb
parenta540f55c6e8ff64f7284ec4194f4c16ca711c685 (diff)
parentd6e956d3a89fbb7f1a503f152fe9a4e2ca931d85 (diff)
downloadgitlab-ce-7c215dd23dfa942d6b83252403ce326df96ab3ea.tar.gz
Merge branch 'master' into issue-discussions-refactor
Diffstat (limited to 'lib/api/helpers.rb')
-rw-r--r--lib/api/helpers.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/api/helpers.rb b/lib/api/helpers.rb
index b56fd2388b3..3d377fdb9eb 100644
--- a/lib/api/helpers.rb
+++ b/lib/api/helpers.rb
@@ -11,6 +11,27 @@ 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']) rescue nil
+
+ if if_unmodified_since && last_modified && last_modified > if_unmodified_since
+ render_api_error!('412 Precondition Failed', 412)
+ end
+ end
+
+ def destroy_conditionally!(resource, last_updated: nil)
+ last_updated ||= resource.updated_at
+
+ check_unmodified_since!(last_updated)
+
+ status 204
+ if block_given?
+ yield resource
+ else
+ resource.destroy
+ end
+ end
+
def current_user
return @current_user if defined?(@current_user)