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