status.rb 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563
  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. # local_only :boolean
  30. # activity_pub_type :string
  31. #
  32. class Status < ApplicationRecord
  33. before_destroy :unlink_from_conversations
  34. include Discard::Model
  35. include Paginable
  36. include Cacheable
  37. include StatusThreadingConcern
  38. include StatusSnapshotConcern
  39. include RateLimitable
  40. rate_limit by: :account, family: :statuses
  41. self.discard_column = :deleted_at
  42. # If `override_timestamps` is set at creation time, Snowflake ID creation
  43. # will be based on current time instead of `created_at`
  44. attr_accessor :override_timestamps
  45. update_index('statuses', :proper)
  46. enum visibility: [:public, :unlisted, :private, :direct, :limited], _suffix: :visibility
  47. belongs_to :application, class_name: 'Doorkeeper::Application', optional: true
  48. belongs_to :account, inverse_of: :statuses
  49. belongs_to :in_reply_to_account, foreign_key: 'in_reply_to_account_id', class_name: 'Account', optional: true
  50. belongs_to :conversation, optional: true
  51. belongs_to :preloadable_poll, class_name: 'Poll', foreign_key: 'poll_id', optional: true
  52. belongs_to :thread, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :replies, optional: true
  53. belongs_to :reblog, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblogs, optional: true
  54. has_many :favourites, inverse_of: :status, dependent: :destroy
  55. has_many :bookmarks, inverse_of: :status, dependent: :destroy
  56. has_many :reblogs, foreign_key: 'reblog_of_id', class_name: 'Status', inverse_of: :reblog, dependent: :destroy
  57. has_many :reblogged_by_accounts, through: :reblogs, class_name: 'Account', source: :account
  58. has_many :replies, foreign_key: 'in_reply_to_id', class_name: 'Status', inverse_of: :thread
  59. has_many :mentions, dependent: :destroy, inverse_of: :status
  60. has_many :active_mentions, -> { active }, class_name: 'Mention', inverse_of: :status
  61. has_many :media_attachments, dependent: :nullify
  62. has_and_belongs_to_many :tags
  63. has_and_belongs_to_many :preview_cards
  64. has_one :notification, as: :activity, dependent: :destroy
  65. has_one :status_stat, inverse_of: :status
  66. has_one :poll, inverse_of: :status, dependent: :destroy
  67. has_one :trend, class_name: 'StatusTrend', inverse_of: :status
  68. validates :uri, uniqueness: true, presence: true, unless: :local?
  69. validates :text, presence: true, unless: -> { with_media? || reblog? }
  70. validates_with StatusLengthValidator
  71. validates_with DisallowedHashtagsValidator
  72. validates :reblog, uniqueness: { scope: :account }, if: :reblog?
  73. validates :visibility, exclusion: { in: %w(direct limited) }, if: :reblog?
  74. accepts_nested_attributes_for :poll
  75. default_scope { recent.kept }
  76. scope :recent, -> { reorder(id: :desc) }
  77. scope :remote, -> { where(local: false).where.not(uri: nil) }
  78. scope :local, -> { where(local: true).or(where(uri: nil)) }
  79. scope :with_accounts, ->(ids) { where(id: ids).includes(:account) }
  80. scope :without_replies, -> { where('statuses.reply = FALSE OR statuses.in_reply_to_account_id = statuses.account_id') }
  81. scope :without_reblogs, -> { where('statuses.reblog_of_id IS NULL') }
  82. scope :without_local_only, -> { where(local_only: [false, nil]) }
  83. scope :with_public_visibility, -> { where(visibility: :public) }
  84. scope :tagged_with, ->(tag_ids) { joins(:statuses_tags).where(statuses_tags: { tag_id: tag_ids }) }
  85. scope :excluding_silenced_accounts, -> { left_outer_joins(:account).where(accounts: { silenced_at: nil }) }
  86. scope :including_silenced_accounts, -> { left_outer_joins(:account).where.not(accounts: { silenced_at: nil }) }
  87. scope :not_excluded_by_account, ->(account) { where.not(account_id: account.excluded_from_timeline_account_ids) }
  88. 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) }
  89. scope :tagged_with_all, ->(tag_ids) {
  90. Array(tag_ids).map(&:to_i).reduce(self) do |result, id|
  91. result.joins("INNER JOIN statuses_tags t#{id} ON t#{id}.status_id = statuses.id AND t#{id}.tag_id = #{id}")
  92. end
  93. }
  94. scope :tagged_with_none, ->(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. cache_associated :application,
  98. :media_attachments,
  99. :conversation,
  100. :status_stat,
  101. :tags,
  102. :preview_cards,
  103. :preloadable_poll,
  104. account: [:account_stat, :user],
  105. active_mentions: { account: :account_stat },
  106. reblog: [
  107. :application,
  108. :tags,
  109. :preview_cards,
  110. :media_attachments,
  111. :conversation,
  112. :status_stat,
  113. :preloadable_poll,
  114. account: [:account_stat, :user],
  115. active_mentions: { account: :account_stat },
  116. ],
  117. thread: { account: :account_stat }
  118. delegate :domain, to: :account, prefix: true
  119. REAL_TIME_WINDOW = 6.hours
  120. def searchable_by(preloaded = nil)
  121. ids = []
  122. ids << account_id if local?
  123. if preloaded.nil?
  124. ids += mentions.where(account: Account.local, silent: false).pluck(:account_id)
  125. ids += favourites.where(account: Account.local).pluck(:account_id)
  126. ids += reblogs.where(account: Account.local).pluck(:account_id)
  127. ids += bookmarks.where(account: Account.local).pluck(:account_id)
  128. ids += poll.votes.where(account: Account.local).pluck(:account_id) if poll.present?
  129. else
  130. ids += preloaded.mentions[id] || []
  131. ids += preloaded.favourites[id] || []
  132. ids += preloaded.reblogs[id] || []
  133. ids += preloaded.bookmarks[id] || []
  134. ids += preloaded.votes[id] || []
  135. end
  136. ids.uniq
  137. end
  138. def searchable_text
  139. [
  140. spoiler_text,
  141. FormattingHelper.extract_status_plain_text(self),
  142. preloadable_poll ? preloadable_poll.options.join("\n\n") : nil,
  143. ordered_media_attachments.map(&:description).join("\n\n"),
  144. ].compact.join("\n\n")
  145. end
  146. def to_log_human_identifier
  147. account.acct
  148. end
  149. def to_log_permalink
  150. ActivityPub::TagManager.instance.uri_for(self)
  151. end
  152. def reply?
  153. !in_reply_to_id.nil? || attributes['reply']
  154. end
  155. def local?
  156. attributes['local'] || uri.nil?
  157. end
  158. def local_only?
  159. local_only
  160. end
  161. def in_reply_to_local_account?
  162. reply? && thread&.account&.local?
  163. end
  164. def reblog?
  165. !reblog_of_id.nil?
  166. end
  167. def within_realtime_window?
  168. created_at >= REAL_TIME_WINDOW.ago
  169. end
  170. def verb
  171. if destroyed?
  172. :delete
  173. else
  174. reblog? ? :share : :post
  175. end
  176. end
  177. def object_type
  178. reply? ? :comment : :note
  179. end
  180. def proper
  181. reblog? ? reblog : self
  182. end
  183. def content
  184. proper.text
  185. end
  186. def target
  187. reblog
  188. end
  189. def preview_card
  190. preview_cards.first
  191. end
  192. def hidden?
  193. !distributable?
  194. end
  195. def distributable?
  196. public_visibility? || unlisted_visibility?
  197. end
  198. alias sign? distributable?
  199. def with_media?
  200. ordered_media_attachments.any?
  201. end
  202. def with_preview_card?
  203. preview_cards.any?
  204. end
  205. def non_sensitive_with_media?
  206. !sensitive? && with_media?
  207. end
  208. def reported?
  209. @reported ||= Report.where(target_account: account).unresolved.where('? = ANY(status_ids)', id).exists?
  210. end
  211. def emojis
  212. return @emojis if defined?(@emojis)
  213. fields = [spoiler_text, text]
  214. fields += preloadable_poll.options unless preloadable_poll.nil?
  215. @emojis = CustomEmoji.from_text(fields.join(' '), account.domain)
  216. end
  217. def ordered_media_attachments
  218. if ordered_media_attachment_ids.nil?
  219. media_attachments
  220. else
  221. map = media_attachments.index_by(&:id)
  222. ordered_media_attachment_ids.filter_map { |media_attachment_id| map[media_attachment_id] }
  223. end
  224. end
  225. def replies_count
  226. status_stat&.replies_count || 0
  227. end
  228. def reblogs_count
  229. status_stat&.reblogs_count || 0
  230. end
  231. def favourites_count
  232. status_stat&.favourites_count || 0
  233. end
  234. def increment_count!(key)
  235. update_status_stat!(key => public_send(key) + 1)
  236. end
  237. def decrement_count!(key)
  238. update_status_stat!(key => [public_send(key) - 1, 0].max)
  239. end
  240. def trendable?
  241. if attributes['trendable'].nil?
  242. account.trendable?
  243. else
  244. attributes['trendable']
  245. end
  246. end
  247. def requires_review?
  248. attributes['trendable'].nil? && account.requires_review?
  249. end
  250. def requires_review_notification?
  251. attributes['trendable'].nil? && account.requires_review_notification?
  252. end
  253. after_create_commit :increment_counter_caches
  254. after_destroy_commit :decrement_counter_caches
  255. after_create_commit :store_uri, if: :local?
  256. after_create_commit :update_statistics, if: :local?
  257. around_create Mastodon::Snowflake::Callbacks
  258. before_create :set_locality
  259. before_validation :prepare_contents, if: :local?
  260. before_validation :set_reblog
  261. before_validation :set_visibility
  262. before_validation :set_conversation
  263. before_validation :set_local
  264. after_create :set_poll_id
  265. class << self
  266. def selectable_visibilities
  267. visibilities.keys - %w(direct limited)
  268. end
  269. def favourites_map(status_ids, account_id)
  270. Favourite.select('status_id').where(status_id: status_ids).where(account_id: account_id).each_with_object({}) { |f, h| h[f.status_id] = true }
  271. end
  272. def bookmarks_map(status_ids, account_id)
  273. Bookmark.select('status_id').where(status_id: status_ids).where(account_id: account_id).map { |f| [f.status_id, true] }.to_h
  274. end
  275. def reblogs_map(status_ids, account_id)
  276. 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 }
  277. end
  278. def mutes_map(conversation_ids, account_id)
  279. ConversationMute.select('conversation_id').where(conversation_id: conversation_ids).where(account_id: account_id).each_with_object({}) { |m, h| h[m.conversation_id] = true }
  280. end
  281. def pins_map(status_ids, account_id)
  282. StatusPin.select('status_id').where(status_id: status_ids).where(account_id: account_id).each_with_object({}) { |p, h| h[p.status_id] = true }
  283. end
  284. def reload_stale_associations!(cached_items)
  285. account_ids = []
  286. cached_items.each do |item|
  287. account_ids << item.account_id
  288. account_ids << item.reblog.account_id if item.reblog?
  289. end
  290. account_ids.uniq!
  291. status_ids = cached_items.map { |item| item.reblog? ? item.reblog_of_id : item.id }.uniq
  292. return if account_ids.empty?
  293. accounts = Account.where(id: account_ids).includes(:account_stat, :user).index_by(&:id)
  294. status_stats = StatusStat.where(status_id: status_ids).index_by(&:status_id)
  295. cached_items.each do |item|
  296. item.account = accounts[item.account_id]
  297. item.reblog.account = accounts[item.reblog.account_id] if item.reblog?
  298. if item.reblog?
  299. status_stat = status_stats[item.reblog.id]
  300. item.reblog.status_stat = status_stat if status_stat.present?
  301. else
  302. status_stat = status_stats[item.id]
  303. item.status_stat = status_stat if status_stat.present?
  304. end
  305. end
  306. end
  307. def from_text(text)
  308. return [] if text.blank?
  309. text.scan(FetchLinkCardService::URL_PATTERN).map(&:second).uniq.filter_map do |url|
  310. status = begin
  311. if TagManager.instance.local_url?(url)
  312. ActivityPub::TagManager.instance.uri_to_resource(url, Status)
  313. else
  314. EntityCache.instance.status(url)
  315. end
  316. end
  317. status&.distributable? ? status : nil
  318. end
  319. end
  320. end
  321. def status_stat
  322. super || build_status_stat
  323. end
  324. # Hack to use a "INSERT INTO ... SELECT ..." query instead of "INSERT INTO ... VALUES ..." query
  325. def self._insert_record(values)
  326. if values.is_a?(Hash) && values['reblog_of_id'].present?
  327. primary_key = self.primary_key
  328. primary_key_value = nil
  329. if primary_key
  330. primary_key_value = values[primary_key]
  331. if !primary_key_value && prefetch_primary_key?
  332. primary_key_value = next_sequence_value
  333. values[primary_key] = primary_key_value
  334. end
  335. end
  336. # The following line is where we differ from stock ActiveRecord implementation
  337. im = _compile_reblog_insert(values)
  338. # Since we are using SELECT instead of VALUES, a non-error `nil` return is possible.
  339. # For our purposes, it's equivalent to a foreign key constraint violation
  340. result = connection.insert(im, "#{self} Create", primary_key || false, primary_key_value)
  341. raise ActiveRecord::InvalidForeignKey, "(reblog_of_id)=(#{values['reblog_of_id']}) is not present in table \"statuses\"" if result.nil?
  342. result
  343. else
  344. super
  345. end
  346. end
  347. def self._compile_reblog_insert(values)
  348. # This is somewhat equivalent to the following code of ActiveRecord::Persistence:
  349. # `arel_table.compile_insert(_substitute_values(values))`
  350. # The main difference is that we use a `SELECT` instead of a `VALUES` clause,
  351. # which means we have to build the `SELECT` clause ourselves and do a bit more
  352. # manual work.
  353. # Instead of using Arel::InsertManager#values, we are going to use Arel::InsertManager#select
  354. im = Arel::InsertManager.new
  355. im.into(arel_table)
  356. binds = []
  357. reblog_bind = nil
  358. values.each do |name, value|
  359. attr = arel_table[name]
  360. bind = predicate_builder.build_bind_attribute(attr.name, value)
  361. im.columns << attr
  362. binds << bind
  363. reblog_bind = bind if name == 'reblog_of_id'
  364. end
  365. im.select(arel_table.where(arel_table[:id].eq(reblog_bind)).where(arel_table[:deleted_at].eq(nil)).project(*binds))
  366. im
  367. end
  368. def discard_with_reblogs
  369. discard_time = Time.current
  370. Status.unscoped.where(reblog_of_id: id, deleted_at: [nil, deleted_at]).in_batches.update_all(deleted_at: discard_time) unless reblog?
  371. update_attribute(:deleted_at, discard_time)
  372. end
  373. private
  374. def update_status_stat!(attrs)
  375. return if marked_for_destruction? || destroyed?
  376. status_stat.update(attrs)
  377. end
  378. def store_uri
  379. update_column(:uri, ActivityPub::TagManager.instance.uri_for(self)) if uri.nil?
  380. end
  381. def prepare_contents
  382. text&.strip!
  383. spoiler_text&.strip!
  384. end
  385. def set_reblog
  386. self.reblog = reblog.reblog if reblog? && reblog.reblog?
  387. end
  388. def set_poll_id
  389. update_column(:poll_id, poll.id) if association(:poll).loaded? && poll.present?
  390. end
  391. def set_visibility
  392. self.visibility = reblog.visibility if reblog? && visibility.nil?
  393. self.visibility = (account.locked? ? :private : :public) if visibility.nil?
  394. self.sensitive = false if sensitive.nil?
  395. end
  396. def set_conversation
  397. self.thread = thread.reblog if thread&.reblog?
  398. self.reply = !(in_reply_to_id.nil? && thread.nil?) unless reply
  399. if reply? && !thread.nil?
  400. self.in_reply_to_account_id = carried_over_reply_to_account_id
  401. self.conversation_id = thread.conversation_id if conversation_id.nil?
  402. elsif conversation_id.nil?
  403. self.conversation = Conversation.new
  404. end
  405. end
  406. def carried_over_reply_to_account_id
  407. if thread.account_id == account_id && thread.reply?
  408. thread.in_reply_to_account_id
  409. else
  410. thread.account_id
  411. end
  412. end
  413. def set_local
  414. self.local = account.local?
  415. end
  416. def set_locality
  417. self.local_only = reblog.local_only if reblog?
  418. end
  419. def update_statistics
  420. return unless distributable?
  421. ActivityTracker.increment('activity:statuses:local')
  422. end
  423. def increment_counter_caches
  424. return if direct_visibility?
  425. account&.increment_count!(:statuses_count)
  426. reblog&.increment_count!(:reblogs_count) if reblog?
  427. thread&.increment_count!(:replies_count) if in_reply_to_id.present? && distributable?
  428. end
  429. def decrement_counter_caches
  430. return if direct_visibility? || new_record?
  431. account&.decrement_count!(:statuses_count)
  432. reblog&.decrement_count!(:reblogs_count) if reblog?
  433. thread&.decrement_count!(:replies_count) if in_reply_to_id.present? && distributable?
  434. end
  435. def unlink_from_conversations
  436. return unless direct_visibility?
  437. mentioned_accounts = (association(:mentions).loaded? ? mentions : mentions.includes(:account)).map(&:account)
  438. inbox_owners = mentioned_accounts.select(&:local?) + (account.local? ? [account] : [])
  439. inbox_owners.each do |inbox_owner|
  440. AccountConversation.remove_status(inbox_owner, self)
  441. end
  442. end
  443. end