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-03-16 09:58:58 +00:00
has_one :stream_entry , as : :activity
2016-02-24 11:57:29 +00:00
has_many :favourites , inverse_of : :status , dependent : :destroy
2016-03-16 09:46:15 +00:00
has_many :reblogs , foreign_key : 'reblog_of_id' , class_name : 'Status' , inverse_of : :reblog , dependent : :destroy
2016-03-06 11:34:39 +00:00
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?'
2016-03-11 15:47:36 +00:00
scope :with_counters , - > { select ( 'statuses.*, (select count(r.id) from statuses as r where r.reblog_of_id = statuses.id) as reblogs_count, (select count(f.id) from favourites as f where f.status_id = statuses.id) as favourites_count' ) }
scope :with_includes , - > { includes ( :account , reblog : :account , thread : :account ) }
2016-02-23 18:17:37 +00:00
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-03-12 15:09:46 +00:00
def reblogs_count
self . attributes [ 'reblogs_count' ] || self . reblogs . count
end
def favourites_count
self . attributes [ 'favourites_count' ] || self . favourites . count
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 )
end
2016-02-20 21:53:20 +00:00
end