parent
f9a3373faa
commit
9bf5a73968
@ -0,0 +1,7 @@
|
|||||||
|
class DomainBlock < ApplicationRecord
|
||||||
|
validates :domain, presence: true, uniqueness: true
|
||||||
|
|
||||||
|
def self.blocked?(domain)
|
||||||
|
where(domain: domain).exists?
|
||||||
|
end
|
||||||
|
end
|
@ -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
|
@ -0,0 +1,10 @@
|
|||||||
|
class CreateDomainBlocks < ActiveRecord::Migration[5.0]
|
||||||
|
def change
|
||||||
|
create_table :domain_blocks do |t|
|
||||||
|
t.string :domain, null: false, default: ''
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index :domain_blocks, :domain, unique: true
|
||||||
|
end
|
||||||
|
end
|
@ -0,0 +1,3 @@
|
|||||||
|
Fabricator(:domain_block) do
|
||||||
|
domain "MyString"
|
||||||
|
end
|
@ -1,6 +1,2 @@
|
|||||||
Fabricator(:media_attachment) do
|
Fabricator(:media_attachment) do
|
||||||
status_id 1
|
|
||||||
file ""
|
|
||||||
remote_url "MyString"
|
|
||||||
account_id 1
|
|
||||||
end
|
end
|
||||||
|
@ -0,0 +1,5 @@
|
|||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe DomainBlock, type: :model do
|
||||||
|
pending "add some examples to (or delete) #{__FILE__}"
|
||||||
|
end
|
@ -0,0 +1,33 @@
|
|||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe BlockDomainService do
|
||||||
|
let(:bad_account) { Fabricate(:account, username: 'badguy666', domain: 'evil.org') }
|
||||||
|
let(:bad_status1) { Fabricate(:status, account: bad_account, text: 'You suck') }
|
||||||
|
let(:bad_status2) { Fabricate(:status, account: bad_account, text: 'Hahaha') }
|
||||||
|
let(:bad_attachment) { Fabricate(:media_attachment, account: bad_account, status: bad_status2, file: attachment_fixture('attachment.jpg')) }
|
||||||
|
|
||||||
|
subject { BlockDomainService.new }
|
||||||
|
|
||||||
|
before do
|
||||||
|
bad_account
|
||||||
|
bad_status1
|
||||||
|
bad_status2
|
||||||
|
bad_attachment
|
||||||
|
|
||||||
|
subject.call('evil.org')
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'creates a domain block' do
|
||||||
|
expect(DomainBlock.blocked?('evil.org')).to be true
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'removes remote accounts from that domain' do
|
||||||
|
expect(Account.find_remote('badguy666', 'evil.org')).to be_nil
|
||||||
|
end
|
||||||
|
|
||||||
|
it 'removes the remote accounts\'s statuses and media attachments' do
|
||||||
|
expect { bad_status1.reload }.to raise_exception ActiveRecord::RecordNotFound
|
||||||
|
expect { bad_status2.reload }.to raise_exception ActiveRecord::RecordNotFound
|
||||||
|
expect { bad_attachment.reload }.to raise_exception ActiveRecord::RecordNotFound
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue