summaryrefslogtreecommitdiffstats
path: root/app/helpers/jsonld_helper.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2019-03-05 15:21:14 +0100
committerEugen Rochko <eugen@zeonfederated.com>2019-03-05 15:21:14 +0100
commitdf5924a1db08f362fcc8cf873ffaed72a2ce9f19 (patch)
treed6da741af5fc867fe1a7eb656962eb039beff0b7 /app/helpers/jsonld_helper.rb
parentd785497ba5ed44e794dd67660b8779380f81ef42 (diff)
Do not error out on unsalvageable errors in FetchRepliesService (#10175)
* Do not error out on unsalvageable errors in FetchRepliesService Fixes #10152 * Fix FetchRepliesWorker erroring out on deleted statuses
Diffstat (limited to 'app/helpers/jsonld_helper.rb')
-rw-r--r--app/helpers/jsonld_helper.rb16
1 files changed, 15 insertions, 1 deletions
diff --git a/app/helpers/jsonld_helper.rb b/app/helpers/jsonld_helper.rb
index 59e4ae68513..f0a19e332c3 100644
--- a/app/helpers/jsonld_helper.rb
+++ b/app/helpers/jsonld_helper.rb
@@ -63,13 +63,19 @@ module JsonLdHelper
json.present? && json['id'] == uri ? json : nil
end
- def fetch_resource_without_id_validation(uri, on_behalf_of = nil)
+ def fetch_resource_without_id_validation(uri, on_behalf_of = nil, raise_on_temporary_error = false)
build_request(uri, on_behalf_of).perform do |response|
+ unless response_successful?(response) || response_error_unsalvageable?(response) || !raise_on_temporary_error
+ raise Mastodon::UnexpectedResponseError, response
+ end
return body_to_json(response.body_with_limit) if response.code == 200
end
# If request failed, retry without doing it on behalf of a user
return if on_behalf_of.nil?
build_request(uri).perform do |response|
+ unless response_successful?(response) || response_error_unsalvageable?(response) || !raise_on_temporary_error
+ raise Mastodon::UnexpectedResponseError, response
+ end
response.code == 200 ? body_to_json(response.body_with_limit) : nil
end
end
@@ -92,6 +98,14 @@ module JsonLdHelper
private
+ def response_successful?(response)
+ (200...300).cover?(response.code)
+ end
+
+ def response_error_unsalvageable?(response)
+ (400...500).cover?(response.code) && response.code != 429
+ end
+
def build_request(uri, on_behalf_of = nil)
request = Request.new(:get, uri)
request.on_behalf_of(on_behalf_of) if on_behalf_of