Sha256: 10e17ee33b9435d681bf5eeffbc10d27f565fb58c87cb894ecc93aad5091b5fc
Contents?: true
Size: 1019 Bytes
Versions: 4
Compression:
Stored size: 1019 Bytes
Contents
# frozen_string_literal: true module ShopifyApp module AppProxyVerification extend ActiveSupport::Concern included do skip_before_action :verify_authenticity_token, raise: false before_action :verify_proxy_request end def verify_proxy_request return head(:forbidden) unless query_string_valid?(request.query_string) end private def query_string_valid?(query_string) query_hash = Rack::Utils.parse_query(query_string) signature = query_hash.delete('signature') return false if signature.nil? ActiveSupport::SecurityUtils.secure_compare( calculated_signature(query_hash), signature ) end def calculated_signature(query_hash_without_signature) sorted_params = query_hash_without_signature.collect { |k, v| "#{k}=#{Array(v).join(',')}" }.sort.join OpenSSL::HMAC.hexdigest( OpenSSL::Digest.new('sha256'), ShopifyApp.configuration.secret, sorted_params ) end end end
Version data entries
4 entries across 4 versions & 1 rubygems