2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 17:25:04 +00:00
|
|
|
class PostStatusService < BaseService
|
2016-02-24 17:50:16 +00:00
|
|
|
# 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
|
2016-11-23 09:46:48 +00:00
|
|
|
# @param [Hash] options
|
|
|
|
# @option [Boolean] :sensitive
|
2017-01-15 13:01:33 +00:00
|
|
|
# @option [String] :visibility
|
2017-01-13 04:54:26 +00:00
|
|
|
# @option [String] :spoiler_text
|
2016-11-23 09:46:48 +00:00
|
|
|
# @option [Enumerable] :media_ids Optional array of media IDs to attach
|
2017-01-15 13:01:33 +00:00
|
|
|
# @option [Doorkeeper::Application] :application
|
2017-04-25 14:04:49 +01:00
|
|
|
# @option [String] :idempotency Optional idempotency key
|
2016-02-24 17:50:16 +00:00
|
|
|
# @return [Status]
|
2016-11-23 09:46:48 +00:00
|
|
|
def call(account, text, in_reply_to = nil, options = {})
|
2017-04-25 14:04:49 +01:00
|
|
|
if options[:idempotency].present?
|
|
|
|
existing_id = redis.get("idempotency:status:#{account.id}:#{options[:idempotency]}")
|
|
|
|
return Status.find(existing_id) if existing_id
|
|
|
|
end
|
|
|
|
|
2017-02-26 22:23:06 +00:00
|
|
|
media = validate_media!(options[:media_ids])
|
2017-04-26 02:47:44 +01:00
|
|
|
status = nil
|
2017-07-14 18:47:53 +01:00
|
|
|
|
2017-04-26 02:47:44 +01:00
|
|
|
ApplicationRecord.transaction do
|
|
|
|
status = account.statuses.create!(text: text,
|
|
|
|
thread: in_reply_to,
|
|
|
|
sensitive: options[:sensitive],
|
|
|
|
spoiler_text: options[:spoiler_text] || '',
|
|
|
|
visibility: options[:visibility],
|
|
|
|
language: detect_language_for(text, account),
|
|
|
|
application: options[:application])
|
|
|
|
attach_media(status, media)
|
|
|
|
end
|
2017-07-14 18:47:53 +01:00
|
|
|
|
2016-09-29 20:28:21 +01:00
|
|
|
process_mentions_service.call(status)
|
2016-11-05 14:20:05 +00:00
|
|
|
process_hashtags_service.call(status)
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2017-05-31 19:38:17 +01:00
|
|
|
LinkCrawlWorker.perform_async(status.id) unless status.spoiler_text?
|
2016-03-25 02:22:26 +00:00
|
|
|
DistributionWorker.perform_async(status.id)
|
2016-11-28 12:36:47 +00:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(status.stream_entry.id)
|
2017-08-12 23:44:41 +01:00
|
|
|
ActivityPub::DistributionWorker.perform_async(status.id)
|
2017-08-30 14:37:02 +01:00
|
|
|
ActivityPub::ReplyDistributionWorker.perform_async(status.id) if status.reply? && status.thread.account.local?
|
2016-11-28 12:36:47 +00:00
|
|
|
|
2017-04-25 14:04:49 +01:00
|
|
|
if options[:idempotency].present?
|
|
|
|
redis.setex("idempotency:status:#{account.id}:#{options[:idempotency]}", 3_600, status.id)
|
|
|
|
end
|
|
|
|
|
2016-02-24 17:50:16 +00:00
|
|
|
status
|
2016-02-24 17:25:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-02-26 22:23:06 +00:00
|
|
|
def validate_media!(media_ids)
|
2017-04-17 03:23:13 +01:00
|
|
|
return if media_ids.blank? || !media_ids.is_a?(Enumerable)
|
2017-02-26 22:23:06 +00:00
|
|
|
|
2017-04-07 19:19:16 +01:00
|
|
|
raise Mastodon::ValidationError, I18n.t('media_attachments.validations.too_many') if media_ids.size > 4
|
2017-02-26 22:23:06 +00:00
|
|
|
|
2016-09-29 20:28:21 +01:00
|
|
|
media = MediaAttachment.where(status_id: nil).where(id: media_ids.take(4).map(&:to_i))
|
2017-02-26 22:23:06 +00:00
|
|
|
|
2017-04-07 19:19:16 +01:00
|
|
|
raise Mastodon::ValidationError, I18n.t('media_attachments.validations.images_and_video') if media.size > 1 && media.find(&:video?)
|
2017-02-26 22:23:06 +00:00
|
|
|
|
|
|
|
media
|
2017-02-05 03:03:24 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def attach_media(status, media)
|
|
|
|
return if media.nil?
|
2016-09-05 17:39:53 +01:00
|
|
|
media.update(status_id: status.id)
|
|
|
|
end
|
|
|
|
|
2017-04-18 21:20:12 +01:00
|
|
|
def detect_language_for(text, account)
|
|
|
|
LanguageDetector.new(text, account).to_iso_s
|
2017-04-16 19:32:17 +01:00
|
|
|
end
|
|
|
|
|
2016-02-24 23:17:01 +00:00
|
|
|
def process_mentions_service
|
|
|
|
@process_mentions_service ||= ProcessMentionsService.new
|
2016-02-24 17:44:03 +00:00
|
|
|
end
|
2016-11-05 14:20:05 +00:00
|
|
|
|
|
|
|
def process_hashtags_service
|
|
|
|
@process_hashtags_service ||= ProcessHashtagsService.new
|
|
|
|
end
|
2017-04-25 14:04:49 +01:00
|
|
|
|
|
|
|
def redis
|
|
|
|
Redis.current
|
|
|
|
end
|
2016-02-24 17:25:04 +00:00
|
|
|
end
|