diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-07-11 14:49:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-11 14:49:55 +0200 |
commit | 4e8dcc5dbbf625b7268ed10d36122de985da6bdc (patch) | |
tree | e3b89b3232dda984298fbbae826a19522c60f6bd /app/helpers | |
parent | a6dc6a242fdabef2d0fdd9eb7b72ce11cbc22e3e (diff) |
Add HTTP signatures to all outgoing ActivityPub GET requests (#11284)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/jsonld_helper.rb | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/app/helpers/jsonld_helper.rb b/app/helpers/jsonld_helper.rb index 34a657e06..83a5b2462 100644 --- a/app/helpers/jsonld_helper.rb +++ b/app/helpers/jsonld_helper.rb @@ -77,19 +77,12 @@ module JsonLdHelper end 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| - raise Mastodon::UnexpectedResponseError, response unless response_successful?(response) || response_error_unsalvageable?(response) || !raise_on_temporary_error - - 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? + on_behalf_of ||= Account.representative - build_request(uri).perform do |response| + build_request(uri, on_behalf_of).perform do |response| raise Mastodon::UnexpectedResponseError, response unless response_successful?(response) || response_error_unsalvageable?(response) || !raise_on_temporary_error - response.code == 200 ? body_to_json(response.body_with_limit) : nil + body_to_json(response.body_with_limit) if response.code == 200 end end |