2016-02-20 21:53:20 +00:00
|
|
|
class Status < ActiveRecord::Base
|
|
|
|
belongs_to :account, inverse_of: :statuses
|
2016-02-22 15:00:20 +00:00
|
|
|
|
2016-03-06 11:34:39 +00:00
|
|
|
belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies
|
|
|
|
belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs
|
2016-02-23 18:17:37 +00:00
|
|
|
|
2016-02-24 11:57:29 +00:00
|
|
|
has_one :stream_entry, as: :activity, dependent: :destroy
|
|
|
|
|
|
|
|
has_many :favourites, inverse_of: :status, dependent: :destroy
|
2016-03-06 11:34:39 +00:00
|
|
|
has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog
|
|
|
|
has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
|
2016-02-24 23:17:01 +00:00
|
|
|
has_many :mentioned_accounts, class_name: 'Mention', dependent: :destroy
|
2016-02-23 18:17:37 +00:00
|
|
|
|
2016-02-22 17:10:30 +00:00
|
|
|
validates :account, presence: true
|
2016-02-23 18:17:37 +00:00
|
|
|
validates :uri, uniqueness: true, unless: 'local?'
|
|
|
|
|
|
|
|
def local?
|
|
|
|
self.uri.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def reblog?
|
|
|
|
!self.reblog_of_id.nil?
|
|
|
|
end
|
|
|
|
|
|
|
|
def reply?
|
|
|
|
!self.in_reply_to_id.nil?
|
|
|
|
end
|
2016-02-22 17:10:30 +00:00
|
|
|
|
|
|
|
def verb
|
2016-02-23 18:17:37 +00:00
|
|
|
reblog? ? :share : :post
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def object_type
|
2016-02-23 18:17:37 +00:00
|
|
|
reply? ? :comment : :note
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def content
|
2016-02-23 18:17:37 +00:00
|
|
|
reblog? ? self.reblog.text : self.text
|
|
|
|
end
|
|
|
|
|
|
|
|
def target
|
|
|
|
self.reblog
|
2016-02-22 17:10:30 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def title
|
|
|
|
content.truncate(80, omission: "...")
|
|
|
|
end
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
def mentions
|
|
|
|
m = []
|
|
|
|
|
|
|
|
m << thread.account if reply?
|
|
|
|
m << reblog.account if reblog?
|
|
|
|
|
2016-02-24 17:25:04 +00:00
|
|
|
unless reblog?
|
|
|
|
self.text.scan(Account::MENTION_RE).each do |match|
|
2016-02-26 14:28:08 +00:00
|
|
|
uri = match.first
|
|
|
|
username, domain = uri.split('@')
|
|
|
|
account = Account.find_by(username: username, domain: domain)
|
2016-02-24 17:25:04 +00:00
|
|
|
|
|
|
|
m << account unless account.nil?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-23 18:17:37 +00:00
|
|
|
m
|
|
|
|
end
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
after_create do
|
|
|
|
self.account.stream_entries.create!(activity: self)
|
2016-03-08 19:16:11 +00:00
|
|
|
FanOutOnWriteService.new.(self)
|
2016-02-22 15:00:20 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|