闭社主体 forked from https://github.com/tootsuite/mastodon
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.

14 lines
703 B

  1. # frozen_string_literal: true
  2. class Pubsubhubbub::SubscribeService < BaseService
  3. def call(account, callback, secret, lease_seconds)
  4. return ['Invalid topic URL', 422] if account.nil?
  5. return ['Invalid callback URL', 422] unless !callback.blank? && callback =~ /\A#{URI.regexp(%w(http https))}\z/
  6. return ['Callback URL not allowed', 403] if DomainBlock.blocked?(Addressable::URI.parse(callback).normalize.host)
  7. subscription = Subscription.where(account: account, callback_url: callback).first_or_create!(account: account, callback_url: callback)
  8. Pubsubhubbub::ConfirmationWorker.perform_async(subscription.id, 'subscribe', secret, lease_seconds)
  9. ['', 202]
  10. end
  11. end