chinwagsocial/app/services/reblog_service.rb

31 lines
1 KiB
Ruby
Raw Normal View History

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