Sha256: 9325d20377b35dfcfd39e90e5b633d5c54c5f19eae378858c9aa9d4ffccca6c1

Contents?: true

Size: 1.21 KB

Versions: 13

Compression:

Stored size: 1.21 KB

Contents

module DiscoApp
  class WebhooksController < ActionController::Base

    before_action :verify_webhook

    def process_webhook
      # Get the topic and domain for this webhook.
      topic = request.headers['HTTP_X_SHOPIFY_TOPIC']
      domain = request.headers['HTTP_X_SHOPIFY_SHOP_DOMAIN']

      # Ensure a domain was provided in the headers.
      unless domain
        head :bad_request
      end

      # Try to find a matching background job task for the given topic using class name.
      job_class = DiscoApp::WebhookService.find_job_class(topic)

      # Return bad request if we couldn't match a job class.
      unless job_class.present?
        head :bad_request
      end

      # Decode the body data and enqueue the appropriate job.
      data = ActiveSupport::JSON::decode(request.body.read).with_indifferent_access
      job_class.perform_later(domain, data)

      render nothing: true
    end

    private

      # Verify a webhook request.
      def verify_webhook
        unless DiscoApp::WebhookService.is_valid_hmac?(request.body.read.to_s, ShopifyApp.configuration.secret, request.headers['HTTP_X_SHOPIFY_HMAC_SHA256'])
          head :unauthorized
        end
        request.body.rewind
      end

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
disco_app-0.6.4 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.6.5 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.6.6 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.6.7 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.6.8 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.6.9 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.7.0 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.7.1 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.7.2 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.8.0 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.8.1 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.8.2 app/controllers/disco_app/webhooks_controller.rb
disco_app-0.8.3 app/controllers/disco_app/webhooks_controller.rb