0
0
Fork 0

Misc tidying and clean ups (#3445)

* Remove trailing whitespace in i18n mailers

* Use query methods instead of #present? on AR attributes

* Delegate Status#account_domain method

* Delegate Mention #account_username and #account_acct methods
This commit is contained in:
Matt Jankowski 2017-05-31 14:38:17 -04:00 committed by Eugen Rochko
parent 5236a62861
commit b25e42a77f
8 changed files with 18 additions and 9 deletions

View file

@ -17,4 +17,11 @@ class Mention < ApplicationRecord
has_one :notification, as: :activity, dependent: :destroy
validates :account, uniqueness: { scope: :status }
delegate(
:username,
:acct,
to: :account,
prefix: true
)
end

View file

@ -73,6 +73,8 @@ class Status < ApplicationRecord
cache_associated :account, :application, :media_attachments, :tags, :stream_entry, mentions: :account, reblog: [:account, :application, :stream_entry, :tags, :media_attachments, mentions: :account], thread: :account
delegate :domain, to: :account, prefix: true
def reply?
!in_reply_to_id.nil? || attributes['reply']
end
@ -288,7 +290,7 @@ class Status < ApplicationRecord
def filter_from_context?(status, account)
should_filter = account&.blocking?(status.account_id)
should_filter ||= account&.domain_blocking?(status.account.domain)
should_filter ||= account&.domain_blocking?(status.account_domain)
should_filter ||= account&.muting?(status.account_id)
should_filter ||= (status.account.silenced? && !account&.following?(status.account_id))
should_filter ||= !StatusPolicy.new(account, status).show?