Sha256: d51fe9d4b6a002e466e1f0b3e01065b47d7f16373dad7338fefe4f2b2ebe6642

Contents?: true

Size: 1.67 KB

Versions: 40

Compression:

Stored size: 1.67 KB

Contents

module Braintree
  class WebhookNotificationGateway # :nodoc:
    def initialize(gateway)
      @gateway = gateway
      @config = gateway.config
      @config.assert_has_access_token_or_keys
    end

    def parse(signature_string, payload)
      if payload =~ /[^A-Za-z0-9+=\/\n]/
        raise InvalidSignature, "payload contains illegal characters"
      end
      _verify_signature(signature_string, payload)
      attributes = Xml.hash_from_xml(Base64.decode64(payload))
      WebhookNotification._new(@gateway, attributes[:notification])
    end

    def verify(challenge)
      raise InvalidChallenge, 'challenge contains non-hex characters' unless challenge =~ /\A[a-f0-9]{20,32}\z/
      digest = Braintree::Digest.hexdigest(@config.private_key, challenge)
      "#{@config.public_key}|#{digest}"
    end

    def _matching_signature_pair(signature_string)
      signature_pairs = signature_string.split("&")
      valid_pairs = signature_pairs.select { |pair| pair.include?("|") }.map { |pair| pair.split("|") }

      valid_pairs.detect do |public_key, signature|
        public_key == @config.public_key
      end
    end

    def _verify_signature(signature_string, payload)
      public_key, signature = _matching_signature_pair(signature_string)
      raise InvalidSignature, 'no matching public key' if public_key.nil?

      signature_matches = [payload, payload + "\n"].any? do |payload|
        payload_signature = Braintree::Digest.hexdigest(@config.private_key, payload)
        Braintree::Digest.secure_compare(signature, payload_signature)
      end
      raise InvalidSignature, 'signature does not match payload - one has been modified' unless signature_matches
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
braintree-2.82.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.81.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.80.1 lib/braintree/webhook_notification_gateway.rb
braintree-2.80.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.79.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.78.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.77.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.76.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.75.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.74.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.73.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.72.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.71.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.70.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.69.1 lib/braintree/webhook_notification_gateway.rb
braintree-2.69.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.68.2 lib/braintree/webhook_notification_gateway.rb
braintree-2.68.1 lib/braintree/webhook_notification_gateway.rb
braintree-2.68.0 lib/braintree/webhook_notification_gateway.rb
braintree-2.67.0 lib/braintree/webhook_notification_gateway.rb