mastodon/app/models/status.rb

136 lines
4.9 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-08-17 17:56:23 +02:00
class Status < ApplicationRecord
include Paginable
include Streamable
belongs_to :account, -> { with_counters }, inverse_of: :statuses
2016-02-22 16:00:20 +01:00
belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies
2016-11-03 13:28:36 +01:00
belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs, touch: true
2016-02-24 12:57:29 +01:00
has_many :favourites, inverse_of: :status, dependent: :destroy
2016-03-16 10:46:15 +01:00
has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog, dependent: :destroy
has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
has_many :mentions, dependent: :destroy
2016-09-05 17:46:36 +02:00
has_many :media_attachments, dependent: :destroy
2016-11-05 15:20:05 +01:00
has_and_belongs_to_many :tags
2016-02-22 18:10:30 +01:00
validates :account, presence: true
validates :uri, uniqueness: true, unless: 'local?'
2016-09-29 21:28:21 +02:00
validates :text, presence: true, length: { maximum: 500 }, if: proc { |s| s.local? && !s.reblog? }
validates :reblog, uniqueness: { scope: :account, message: 'of status already exists' }, if: 'reblog?'
default_scope { order('id desc') }
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-11-05 15:20:05 +01:00
scope :with_includes, -> { includes(:account, :media_attachments, :tags, :stream_entry, mentions: :account, reblog: [:account, mentions: :account], thread: :account) }
def local?
2016-09-29 21:28:21 +02:00
uri.nil?
end
def reblog?
2016-09-29 21:28:21 +02:00
!reblog_of_id.nil?
end
def reply?
2016-09-29 21:28:21 +02:00
!in_reply_to_id.nil?
end
2016-02-22 18:10:30 +01:00
def verb
reblog? ? :share : :post
2016-02-22 18:10:30 +01:00
end
def object_type
reply? ? :comment : :note
2016-02-22 18:10:30 +01:00
end
def content
2016-09-29 21:28:21 +02:00
reblog? ? reblog.text : text
end
def target
2016-09-29 21:28:21 +02:00
reblog
2016-02-22 18:10:30 +01:00
end
def title
2016-03-21 10:31:20 +01:00
content
2016-02-22 18:10:30 +01:00
end
def reblogs_count
2016-09-29 21:28:21 +02:00
attributes['reblogs_count'] || reblogs.count
end
def favourites_count
2016-09-29 21:28:21 +02:00
attributes['favourites_count'] || favourites.count
end
2016-03-21 11:43:21 +01:00
def ancestors
2016-09-29 21:28:21 +02: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)
statuses = Status.where(id: ids).with_counters.with_includes.group_by(&:id)
ids.map { |id| statuses[id].first }
2016-03-21 11:43:21 +01:00
end
def descendants
2016-09-29 21:28:21 +02: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)
statuses = Status.where(id: ids).with_counters.with_includes.group_by(&:id)
ids.map { |id| statuses[id].first }
2016-03-21 11:43:21 +01:00
end
2016-11-05 15:20:05 +01:00
class << self
def as_home_timeline(account)
where(account: [account] + account.following).with_includes.with_counters
end
def as_mentions_timeline(account)
where(id: Mention.where(account: account).pluck(:status_id)).with_includes.with_counters
end
def as_public_timeline(account = nil)
query = joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id').where('accounts.silenced = FALSE')
query = filter_timeline(query, account) unless account.nil?
query.with_includes.with_counters
2016-11-05 15:20:05 +01:00
end
def as_tag_timeline(tag, account = nil)
query = tag.statuses
.joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id')
.where('accounts.silenced = FALSE')
query = filter_timeline(query, account) unless account.nil?
query.with_includes.with_counters
2016-11-05 15:20:05 +01:00
end
def favourites_map(status_ids, account_id)
Favourite.select('status_id').where(status_id: status_ids).where(account_id: account_id).map { |f| [f.status_id, true] }.to_h
end
def reblogs_map(status_ids, account_id)
select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).map { |s| [s.reblog_of_id, true] }.to_h
end
private
def filter_timeline(query, account)
blocked = Block.where(account: account).pluck(:target_account_id)
return query if blocked.empty?
query
.joins('LEFT OUTER JOIN statuses AS parents ON statuses.in_reply_to_id = parents.id')
.joins('LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id')
.where('statuses.account_id NOT IN (?)', blocked)
2016-11-10 21:58:22 +01:00
.where('(parents.id IS NULL OR parents.account_id NOT IN (?))', blocked)
.where('(reblogs.id IS NULL OR reblogs.account_id NOT IN (?))', blocked)
end
2016-09-08 21:23:29 +02:00
end
before_validation do
2016-09-29 21:28:21 +02:00
text.strip!
end
2016-02-20 22:53:20 +01:00
end