status.rb 17 KB

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