Sha256: a0a343336ff99e3a897492b7106ba084b9e4fe14b1b1d5ccb1ba68988ffb866a
Contents?: true
Size: 810 Bytes
Versions: 1
Compression:
Stored size: 810 Bytes
Contents
module ShopifyApp module WebhookVerification extend ActiveSupport::Concern included do skip_before_action :verify_authenticity_token, raise: false before_action :verify_request end private def verify_request data = request.raw_post return head :unauthorized unless hmac_valid?(data) end def hmac_valid?(data) secret = ShopifyApp.configuration.secret digest = OpenSSL::Digest.new('sha256') ActiveSupport::SecurityUtils.variable_size_secure_compare( shopify_hmac, Base64.encode64(OpenSSL::HMAC.digest(digest, secret, data)).strip ) end def shop_domain request.headers['HTTP_X_SHOPIFY_SHOP_DOMAIN'] end def shopify_hmac request.headers['HTTP_X_SHOPIFY_HMAC_SHA256'] end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shopify_app-7.0.11 | lib/shopify_app/webhook_verification.rb |