You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

196 lines
6.2 KiB

7 years ago
7 years ago
  1. # frozen_string_literal: true
  2. class PostStatusService < BaseService
  3. include Redisable
  4. MIN_SCHEDULE_OFFSET = 5.minutes.freeze
  5. # Post a text status update, fetch and notify remote users mentioned
  6. # @param [Account] account Account from which to post
  7. # @param [Hash] options
  8. # @option [String] :text Message
  9. # @option [Status] :thread Optional status to reply to
  10. # @option [Boolean] :sensitive
  11. # @option [String] :visibility
  12. # @option [String] :spoiler_text
  13. # @option [String] :language
  14. # @option [String] :scheduled_at
  15. # @option [Hash] :poll Optional poll to attach
  16. # @option [Enumerable] :media_ids Optional array of media IDs to attach
  17. # @option [Doorkeeper::Application] :application
  18. # @option [String] :idempotency Optional idempotency key
  19. # @option [Boolean] :with_rate_limit
  20. # @return [Status]
  21. def call(account, options = {})
  22. @account = account
  23. @options = options
  24. @text = @options[:text] || ''
  25. @in_reply_to = @options[:thread]
  26. return idempotency_duplicate if idempotency_given? && idempotency_duplicate?
  27. validate_media!
  28. preprocess_attributes!
  29. if scheduled?
  30. schedule_status!
  31. else
  32. process_status!
  33. postprocess_status!
  34. bump_potential_friendship!
  35. end
  36. redis.setex(idempotency_key, 3_600, @status.id) if idempotency_given?
  37. @status
  38. end
  39. private
  40. def preprocess_attributes!
  41. @sensitive = (@options[:sensitive].nil? ? @account.user&.setting_default_sensitive : @options[:sensitive]) || @options[:spoiler_text].present?
  42. @text = @options.delete(:spoiler_text) if @text.blank? && @options[:spoiler_text].present?
  43. @visibility = @options[:visibility] || @account.user&.setting_default_privacy
  44. @visibility = :unlisted if @visibility&.to_sym == :public && @account.silenced?
  45. @scheduled_at = @options[:scheduled_at]&.to_datetime
  46. @scheduled_at = nil if scheduled_in_the_past?
  47. rescue ArgumentError
  48. raise ActiveRecord::RecordInvalid
  49. end
  50. def process_status!
  51. # The following transaction block is needed to wrap the UPDATEs to
  52. # the media attachments when the status is created
  53. ApplicationRecord.transaction do
  54. @status = @account.statuses.create!(status_attributes)
  55. end
  56. process_hashtags_service.call(@status)
  57. process_mentions_service.call(@status)
  58. end
  59. def schedule_status!
  60. status_for_validation = @account.statuses.build(status_attributes)
  61. if status_for_validation.valid?
  62. # Marking the status as destroyed is necessary to prevent the status from being
  63. # persisted when the associated media attachments get updated when creating the
  64. # scheduled status.
  65. status_for_validation.destroy
  66. # The following transaction block is needed to wrap the UPDATEs to
  67. # the media attachments when the scheduled status is created
  68. ApplicationRecord.transaction do
  69. @status = @account.scheduled_statuses.create!(scheduled_status_attributes)
  70. end
  71. else
  72. raise ActiveRecord::RecordInvalid
  73. end
  74. end
  75. def postprocess_status!
  76. LinkCrawlWorker.perform_async(@status.id) unless @status.spoiler_text?
  77. DistributionWorker.perform_async(@status.id)
  78. ActivityPub::DistributionWorker.perform_async(@status.id)
  79. PollExpirationNotifyWorker.perform_at(@status.poll.expires_at, @status.poll.id) if @status.poll
  80. end
  81. def validate_media!
  82. return if @options[:media_ids].blank? || !@options[:media_ids].is_a?(Enumerable)
  83. raise Mastodon::ValidationError, I18n.t('media_attachments.validations.too_many') if @options[:media_ids].size > 4 || @options[:poll].present?
  84. @media = @account.media_attachments.where(status_id: nil).where(id: @options[:media_ids].take(4).map(&:to_i))
  85. raise Mastodon::ValidationError, I18n.t('media_attachments.validations.images_and_video') if @media.size > 1 && @media.find(&:audio_or_video?)
  86. raise Mastodon::ValidationError, I18n.t('media_attachments.validations.not_ready') if @media.any?(&:not_processed?)
  87. end
  88. def language_from_option(str)
  89. ISO_639.find(str)&.alpha2
  90. end
  91. def process_mentions_service
  92. ProcessMentionsService.new
  93. end
  94. def process_hashtags_service
  95. ProcessHashtagsService.new
  96. end
  97. def scheduled?
  98. @scheduled_at.present?
  99. end
  100. def idempotency_key
  101. "idempotency:status:#{@account.id}:#{@options[:idempotency]}"
  102. end
  103. def idempotency_given?
  104. @options[:idempotency].present?
  105. end
  106. def idempotency_duplicate
  107. if scheduled?
  108. @account.schedule_statuses.find(@idempotency_duplicate)
  109. else
  110. @account.statuses.find(@idempotency_duplicate)
  111. end
  112. end
  113. def idempotency_duplicate?
  114. @idempotency_duplicate = redis.get(idempotency_key)
  115. end
  116. def scheduled_in_the_past?
  117. @scheduled_at.present? && @scheduled_at <= Time.now.utc + MIN_SCHEDULE_OFFSET
  118. end
  119. def bump_potential_friendship!
  120. return if !@status.reply? || @account.id == @status.in_reply_to_account_id
  121. ActivityTracker.increment('activity:interactions')
  122. return if @account.following?(@status.in_reply_to_account_id)
  123. PotentialFriendshipTracker.record(@account.id, @status.in_reply_to_account_id, :reply)
  124. end
  125. def status_attributes
  126. {
  127. text: @text,
  128. media_attachments: @media || [],
  129. thread: @in_reply_to,
  130. poll_attributes: poll_attributes,
  131. sensitive: @sensitive,
  132. spoiler_text: @options[:spoiler_text] || '',
  133. visibility: @visibility,
  134. language: language_from_option(@options[:language]) || @account.user&.setting_default_language&.presence || LanguageDetector.instance.detect(@text, @account),
  135. application: @options[:application],
  136. rate_limit: @options[:with_rate_limit],
  137. }.compact
  138. end
  139. def scheduled_status_attributes
  140. {
  141. scheduled_at: @scheduled_at,
  142. media_attachments: @media || [],
  143. params: scheduled_options,
  144. }
  145. end
  146. def poll_attributes
  147. return if @options[:poll].blank?
  148. @options[:poll].merge(account: @account, voters_count: 0)
  149. end
  150. def scheduled_options
  151. @options.tap do |options_hash|
  152. options_hash[:in_reply_to_id] = options_hash.delete(:thread)&.id
  153. options_hash[:application_id] = options_hash.delete(:application)&.id
  154. options_hash[:scheduled_at] = nil
  155. options_hash[:idempotency] = nil
  156. options_hash[:with_rate_limit] = false
  157. end
  158. end
  159. end