2017-02-11 01:12:05 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RejectFollowService < BaseService
|
|
|
|
def call(source_account, target_account)
|
|
|
|
follow_request = FollowRequest.find_by!(account: source_account, target_account: target_account)
|
|
|
|
follow_request.reject!
|
2017-08-12 23:44:41 +01:00
|
|
|
create_notification(follow_request) unless source_account.local?
|
|
|
|
follow_request
|
2017-02-11 23:48:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-08-12 23:44:41 +01:00
|
|
|
def create_notification(follow_request)
|
|
|
|
if follow_request.account.ostatus?
|
|
|
|
NotificationWorker.perform_async(build_xml(follow_request), follow_request.target_account_id, follow_request.account_id)
|
|
|
|
elsif follow_request.account.activitypub?
|
|
|
|
ActivityPub::DeliveryWorker.perform_async(build_json(follow_request), follow_request.target_account_id, follow_request.account.inbox_url)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_json(follow_request)
|
|
|
|
ActiveModelSerializers::SerializableResource.new(
|
|
|
|
follow_request,
|
|
|
|
serializer: ActivityPub::RejectFollowSerializer,
|
|
|
|
adapter: ActivityPub::Adapter
|
|
|
|
).to_json
|
|
|
|
end
|
|
|
|
|
2017-02-11 23:48:53 +00:00
|
|
|
def build_xml(follow_request)
|
2017-07-19 00:37:26 +01:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.reject_follow_request_salmon(follow_request))
|
2017-02-11 01:12:05 +00:00
|
|
|
end
|
|
|
|
end
|