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