2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-24 11:50:16 -06:00
|
|
|
class ReblogService < BaseService
|
2017-02-10 19:12:05 -06:00
|
|
|
include StreamEntryRenderer
|
|
|
|
|
2016-02-24 11:50:16 -06: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-24 18:48:46 -06:00
|
|
|
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
|
|
|
|
|
2017-03-15 16:52:57 -05:00
|
|
|
raise Mastodon::NotPermittedError if reblogged_status.direct_visibility? || reblogged_status.private_visibility? || !reblogged_status.permitted?(account)
|
2016-12-21 13:00:18 -06:00
|
|
|
|
2016-02-24 11:50:16 -06:00
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
|
2016-11-28 06:36:47 -06:00
|
|
|
|
2016-03-26 07:42:10 -05:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2016-11-28 06:36:47 -06:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
|
2016-03-19 13:20:07 -05:00
|
|
|
|
|
|
|
if reblogged_status.local?
|
2016-12-28 06:21:12 -06:00
|
|
|
NotifyService.new.call(reblog.reblog.account, reblog)
|
2016-03-19 13:20:07 -05:00
|
|
|
else
|
2017-02-10 19:12:05 -06:00
|
|
|
NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), account.id, reblog.reblog.account_id)
|
2016-03-19 13:20:07 -05:00
|
|
|
end
|
|
|
|
|
2016-02-24 11:50:16 -06:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
end
|