2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 18:50:16 +01:00
|
|
|
class ReblogService < BaseService
|
2017-05-29 18:22:22 +02:00
|
|
|
include Authorization
|
2017-02-11 02:12:05 +01:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-02-24 18:50:16 +01:00
|
|
|
# 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)
|
2017-01-25 01:48:46 +01:00
|
|
|
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
|
|
|
|
|
2017-05-30 15:16:14 +02:00
|
|
|
authorize_with account, reblogged_status, :reblog?
|
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
|
2017-02-11 02:12:05 +01:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), account.id, reblog.reblog.account_id)
|
2016-03-19 19:20:07 +01:00
|
|
|
end
|
|
|
|
|
2016-02-24 18:50:16 +01:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
end
|