You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.0 KiB

  1. # frozen_string_literal: true
  2. class SendInteractionService < BaseService
  3. # Send an Atom representation of an interaction to a remote Salmon endpoint
  4. # @param [String] Entry XML
  5. # @param [Account] source_account
  6. # @param [Account] target_account
  7. def call(xml, source_account, target_account)
  8. @xml = xml
  9. @source_account = source_account
  10. @target_account = target_account
  11. return if !target_account.ostatus? || block_notification?
  12. delivery = build_request.perform
  13. raise "Delivery failed for #{target_account.salmon_url}: HTTP #{delivery.code}" unless delivery.code > 199 && delivery.code < 300
  14. end
  15. private
  16. def build_request
  17. request = Request.new(:post, @target_account.salmon_url, body: envelope)
  18. request.add_headers('Content-Type' => 'application/magic-envelope+xml')
  19. request
  20. end
  21. def envelope
  22. salmon.pack(@xml, @source_account.keypair)
  23. end
  24. def block_notification?
  25. DomainBlock.blocked?(@target_account.domain)
  26. end
  27. def salmon
  28. @salmon ||= OStatus2::Salmon.new
  29. end
  30. end