mastodon/app/services/reblog_service.rb

29 lines
960 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-24 17:50:16 +00:00
class ReblogService < BaseService
2017-02-11 01:12:05 +00:00
include StreamEntryRenderer
2016-02-24 17:50:16 +00: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)
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
raise Mastodon::NotPermittedError if reblogged_status.private_visibility? || !reblogged_status.permitted?(account)
2016-02-24 17:50:16 +00:00
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
2016-11-28 12:36:47 +00:00
DistributionWorker.perform_async(reblog.id)
2016-11-28 12:36:47 +00:00
Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
if reblogged_status.local?
NotifyService.new.call(reblog.reblog.account, reblog)
else
2017-02-11 01:12:05 +00:00
NotificationWorker.perform_async(stream_entry_to_xml(reblog.stream_entry), account.id, reblog.reblog.account_id)
end
2016-02-24 17:50:16 +00:00
reblog
end
end