# frozen_string_literal: true class PostStatusService < BaseService include Redisable MIN_SCHEDULE_OFFSET = 5.minutes.freeze # Post a text status update, fetch and notify remote users mentioned # @param [Account] account Account from which to post # @param [Hash] options # @option [String] :text Message # @option [String] :markdown Optional message in markdown # @option [Status] :thread Optional status to reply to # @option [Boolean] :sensitive # @option [String] :visibility # @option [String] :spoiler_text # @option [String] :language # @option [String] :scheduled_at # @option [String] :expires_at # @option [Hash] :poll Optional poll to attach # @option [Enumerable] :media_ids Optional array of media IDs to attach # @option [Doorkeeper::Application] :application # @option [String] :idempotency Optional idempotency key # @option [String] :group Optional group id # @return [Status] def call(account, options = {}) @account = account @options = options @text = @options[:text] || '' @markdown = @options[:markdown] if @account.is_pro @in_reply_to = @options[:thread] @autoJoinGroup = @options[:autoJoinGroup] || false @isPrivateGroup = @options[:isPrivateGroup] || false return idempotency_duplicate if idempotency_given? && idempotency_duplicate? validate_links! validate_media! validate_group! preprocess_attributes! if scheduled? schedule_status! else process_status! postprocess_status! bump_potential_friendship! end redis.with do |conn| conn.setex(idempotency_key, 3_600, @status.id) if idempotency_given? end @status end private def preprocess_attributes! @text = @options.delete(:spoiler_text) if @text.blank? && @options[:spoiler_text].present? @visibility = @options[:visibility] || @account.user&.setting_default_privacy @visibility = :unlisted if @visibility == :public && @account.silenced? @visibility = :private_group if @isPrivateGroup @expires_at = nil if @account.is_pro case @options[:expires_at] when 'five_minutes' @expires_at = Time.now + 5.minutes when 'one_hour' @expires_at = Time.now + 1.hour when 'six_hours' @expires_at = Time.now + 6.hours when 'one_day' @expires_at = Time.now + 1.day when 'three_days' @expires_at = Time.now + 3.days when 'one_week' @expires_at = Time.now + 1.week end end @scheduled_at = @options[:scheduled_at]&.to_datetime @scheduled_at = nil if scheduled_in_the_past? rescue ArgumentError raise ActiveRecord::RecordInvalid end def process_status! # The following transaction block is needed to wrap the UPDATEs to # the media attachments when the status is created ApplicationRecord.transaction do @status = @account.statuses.create!(status_attributes) end process_hashtags_service.call(@status) process_mentions_service.call(@status) if @status.quote process_quote_service.call(@status) end end def schedule_status! status_for_validation = @account.statuses.build(status_attributes) if status_for_validation.valid? status_for_validation.destroy # The following transaction block is needed to wrap the UPDATEs to # the media attachments when the scheduled status is created ApplicationRecord.transaction do @status = @account.scheduled_statuses.create!(scheduled_status_attributes) end else raise ActiveRecord::RecordInvalid end end def postprocess_status! LinkCrawlWorker.perform_async(@status.id) # DistributionWorker.perform_async(@status.id) ExpiringStatusWorker.perform_at(@status.expires_at, @status.id) if @status.expires_at && @account.is_pro PollExpirationNotifyWorker.perform_at(@status.poll.expires_at, @status.poll.id) if @status.poll end def validate_group! group_id = @options[:group_id] # All good if no group return if group_id.blank? # If removed from group, return error immediately if GroupRemovedAccount.where(account: @account, group_id: group_id).exists? raise GabSocial::ValidationError, I18n.t('statuses.not_a_member_of_group') return end # Return ok if autojoin flag exists return if @autoJoinGroup # Return ok if is reply return unless @in_reply_to.nil? # If is normal post and tries without being a member, return error unless GroupAccount.where(account: @account, group_id: group_id).exists? raise GabSocial::ValidationError, I18n.t('statuses.not_a_member_of_group') return end end def validate_media! return if @options[:media_ids].blank? || !@options[:media_ids].is_a?(Enumerable) raise GabSocial::ValidationError, I18n.t('media_attachments.validations.too_many') if @options[:media_ids].size > 4 || @options[:poll].present? @account.media_attachments.connection.stick_to_master! @media = @account.media_attachments.where(status_id: nil).where(id: @options[:media_ids].take(4).map(&:to_i)) hasVideoOrGif = @media.find(&:video?) || @media.find(&:gifv?) raise GabSocial::ValidationError, I18n.t('media_attachments.validations.images_and_video') if @media.size > 1 && hasVideoOrGif end def validate_links! raise GabSocial::NotPermittedError if LinkBlock.block?(@text) end def language_from_option(str) ISO_639.find(str)&.alpha2 end def process_quote_service ProcessQuoteService.new end def process_mentions_service ProcessMentionsService.new end def process_hashtags_service ProcessHashtagsService.new end def scheduled? return false unless @account.is_pro @scheduled_at.present? end def idempotency_key "idempotency:status:#{@account.id}:#{@options[:idempotency]}" end def idempotency_given? @options[:idempotency].present? end def idempotency_duplicate if scheduled? @account.schedule_statuses.find(@idempotency_duplicate) else @account.statuses.find(@idempotency_duplicate) end end def idempotency_duplicate? redis.with do |conn| @idempotency_duplicate = conn.get(idempotency_key) end @idempotency_duplicate end def scheduled_in_the_past? @scheduled_at.present? && @scheduled_at <= Time.now.utc + MIN_SCHEDULE_OFFSET end def bump_potential_friendship! return if !@status.reply? || @account.id == @status.in_reply_to_account_id ActivityTracker.increment('activity:interactions') return if @account.following?(@status.in_reply_to_account_id) PotentialFriendshipTracker.record(@account.id, @status.in_reply_to_account_id, :reply) end def status_attributes { text: @text, markdown: @markdown, expires_at: @expires_at, group_id: @options[:group_id], quote_of_id: @options[:quote_of_id], media_attachments: @media || [], thread: @in_reply_to, poll_attributes: poll_attributes, sensitive: (@options[:sensitive].nil? ? @account.user&.setting_default_sensitive : @options[:sensitive]) || @options[:spoiler_text].present?, spoiler_text: @options[:spoiler_text] || '', visibility: @visibility, language: language_from_option(@options[:language]) || @account.user&.setting_default_language&.presence || LanguageDetector.instance.detect(@text, @account), application: @options[:application], }.compact end def scheduled_status_attributes { scheduled_at: @scheduled_at, media_attachments: @media || [], params: scheduled_options, } end def poll_attributes return if @options[:poll].blank? @options[:poll].merge(account: @account) end def scheduled_options @options.tap do |options_hash| options_hash[:in_reply_to_id] = options_hash.delete(:thread)&.id options_hash[:application_id] = options_hash.delete(:application)&.id options_hash[:scheduled_at] = nil options_hash[:idempotency] = nil end end end