mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:43:19 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
23 lines
495 B
Ruby
23 lines
495 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Jobs
|
|
|
|
class ConfirmSnsSubscription < Jobs::Base
|
|
sidekiq_options retry: false
|
|
|
|
def execute(args)
|
|
return unless raw = args[:raw].presence
|
|
return unless json = args[:json].presence
|
|
return unless subscribe_url = json["SubscribeURL"].presence
|
|
|
|
require "aws-sdk-sns"
|
|
return unless Aws::SNS::MessageVerifier.new.authentic?(raw)
|
|
|
|
# confirm subscription by visiting the URL
|
|
open(subscribe_url)
|
|
end
|
|
|
|
end
|
|
|
|
end
|