status.rb 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. # frozen_string_literal: true
  2. # == Schema Information
  3. #
  4. # Table name: statuses
  5. #
  6. # id :bigint(8) not null, primary key
  7. # uri :string
  8. # text :text default(""), not null
  9. # created_at :datetime not null
  10. # updated_at :datetime not null
  11. # in_reply_to_id :bigint(8)
  12. # reblog_of_id :bigint(8)
  13. # url :string
  14. # sensitive :boolean default(FALSE), not null
  15. # visibility :integer default("public"), not null
  16. # spoiler_text :text default(""), not null
  17. # reply :boolean default(FALSE), not null
  18. # language :string
  19. # conversation_id :bigint(8)
  20. # local :boolean
  21. # account_id :bigint(8) not null
  22. # application_id :bigint(8)
  23. # in_reply_to_account_id :bigint(8)
  24. # poll_id :bigint(8)
  25. # deleted_at :datetime
  26. # edited_at :datetime
  27. # trendable :boolean
  28. # ordered_media_attachment_ids :bigint(8) is an Array
  29. #
  30. class Status < ApplicationRecord
  31. include Discard::Model
  32. include Paginable
  33. include Cacheable
  34. include StatusThreadingConcern
  35. include StatusSnapshotConcern
  36. include RateLimitable
  37. include StatusSafeReblogInsert
  38. rate_limit by: :account, family: :statuses
  39. self.discard_column = :deleted_at
  40. # If `override_timestamps` is set at creation time, Snowflake ID creation
  41. # will be based on current time instead of `created_at`
  42. attr_accessor :override_timestamps
  43. update_index('statuses', :proper)
  44. enum visibility: { public: 0, unlisted: 1, private: 2, direct: 3, limited: 4 }, _suffix: :visibility
  45. belongs_to :application, class_name: 'Doorkeeper::Application', optional: true
  46. belongs_to :account, inverse_of: :statuses
  47. belongs_to :in_reply_to_account, class_name: 'Account', optional: true
  48. belongs_to :conversation, optional: true
  49. belongs_to :preloadable_poll, class_name: 'Poll', foreign_key: 'poll_id', optional: true, inverse_of: false
  50. belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies, optional: true
  51. belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs, optional: true
  52. has_many :favourites, inverse_of: :status, dependent: :destroy
  53. has_many :bookmarks, inverse_of: :status, dependent: :destroy
  54. has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog, dependent: :destroy
  55. has_many :reblogged_by_accounts, through: :reblogs, class_name: 'Account', source: :account
  56. has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
  57. has_many :mentions, dependent: :destroy, inverse_of: :status
  58. has_many :mentioned_accounts, through: :mentions, source: :account, class_name: 'Account'
  59. has_many :active_mentions, -> { active }, class_name: 'Mention', inverse_of: :status
  60. has_many :media_attachments, dependent: :nullify
  61. has_and_belongs_to_many :tags
  62. has_and_belongs_to_many :preview_cards
  63. has_one :notification, as: :activity, dependent: :destroy
  64. has_one :status_stat, inverse_of: :status
  65. has_one :poll, inverse_of: :status, dependent: :destroy
  66. has_one :trend, class_name: 'StatusTrend', inverse_of: :status
  67. validates :uri, uniqueness: true, presence: true, unless: :local?
  68. validates :text, presence: true, unless: -> { with_media? || reblog? }
  69. validates_with StatusLengthValidator
  70. validates_with DisallowedHashtagsValidator
  71. validates :reblog, uniqueness: { scope: :account }, if: :reblog?
  72. validates :visibility, exclusion: { in: %w(direct limited) }, if: :reblog?
  73. accepts_nested_attributes_for :poll
  74. default_scope { recent.kept }
  75. scope :recent, -> { reorder(id: :desc) }
  76. scope :remote, -> { where(local: false).where.not(uri: nil) }
  77. scope :local, -> { where(local: true).or(where(uri: nil)) }
  78. scope :with_accounts, ->(ids) { where(id: ids).includes(:account) }
  79. scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
  80. scope :without_reblogs, -> { where(statuses: { reblog_of_id: nil }) }
  81. scope :with_public_visibility, -> { where(visibility: :public) }
  82. scope :tagged_with, ->(tag_ids) { joins(:statuses_tags).where(statuses_tags: { tag_id: tag_ids }) }
  83. scope :excluding_silenced_accounts, -> { left_outer_joins(:account).where(accounts: { silenced_at: nil }) }
  84. scope :including_silenced_accounts, -> { left_outer_joins(:account).where.not(accounts: { silenced_at: nil }) }
  85. scope :not_excluded_by_account, ->(account) { where.not(account_id: account.excluded_from_timeline_account_ids) }
  86. scope :not_domain_blocked_by_account, ->(account) { account.excluded_from_timeline_domains.blank? ? left_outer_joins(:account) : left_outer_joins(:account).where('accounts.domain IS NULL OR accounts.domain NOT IN (?)', account.excluded_from_timeline_domains) }
  87. scope :tagged_with_all, lambda { |tag_ids|
  88. Array(tag_ids).map(&:to_i).reduce(self) do |result, id|
  89. result.where(<<~SQL.squish, tag_id: id)
  90. EXISTS(SELECT 1 FROM statuses_tags WHERE statuses_tags.status_id = statuses.id AND statuses_tags.tag_id = :tag_id)
  91. SQL
  92. end
  93. }
  94. scope :tagged_with_none, lambda { |tag_ids|
  95. where('NOT EXISTS (SELECT * FROM statuses_tags forbidden WHERE forbidden.status_id = statuses.id AND forbidden.tag_id IN (?))', tag_ids)
  96. }
  97. after_create_commit :trigger_create_webhooks
  98. after_update_commit :trigger_update_webhooks
  99. after_create_commit :increment_counter_caches
  100. after_destroy_commit :decrement_counter_caches
  101. after_create_commit :store_uri, if: :local?
  102. after_create_commit :update_statistics, if: :local?
  103. before_validation :prepare_contents, if: :local?
  104. before_validation :set_reblog
  105. before_validation :set_visibility
  106. before_validation :set_conversation
  107. before_validation :set_local
  108. around_create Mastodon::Snowflake::Callbacks
  109. after_create :set_poll_id
  110. # The `prepend: true` option below ensures this runs before
  111. # the `dependent: destroy` callbacks remove relevant records
  112. before_destroy :unlink_from_conversations!, prepend: true
  113. cache_associated :application,
  114. :media_attachments,
  115. :conversation,
  116. :status_stat,
  117. :tags,
  118. :preview_cards,
  119. :preloadable_poll,
  120. account: [:account_stat, user: :role],
  121. active_mentions: { account: :account_stat },
  122. reblog: [
  123. :application,
  124. :tags,
  125. :preview_cards,
  126. :media_attachments,
  127. :conversation,
  128. :status_stat,
  129. :preloadable_poll,
  130. account: [:account_stat, user: :role],
  131. active_mentions: { account: :account_stat },
  132. ],
  133. thread: { account: :account_stat }
  134. delegate :domain, to: :account, prefix: true
  135. REAL_TIME_WINDOW = 6.hours
  136. def cache_key
  137. "v2:#{super}"
  138. end
  139. def searchable_by(preloaded = nil)
  140. ids = []
  141. ids << account_id if local?
  142. if preloaded.nil?
  143. ids += mentions.joins(:account).merge(Account.local).active.pluck(:account_id)
  144. ids += favourites.joins(:account).merge(Account.local).pluck(:account_id)
  145. ids += reblogs.joins(:account).merge(Account.local).pluck(:account_id)
  146. ids += bookmarks.joins(:account).merge(Account.local).pluck(:account_id)
  147. ids += poll.votes.joins(:account).merge(Account.local).pluck(:account_id) if poll.present?
  148. else
  149. ids += preloaded.mentions[id] || []
  150. ids += preloaded.favourites[id] || []
  151. ids += preloaded.reblogs[id] || []
  152. ids += preloaded.bookmarks[id] || []
  153. ids += preloaded.votes[id] || []
  154. end
  155. ids.uniq
  156. end
  157. def searchable_text
  158. [
  159. spoiler_text,
  160. FormattingHelper.extract_status_plain_text(self),
  161. preloadable_poll ? preloadable_poll.options.join("\n\n") : nil,
  162. ordered_media_attachments.map(&:description).join("\n\n"),
  163. ].compact.join("\n\n")
  164. end
  165. def to_log_human_identifier
  166. account.acct
  167. end
  168. def to_log_permalink
  169. ActivityPub::TagManager.instance.uri_for(self)
  170. end
  171. def reply?
  172. !in_reply_to_id.nil? || attributes['reply']
  173. end
  174. def local?
  175. attributes['local'] || uri.nil?
  176. end
  177. def in_reply_to_local_account?
  178. reply? && thread&.account&.local?
  179. end
  180. def reblog?
  181. !reblog_of_id.nil?
  182. end
  183. def within_realtime_window?
  184. created_at >= REAL_TIME_WINDOW.ago
  185. end
  186. def verb
  187. if destroyed?
  188. :delete
  189. else
  190. reblog? ? :share : :post
  191. end
  192. end
  193. def object_type
  194. reply? ? :comment : :note
  195. end
  196. def proper
  197. reblog? ? reblog : self
  198. end
  199. def content
  200. proper.text
  201. end
  202. def target
  203. reblog
  204. end
  205. def preview_card
  206. preview_cards.first
  207. end
  208. def hidden?
  209. !distributable?
  210. end
  211. def distributable?
  212. public_visibility? || unlisted_visibility?
  213. end
  214. alias sign? distributable?
  215. def with_media?
  216. ordered_media_attachments.any?
  217. end
  218. def with_preview_card?
  219. preview_cards.any?
  220. end
  221. def non_sensitive_with_media?
  222. !sensitive? && with_media?
  223. end
  224. def reported?
  225. @reported ||= Report.where(target_account: account).unresolved.where('? = ANY(status_ids)', id).exists?
  226. end
  227. def emojis
  228. return @emojis if defined?(@emojis)
  229. fields = [spoiler_text, text]
  230. fields += preloadable_poll.options unless preloadable_poll.nil?
  231. @emojis = CustomEmoji.from_text(fields.join(' '), account.domain)
  232. end
  233. def ordered_media_attachments
  234. if ordered_media_attachment_ids.nil?
  235. media_attachments
  236. else
  237. map = media_attachments.index_by(&:id)
  238. ordered_media_attachment_ids.filter_map { |media_attachment_id| map[media_attachment_id] }
  239. end
  240. end
  241. def replies_count
  242. status_stat&.replies_count || 0
  243. end
  244. def reblogs_count
  245. status_stat&.reblogs_count || 0
  246. end
  247. def favourites_count
  248. status_stat&.favourites_count || 0
  249. end
  250. def increment_count!(key)
  251. update_status_stat!(key => public_send(key) + 1)
  252. end
  253. def decrement_count!(key)
  254. update_status_stat!(key => [public_send(key) - 1, 0].max)
  255. end
  256. def trendable?
  257. if attributes['trendable'].nil?
  258. account.trendable?
  259. else
  260. attributes['trendable']
  261. end
  262. end
  263. def requires_review?
  264. attributes['trendable'].nil? && account.requires_review?
  265. end
  266. def requires_review_notification?
  267. attributes['trendable'].nil? && account.requires_review_notification?
  268. end
  269. class << self
  270. def selectable_visibilities
  271. visibilities.keys - %w(direct limited)
  272. end
  273. def favourites_map(status_ids, account_id)
  274. Favourite.select('status_id').where(status_id: status_ids).where(account_id: account_id).each_with_object({}) { |f, h| h[f.status_id] = true }
  275. end
  276. def bookmarks_map(status_ids, account_id)
  277. Bookmark.select('status_id').where(status_id: status_ids).where(account_id: account_id).map { |f| [f.status_id, true] }.to_h
  278. end
  279. def reblogs_map(status_ids, account_id)
  280. unscoped.select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).each_with_object({}) { |s, h| h[s.reblog_of_id] = true }
  281. end
  282. def mutes_map(conversation_ids, account_id)
  283. ConversationMute.select('conversation_id').where(conversation_id: conversation_ids).where(account_id: account_id).each_with_object({}) { |m, h| h[m.conversation_id] = true }
  284. end
  285. def pins_map(status_ids, account_id)
  286. StatusPin.select('status_id').where(status_id: status_ids).where(account_id: account_id).each_with_object({}) { |p, h| h[p.status_id] = true }
  287. end
  288. def reload_stale_associations!(cached_items)
  289. account_ids = []
  290. cached_items.each do |item|
  291. account_ids << item.account_id
  292. account_ids << item.reblog.account_id if item.reblog?
  293. end
  294. account_ids.uniq!
  295. return if account_ids.empty?
  296. accounts = Account.where(id: account_ids).includes(:account_stat, :user).index_by(&:id)
  297. cached_items.each do |item|
  298. item.account = accounts[item.account_id]
  299. item.reblog.account = accounts[item.reblog.account_id] if item.reblog?
  300. end
  301. end
  302. def from_text(text)
  303. return [] if text.blank?
  304. text.scan(FetchLinkCardService::URL_PATTERN).map(&:second).uniq.filter_map do |url|
  305. status = if TagManager.instance.local_url?(url)
  306. ActivityPub::TagManager.instance.uri_to_resource(url, Status)
  307. else
  308. EntityCache.instance.status(url)
  309. end
  310. status&.distributable? ? status : nil
  311. end
  312. end
  313. end
  314. def status_stat
  315. super || build_status_stat
  316. end
  317. def discard_with_reblogs
  318. discard_time = Time.current
  319. Status.unscoped.where(reblog_of_id: id, deleted_at: [nil, deleted_at]).in_batches.update_all(deleted_at: discard_time) unless reblog?
  320. update_attribute(:deleted_at, discard_time)
  321. end
  322. def unlink_from_conversations!
  323. return unless direct_visibility?
  324. inbox_owners = mentioned_accounts.local
  325. inbox_owners += [account] if account.local?
  326. inbox_owners.each do |inbox_owner|
  327. AccountConversation.remove_status(inbox_owner, self)
  328. end
  329. end
  330. private
  331. def update_status_stat!(attrs)
  332. return if marked_for_destruction? || destroyed?
  333. status_stat.update(attrs)
  334. end
  335. def store_uri
  336. update_column(:uri, ActivityPub::TagManager.instance.uri_for(self)) if uri.nil?
  337. end
  338. def prepare_contents
  339. text&.strip!
  340. spoiler_text&.strip!
  341. end
  342. def set_reblog
  343. self.reblog = reblog.reblog if reblog? && reblog.reblog?
  344. end
  345. def set_poll_id
  346. update_column(:poll_id, poll.id) if association(:poll).loaded? && poll.present?
  347. end
  348. def set_visibility
  349. self.visibility = reblog.visibility if reblog? && visibility.nil?
  350. self.visibility = (account.locked? ? :private : :public) if visibility.nil?
  351. self.sensitive = false if sensitive.nil?
  352. end
  353. def set_conversation
  354. self.thread = thread.reblog if thread&.reblog?
  355. self.reply = !(in_reply_to_id.nil? && thread.nil?) unless reply
  356. if reply? && !thread.nil?
  357. self.in_reply_to_account_id = carried_over_reply_to_account_id
  358. self.conversation_id = thread.conversation_id if conversation_id.nil?
  359. elsif conversation_id.nil?
  360. self.conversation = Conversation.new
  361. end
  362. end
  363. def carried_over_reply_to_account_id
  364. if thread.account_id == account_id && thread.reply?
  365. thread.in_reply_to_account_id
  366. else
  367. thread.account_id
  368. end
  369. end
  370. def set_local
  371. self.local = account.local?
  372. end
  373. def update_statistics
  374. return unless distributable?
  375. ActivityTracker.increment('activity:statuses:local')
  376. end
  377. def increment_counter_caches
  378. return if direct_visibility?
  379. account&.increment_count!(:statuses_count)
  380. reblog&.increment_count!(:reblogs_count) if reblog?
  381. thread&.increment_count!(:replies_count) if in_reply_to_id.present? && distributable?
  382. end
  383. def decrement_counter_caches
  384. return if direct_visibility? || new_record?
  385. account&.decrement_count!(:statuses_count)
  386. reblog&.decrement_count!(:reblogs_count) if reblog?
  387. thread&.decrement_count!(:replies_count) if in_reply_to_id.present? && distributable?
  388. end
  389. def trigger_create_webhooks
  390. TriggerWebhookWorker.perform_async('status.created', 'Status', id) if local?
  391. end
  392. def trigger_update_webhooks
  393. TriggerWebhookWorker.perform_async('status.updated', 'Status', id) if local?
  394. end
  395. end