diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-07-22 22:49:07 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-07-22 22:49:07 -0500 |
commit | 7df4d0e1326ec52266e6bf72b765dae0e1883cfd (patch) | |
tree | 7f20a409f35036c79c8dc1e3a523c61e9b275103 | |
parent | 54bc08a8a320ffd5b109da5cda520a3437b3a763 (diff) |
add autoreject by ap username, grabbing from actor uri if no `preferredUsername` key
-rw-r--r-- | app/helpers/autoreject_helper.rb | 37 |
1 files changed, 25 insertions, 12 deletions
diff --git a/app/helpers/autoreject_helper.rb b/app/helpers/autoreject_helper.rb index 1fed32c3d..57f58cd65 100644 --- a/app/helpers/autoreject_helper.rb +++ b/app/helpers/autoreject_helper.rb @@ -1,11 +1,5 @@ module AutorejectHelper def should_reject?(uri = nil) - if @json - oid = @json['id'] - return true if ENV.fetch('REJECT_IF_ID_STARTS_WITH', '').split.any? { |r| oid.start_with?(r) } - return true if ENV.fetch('REJECT_IF_ID_CONTAINS', '').split.any? { |r| r.in?(oid) } - end - if uri.nil? if @object uri = object_uri.start_with?('http') ? object_uri : @object['url'] @@ -20,12 +14,31 @@ module AutorejectHelper blocks = DomainBlock.suspend return true if blocks.where(domain: domain).or(blocks.where('domain LIKE ?', "%.#{domain}")).exists? - if @object - context = @object['@context'] - elsif @json - context = @json['@context'] - else - return + return unless @json || @object + + context = @object['@context'] if @object + + if @json + oid = @json['id'] + if oid + return true if ENV.fetch('REJECT_IF_ID_STARTS_WITH', '').split.any? { |r| oid.start_with?(r) } + return true if ENV.fetch('REJECT_IF_ID_CONTAINS', '').split.any? { |r| r.in?(oid) } + end + + username = @json['preferredUsername'] || @json['username'] + if username && username.is_a?(String) + username = (@json['actor'] && @json['actor'].is_a?(String)) ? @json['actor'] : '' + username = username.scan(/(?<=\/users?\/|@\/)([^\s\/]+)/).first + end + + unless username.blank? + username.downcase! + return true if ENV.fetch('REJECT_IF_USERNAME_EQUALS', '').split.any? { |r| r == username } + return true if ENV.fetch('REJECT_IF_USERNAME_STARTS_WITH', '').split.any? { |r| username.start_with?(r) } + return true if ENV.fetch('REJECT_IF_USERNAME_CONTAINS', '').split.any? { |r| r.in?(username) } + end + + context = @json['@context'] unless @object && context end return unless context |