2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 02:50:16 +09:00
|
|
|
class ReblogService < BaseService
|
|
|
|
# Reblog a status and notify its remote author
|
|
|
|
# @param [Account] account Account to reblog from
|
|
|
|
# @param [Status] reblogged_status Status to be reblogged
|
|
|
|
# @return [Status]
|
|
|
|
def call(account, reblogged_status)
|
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
|
2016-11-28 21:36:47 +09:00
|
|
|
|
2016-03-26 21:42:10 +09:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2016-11-28 21:36:47 +09:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
|
2016-03-20 03:20:07 +09:00
|
|
|
|
|
|
|
if reblogged_status.local?
|
2016-11-20 08:33:02 +09:00
|
|
|
NotifyService.new.call(reblogged_status.account, reblog)
|
2016-03-20 03:20:07 +09:00
|
|
|
else
|
2016-03-26 21:42:10 +09:00
|
|
|
NotificationWorker.perform_async(reblog.stream_entry.id, reblogged_status.account_id)
|
2016-03-20 03:20:07 +09:00
|
|
|
end
|
|
|
|
|
2016-02-25 02:50:16 +09:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def send_interaction_service
|
|
|
|
@send_interaction_service ||= SendInteractionService.new
|
|
|
|
end
|
|
|
|
end
|