diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-09 14:48:43 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-10-09 14:48:59 +0200 |
commit | 22a8801dbc77d2d01b326a7cb89d1a28b054e073 (patch) | |
tree | 11a3a99e98df33cbb73da818419fa0227b1dc664 /app/services | |
parent | 52d7f862d365acfd4eacbe448238699d9662708d (diff) |
Adding domain blocks
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/block_domain_service.rb | 13 | ||||
-rw-r--r-- | app/services/follow_remote_account_service.rb | 1 | ||||
-rw-r--r-- | app/services/process_interaction_service.rb | 2 |
3 files changed, 16 insertions, 0 deletions
diff --git a/app/services/block_domain_service.rb b/app/services/block_domain_service.rb new file mode 100644 index 000000000..075460605 --- /dev/null +++ b/app/services/block_domain_service.rb @@ -0,0 +1,13 @@ +class BlockDomainService < BaseService + def call(domain) + block = DomainBlock.find_or_create_by!(domain: domain) + + Account.where(domain: domain).find_each do |account| + if account.subscribed? + account.subscription('').unsubscribe + end + + account.destroy! + end + end +end diff --git a/app/services/follow_remote_account_service.rb b/app/services/follow_remote_account_service.rb index 3b305504c..43a598635 100644 --- a/app/services/follow_remote_account_service.rb +++ b/app/services/follow_remote_account_service.rb @@ -8,6 +8,7 @@ class FollowRemoteAccountService < BaseService username, domain = uri.split('@') return Account.find_local(username) if TagManager.instance.local_domain?(domain) + return nil if DomainBlock.blocked?(domain) account = Account.find_remote(username, domain) diff --git a/app/services/process_interaction_service.rb b/app/services/process_interaction_service.rb index 0768579ef..75051c5df 100644 --- a/app/services/process_interaction_service.rb +++ b/app/services/process_interaction_service.rb @@ -13,6 +13,8 @@ class ProcessInteractionService < BaseService domain = Addressable::URI.parse(url).host account = Account.find_by(username: username, domain: domain) + return if DomainBlock.blocked?(domain) + if account.nil? account = follow_remote_account_service.call("#{username}@#{domain}") end |