2016-02-24 12:50:16 -05: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-03-26 08:42:10 -04:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2016-10-05 07:50:21 -04:00
|
|
|
HubPingWorker.perform_async(account.id)
|
2016-03-19 14:20:07 -04:00
|
|
|
|
|
|
|
if reblogged_status.local?
|
2016-10-03 12:49:52 -04:00
|
|
|
NotificationMailer.reblog(reblogged_status, account).deliver_later unless reblogged_status.account.blocking?(account)
|
2016-03-19 14:20:07 -04:00
|
|
|
else
|
2016-03-26 08:42:10 -04:00
|
|
|
NotificationWorker.perform_async(reblog.stream_entry.id, reblogged_status.account_id)
|
2016-03-19 14:20:07 -04:00
|
|
|
end
|
|
|
|
|
2016-02-24 12:50:16 -05:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def send_interaction_service
|
|
|
|
@send_interaction_service ||= SendInteractionService.new
|
|
|
|
end
|
|
|
|
end
|