2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 18:50:16 +01: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)
|
2016-12-22 23:03:57 +01:00
|
|
|
raise Mastodon::NotPermitted if reblogged_status.private_visibility?
|
2016-12-21 20:00:18 +01:00
|
|
|
|
2016-02-24 18:50:16 +01:00
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
|
2016-11-28 13:36:47 +01:00
|
|
|
|
2016-03-26 13:42:10 +01:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2016-11-28 13:36:47 +01:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
|
2016-03-19 19:20:07 +01:00
|
|
|
|
|
|
|
if reblogged_status.local?
|
2016-12-28 13:21:12 +01:00
|
|
|
NotifyService.new.call(reblog.reblog.account, reblog)
|
2016-03-19 19:20:07 +01:00
|
|
|
else
|
2016-12-28 13:21:12 +01:00
|
|
|
NotificationWorker.perform_async(reblog.stream_entry.id, reblog.reblog.account_id)
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-02-24 18:50:16 +01:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def send_interaction_service
|
|
|
|
@send_interaction_service ||= SendInteractionService.new
|
|
|
|
end
|
|
|
|
end
|