闭社主体 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.

13 lines
574 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. subscription = Subscription.where(account: account, callback_url: callback).first_or_create!(account: account, callback_url: callback)
  7. Pubsubhubbub::ConfirmationWorker.perform_async(subscription.id, 'subscribe', secret, lease_seconds)
  8. ['', 202]
  9. end
  10. end