2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-25 04:50:16 +11:00
|
|
|
class ReblogService < BaseService
|
2017-05-30 02:22:22 +10:00
|
|
|
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)
|
2017-01-25 11:48:46 +11:00
|
|
|
reblogged_status = reblogged_status.reblog if reblogged_status.reblog?
|
|
|
|
|
2017-05-30 23:16:14 +10:00
|
|
|
authorize_with account, reblogged_status, :reblog?
|
2016-12-22 06:00:18 +11:00
|
|
|
|
2017-06-08 23:07:39 +10:00
|
|
|
reblog = account.statuses.find_by(reblog: reblogged_status)
|
|
|
|
|
|
|
|
return reblog unless reblog.nil?
|
|
|
|
|
2016-02-25 04:50:16 +11:00
|
|
|
reblog = account.statuses.create!(reblog: reblogged_status, text: '')
|
2016-11-28 23:36:47 +11:00
|
|
|
|
2016-03-26 23:42:10 +11:00
|
|
|
DistributionWorker.perform_async(reblog.id)
|
2016-11-28 23:36:47 +11:00
|
|
|
Pubsubhubbub::DistributionWorker.perform_async(reblog.stream_entry.id)
|
2016-03-20 05:20:07 +11:00
|
|
|
|
|
|
|
if reblogged_status.local?
|
2016-12-28 23:21:12 +11:00
|
|
|
NotifyService.new.call(reblog.reblog.account, reblog)
|
2016-03-20 05:20:07 +11:00
|
|
|
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)
|
2016-03-20 05:20:07 +11:00
|
|
|
end
|
|
|
|
|
2016-02-25 04:50:16 +11:00
|
|
|
reblog
|
|
|
|
end
|
|
|
|
end
|