about summary refs log tree commit diff
path: root/app/services/post_status_service.rb
blob: 930e7ec9e13d56d4855f149d4888ce684db43d06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
class PostStatusService < BaseService
  # Post a text status update, fetch and notify remote users mentioned
  # @param [Account] account Account from which to post
  # @param [String] text Message
  # @param [Status] in_reply_to Optional status to reply to
  # @param [Enumerable] media_ids Optional array of media IDs to attach
  # @return [Status]
  def call(account, text, in_reply_to = nil, media_ids = nil)
    status = account.statuses.create!(text: text, thread: in_reply_to)
    attach_media(status, media_ids)
    process_mentions_service.(status)
    DistributionWorker.perform_async(status.id)
    account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
    status
  end

  private

  def attach_media(status, media_ids)
    return if media_ids.nil? || !media_ids.is_a?(Enumerable)

    media = MediaAttachment.where(status_id: nil).where(id: media_ids.take(4).map { |id| id.to_i })
    media.update(status_id: status.id)
  end

  def process_mentions_service
    @process_mentions_service ||= ProcessMentionsService.new
  end
end