Autofix Rails/EagerEvaluationLogMessage (#23429)
* Autofix Rails/EagerEvaluationLogMessage * Update spec for debug block syntaxgh/stable
parent
6a71bb23c2
commit
ed570050c6
|
@ -285,7 +285,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
||||||
|
|
||||||
media_attachments
|
media_attachments
|
||||||
rescue Addressable::URI::InvalidURIError => e
|
rescue Addressable::URI::InvalidURIError => e
|
||||||
Rails.logger.debug "Invalid URL in attachment: #{e}"
|
Rails.logger.debug { "Invalid URL in attachment: #{e}" }
|
||||||
media_attachments
|
media_attachments
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -248,7 +248,7 @@ class LinkDetailsExtractor
|
||||||
|
|
||||||
structured_data
|
structured_data
|
||||||
rescue Oj::ParseError, EncodingError
|
rescue Oj::ParseError, EncodingError
|
||||||
Rails.logger.debug("Invalid JSON-LD in #{@original_url}")
|
Rails.logger.debug { "Invalid JSON-LD in #{@original_url}" }
|
||||||
next
|
next
|
||||||
end.first
|
end.first
|
||||||
end
|
end
|
||||||
|
|
|
@ -27,11 +27,11 @@ module Remotable
|
||||||
public_send("#{attachment_name}=", ResponseWithLimit.new(response, limit))
|
public_send("#{attachment_name}=", ResponseWithLimit.new(response, limit))
|
||||||
end
|
end
|
||||||
rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError => e
|
rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError => e
|
||||||
Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
|
Rails.logger.debug { "Error fetching remote #{attachment_name}: #{e}" }
|
||||||
public_send("#{attachment_name}=", nil) if public_send("#{attachment_name}_file_name").present?
|
public_send("#{attachment_name}=", nil) if public_send("#{attachment_name}_file_name").present?
|
||||||
raise e unless suppress_errors
|
raise e unless suppress_errors
|
||||||
rescue Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, Paperclip::Error, Mastodon::DimensionsValidationError, Mastodon::StreamValidationError => e
|
rescue Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, Paperclip::Error, Mastodon::DimensionsValidationError, Mastodon::StreamValidationError => e
|
||||||
Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}"
|
Rails.logger.debug { "Error fetching remote #{attachment_name}: #{e}" }
|
||||||
public_send("#{attachment_name}=", nil) if public_send("#{attachment_name}_file_name").present?
|
public_send("#{attachment_name}=", nil) if public_send("#{attachment_name}_file_name").present?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,7 @@ class ActivityPub::FetchFeaturedCollectionService < BaseService
|
||||||
|
|
||||||
status.id
|
status.id
|
||||||
rescue ActiveRecord::RecordInvalid => e
|
rescue ActiveRecord::RecordInvalid => e
|
||||||
Rails.logger.debug "Invalid pinned status #{uri}: #{e.message}"
|
Rails.logger.debug { "Invalid pinned status #{uri}: #{e.message}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ class ActivityPub::FetchRemoteAccountService < ActivityPub::FetchRemoteActorServ
|
||||||
actor = super
|
actor = super
|
||||||
return actor if actor.nil? || actor.is_a?(Account)
|
return actor if actor.nil? || actor.is_a?(Account)
|
||||||
|
|
||||||
Rails.logger.debug "Fetching account #{uri} failed: Expected Account, got #{actor.class.name}"
|
Rails.logger.debug { "Fetching account #{uri} failed: Expected Account, got #{actor.class.name}" }
|
||||||
raise Error, "Expected Account, got #{actor.class.name}" unless suppress_errors
|
raise Error, "Expected Account, got #{actor.class.name}" unless suppress_errors
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -38,7 +38,7 @@ class ActivityPub::FetchRemoteActorService < BaseService
|
||||||
|
|
||||||
ActivityPub::ProcessAccountService.new.call(@username, @domain, @json, only_key: only_key, verified_webfinger: !only_key, request_id: request_id)
|
ActivityPub::ProcessAccountService.new.call(@username, @domain, @json, only_key: only_key, verified_webfinger: !only_key, request_id: request_id)
|
||||||
rescue Error => e
|
rescue Error => e
|
||||||
Rails.logger.debug "Fetching actor #{uri} failed: #{e.message}"
|
Rails.logger.debug { "Fetching actor #{uri} failed: #{e.message}" }
|
||||||
raise unless suppress_errors
|
raise unless suppress_errors
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ class ActivityPub::FetchRemoteKeyService < BaseService
|
||||||
|
|
||||||
find_actor(owner_uri, @owner, suppress_errors)
|
find_actor(owner_uri, @owner, suppress_errors)
|
||||||
rescue Error => e
|
rescue Error => e
|
||||||
Rails.logger.debug "Fetching key #{uri} failed: #{e.message}"
|
Rails.logger.debug { "Fetching key #{uri} failed: #{e.message}" }
|
||||||
raise unless suppress_errors
|
raise unless suppress_errors
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ class ActivityPub::ProcessCollectionService < BaseService
|
||||||
begin
|
begin
|
||||||
@json = compact(@json) if @json['signature'].is_a?(Hash)
|
@json = compact(@json) if @json['signature'].is_a?(Hash)
|
||||||
rescue JSON::LD::JsonLdError => e
|
rescue JSON::LD::JsonLdError => e
|
||||||
Rails.logger.debug "Error when compacting JSON-LD document for #{value_or_id(@json['actor'])}: #{e.message}"
|
Rails.logger.debug { "Error when compacting JSON-LD document for #{value_or_id(@json['actor'])}: #{e.message}" }
|
||||||
@json = original_json.without('signature')
|
@json = original_json.without('signature')
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ class ActivityPub::ProcessCollectionService < BaseService
|
||||||
@account = nil unless @account.is_a?(Account)
|
@account = nil unless @account.is_a?(Account)
|
||||||
@account
|
@account
|
||||||
rescue JSON::LD::JsonLdError, RDF::WriterError => e
|
rescue JSON::LD::JsonLdError, RDF::WriterError => e
|
||||||
Rails.logger.debug "Could not verify LD-Signature for #{value_or_id(@json['actor'])}: #{e.message}"
|
Rails.logger.debug { "Could not verify LD-Signature for #{value_or_id(@json['actor'])}: #{e.message}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -94,7 +94,7 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
||||||
|
|
||||||
@next_media_attachments << media_attachment
|
@next_media_attachments << media_attachment
|
||||||
rescue Addressable::URI::InvalidURIError => e
|
rescue Addressable::URI::InvalidURIError => e
|
||||||
Rails.logger.debug "Invalid URL in attachment: #{e}"
|
Rails.logger.debug { "Invalid URL in attachment: #{e}" }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ class FetchLinkCardService < BaseService
|
||||||
|
|
||||||
attach_card if @card&.persisted?
|
attach_card if @card&.persisted?
|
||||||
rescue HTTP::Error, OpenSSL::SSL::SSLError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError => e
|
rescue HTTP::Error, OpenSSL::SSL::SSLError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError => e
|
||||||
Rails.logger.debug "Error fetching link #{@original_url}: #{e}"
|
Rails.logger.debug { "Error fetching link #{@original_url}: #{e}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ class FetchResourceService < BaseService
|
||||||
|
|
||||||
process(url)
|
process(url)
|
||||||
rescue HTTP::Error, OpenSSL::SSL::SSLError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError => e
|
rescue HTTP::Error, OpenSSL::SSL::SSLError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError => e
|
||||||
Rails.logger.debug "Error fetching resource #{@url}: #{e}"
|
Rails.logger.debug { "Error fetching resource #{@url}: #{e}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -58,7 +58,7 @@ class Keys::ClaimService < BaseService
|
||||||
|
|
||||||
@result = Result.new(@target_account, @device_id, key_id: json['id'], key: json['publicKeyBase64'], signature: json.dig('signature', 'signatureValue'))
|
@result = Result.new(@target_account, @device_id, key_id: json['id'], key: json['publicKeyBase64'], signature: json.dig('signature', 'signatureValue'))
|
||||||
rescue HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error => e
|
rescue HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error => e
|
||||||
Rails.logger.debug "Claiming one-time key for #{@target_account.acct}:#{@device_id} failed: #{e}"
|
Rails.logger.debug { "Claiming one-time key for #{@target_account.acct}:#{@device_id} failed: #{e}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -73,7 +73,7 @@ class Keys::QueryService < BaseService
|
||||||
Device.new(device_id: device['id'], name: device['name'], identity_key: device.dig('identityKey', 'publicKeyBase64'), fingerprint_key: device.dig('fingerprintKey', 'publicKeyBase64'), claim_url: device['claim'])
|
Device.new(device_id: device['id'], name: device['name'], identity_key: device.dig('identityKey', 'publicKeyBase64'), fingerprint_key: device.dig('fingerprintKey', 'publicKeyBase64'), claim_url: device['claim'])
|
||||||
end
|
end
|
||||||
rescue HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error => e
|
rescue HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::Error => e
|
||||||
Rails.logger.debug "Querying devices for #{@account.acct} failed: #{e}"
|
Rails.logger.debug { "Querying devices for #{@account.acct} failed: #{e}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -54,7 +54,7 @@ class ResolveAccountService < BaseService
|
||||||
|
|
||||||
fetch_account!
|
fetch_account!
|
||||||
rescue Webfinger::Error => e
|
rescue Webfinger::Error => e
|
||||||
Rails.logger.debug "Webfinger query for #{@uri} failed: #{e}"
|
Rails.logger.debug { "Webfinger query for #{@uri} failed: #{e}" }
|
||||||
raise unless @options[:suppress_errors]
|
raise unless @options[:suppress_errors]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ class VerifyLinkService < BaseService
|
||||||
|
|
||||||
field.mark_verified!
|
field.mark_verified!
|
||||||
rescue OpenSSL::SSL::SSLError, HTTP::Error, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, IPAddr::AddressFamilyError => e
|
rescue OpenSSL::SSL::SSLError, HTTP::Error, Addressable::URI::InvalidURIError, Mastodon::HostValidationError, Mastodon::LengthValidationError, IPAddr::AddressFamilyError => e
|
||||||
Rails.logger.debug "Error fetching link #{@url}: #{e}"
|
Rails.logger.debug { "Error fetching link #{@url}: #{e}" }
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,6 @@ class ActivityPub::ProcessingWorker
|
||||||
|
|
||||||
ActivityPub::ProcessCollectionService.new.call(body, actor, override_timestamps: true, delivered_to_account_id: delivered_to_account_id, delivery: true)
|
ActivityPub::ProcessCollectionService.new.call(body, actor, override_timestamps: true, delivered_to_account_id: delivered_to_account_id, delivery: true)
|
||||||
rescue ActiveRecord::RecordInvalid => e
|
rescue ActiveRecord::RecordInvalid => e
|
||||||
Rails.logger.debug "Error processing incoming ActivityPub object: #{e}"
|
Rails.logger.debug { "Error processing incoming ActivityPub object: #{e}" }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -194,7 +194,9 @@ RSpec.describe Remotable do
|
||||||
let(:error_class) { error_class }
|
let(:error_class) { error_class }
|
||||||
|
|
||||||
it 'calls Rails.logger.debug' do
|
it 'calls Rails.logger.debug' do
|
||||||
expect(Rails.logger).to receive(:debug).with(/^Error fetching remote #{hoge}: /)
|
expect(Rails.logger).to receive(:debug) do |&block|
|
||||||
|
expect(block.call).to match(/^Error fetching remote #{hoge}: /)
|
||||||
|
end
|
||||||
foo.hoge_remote_url = url
|
foo.hoge_remote_url = url
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Reference in New Issue