2016-08-17 16:56:23 +01:00
class Status < ApplicationRecord
2016-03-24 12:21:53 +00:00
include Paginable
2016-03-25 01:13:30 +00:00
include Streamable
2016-03-24 12:21:53 +00:00
2016-10-16 17:57:54 +01:00
belongs_to :account , - > { with_counters } , 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
2016-11-03 12:28:36 +00:00
belongs_to :reblog , foreign_key : 'reblog_of_id' , class_name : 'Status' , inverse_of : :reblogs , touch : true
2016-02-23 18:17:37 +00:00
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-03-25 01:13:30 +00:00
has_many :mentions , dependent : :destroy
2016-09-05 16:46:36 +01:00
has_many :media_attachments , 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-09-29 20:28:21 +01:00
validates :text , presence : true , length : { maximum : 500 } , if : proc { | s | s . local? && ! s . reblog? }
2016-10-02 14:33:24 +01:00
validates :reblog , uniqueness : { scope : :account , message : 'of status already exists' } , if : 'reblog?'
2016-02-23 18:17:37 +00:00
2016-10-09 14:15:21 +01:00
default_scope { order ( 'id desc' ) }
2016-03-24 12:21:53 +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' ) }
2016-09-08 19:36:01 +01:00
scope :with_includes , - > { includes ( :account , :media_attachments , :stream_entry , mentions : :account , reblog : [ :account , mentions : :account ] , thread : :account ) }
2016-03-11 15:47:36 +00:00
2016-02-23 18:17:37 +00:00
def local?
2016-09-29 20:28:21 +01:00
uri . nil?
2016-02-23 18:17:37 +00:00
end
def reblog?
2016-09-29 20:28:21 +01:00
! reblog_of_id . nil?
2016-02-23 18:17:37 +00:00
end
def reply?
2016-09-29 20:28:21 +01:00
! in_reply_to_id . nil?
2016-02-23 18:17:37 +00:00
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-09-29 20:28:21 +01:00
reblog? ? reblog . text : text
2016-02-23 18:17:37 +00:00
end
def target
2016-09-29 20:28:21 +01:00
reblog
2016-02-22 17:10:30 +00:00
end
def title
2016-03-21 09:31:20 +00:00
content
2016-02-22 17:10:30 +00:00
end
2016-03-12 15:09:46 +00:00
def reblogs_count
2016-09-29 20:28:21 +01:00
attributes [ 'reblogs_count' ] || reblogs . count
2016-03-12 15:09:46 +00:00
end
def favourites_count
2016-09-29 20:28:21 +01:00
attributes [ 'favourites_count' ] || favourites . count
2016-03-12 15:09:46 +00:00
end
2016-03-21 10:43:21 +00:00
def ancestors
2016-09-29 20:28:21 +01:00
ids = ( Status . find_by_sql ( [ 'WITH RECURSIVE search_tree(id, in_reply_to_id, path) AS (SELECT id, in_reply_to_id, ARRAY[id] FROM statuses WHERE id = ? UNION ALL SELECT statuses.id, statuses.in_reply_to_id, path || statuses.id FROM search_tree JOIN statuses ON statuses.id = search_tree.in_reply_to_id WHERE NOT statuses.id = ANY(path)) SELECT id FROM search_tree ORDER BY path DESC' , id ] ) - [ self ] ) . pluck ( :id )
2016-09-21 22:18:28 +01:00
statuses = Status . where ( id : ids ) . with_counters . with_includes . group_by ( & :id )
ids . map { | id | statuses [ id ] . first }
2016-03-21 10:43:21 +00:00
end
def descendants
2016-09-29 20:28:21 +01:00
ids = ( Status . find_by_sql ( [ 'WITH RECURSIVE search_tree(id, path) AS (SELECT id, ARRAY[id] FROM statuses WHERE id = ? UNION ALL SELECT statuses.id, path || statuses.id FROM search_tree JOIN statuses ON statuses.in_reply_to_id = search_tree.id WHERE NOT statuses.id = ANY(path)) SELECT id FROM search_tree ORDER BY path' , id ] ) - [ self ] ) . pluck ( :id )
2016-09-21 22:18:28 +01:00
statuses = Status . where ( id : ids ) . with_counters . with_includes . group_by ( & :id )
ids . map { | id | statuses [ id ] . first }
2016-03-21 10:43:21 +00:00
end
2016-11-04 18:12:59 +00:00
def reblogged_by ( limit )
Account . where ( id : reblogs . limit ( limit ) . pluck ( :account_id ) ) . with_counters
end
def favourited_by ( limit )
Account . where ( id : favourites . limit ( limit ) . pluck ( :account_id ) ) . with_counters
end
2016-03-25 01:13:30 +00:00
def self . as_home_timeline ( account )
2016-09-29 20:28:21 +01:00
where ( account : [ account ] + account . following ) . with_includes . with_counters
2016-03-25 01:13:30 +00:00
end
def self . as_mentions_timeline ( account )
2016-09-29 20:28:21 +01:00
where ( id : Mention . where ( account : account ) . pluck ( :status_id ) ) . with_includes . with_counters
2016-02-22 15:00:20 +00:00
end
2016-09-08 20:23:29 +01:00
2016-10-09 14:15:21 +01:00
def self . as_public_timeline ( account )
2016-10-27 18:33:04 +01:00
joins ( 'LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id' )
. joins ( 'LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id' )
. where ( 'accounts.silenced = FALSE' )
. where ( '(reblogs.account_id IS NULL OR reblogs.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)) AND statuses.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)' , account . id , account . id )
. with_includes
. with_counters
2016-10-09 14:15:21 +01:00
end
2016-09-08 20:23:29 +01:00
def self . favourites_map ( status_ids , account_id )
2016-10-16 17:57:54 +01:00
Favourite . select ( 'status_id' ) . where ( status_id : status_ids ) . where ( account_id : account_id ) . map { | f | [ f . status_id , true ] } . to_h
2016-09-08 20:23:29 +01:00
end
def self . reblogs_map ( status_ids , account_id )
2016-10-16 17:57:54 +01:00
select ( 'reblog_of_id' ) . where ( reblog_of_id : status_ids ) . where ( account_id : account_id ) . map { | s | [ s . reblog_of_id , true ] } . to_h
2016-09-08 20:23:29 +01:00
end
2016-09-22 20:39:53 +01:00
before_validation do
2016-09-29 20:28:21 +01:00
text . strip!
2016-09-22 20:39:53 +01:00
end
2016-02-20 21:53:20 +00:00
end