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-02-23 18:17:37 +00:00
|
|
|
belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status'
|
|
|
|
belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status'
|
|
|
|
|
|
|
|
has_one :stream_entry, as: :activity
|
|
|
|
has_many :favourites, inverse_of: :status
|
|
|
|
|
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?
|
|
|
|
|
|
|
|
m
|
|
|
|
end
|
|
|
|
|
2016-02-22 15:00:20 +00:00
|
|
|
after_create do
|
|
|
|
self.account.stream_entries.create!(activity: self)
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|