Skip to content

Instantly share code, notes, and snippets.

@ryansch
Created September 28, 2010 15:03
Show Gist options
  • Star 23 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save ryansch/601151 to your computer and use it in GitHub Desktop.
Save ryansch/601151 to your computer and use it in GitHub Desktop.
Rails Controller for Chargify Webhooks
require 'md5'
class Chargify::HooksController < ApplicationController
protect_from_forgery :except => :dispatch
before_filter :verify, :only => :dispatch
EVENTS = %w[ test signup_success signup_failure renewal_success renewal_failure payment_success payment_failure billing_date_change subscription_state_change subscription_product_change ].freeze
def dispatch
event = params[:event]
unless EVENTS.include? event
render :nothing, :status => 404 and return
end
begin
convert_payload
self.send event
rescue Exception => e
notify_hoptoad(e) #If you use hoptoad...
render :nothing, :status => 422 and return
end
end
def test
Rails.logger.debug "Chargify Webhook test!"
render :nothing, :status => 200
end
def signup_success
render :nothing, :status => 200
end
def signup_failure
render :nothing, :status => 200
end
def renewal_success
render :nothing, :status => 200
end
def renewal_failure
render :nothing, :status => 200
end
def payment_success
render :nothing, :status => 200
end
def payment_failure
render :nothing, :status => 200
end
def billing_date_change
render :nothing, :status => 200
end
def subscription_state_change
render :nothing, :status => 200
end
def subscription_product_change
render :nothing, :status => 200
end
protected
def verify
if params[:signature].nil?
params[:signature] = request.headers["HTTP_X_CHARGIFY_WEBHOOK_SIGNATURE"]
end
unless MD5::hexdigest(CHARGIFY_CONFIG['subdomain_shared_key'] + request.raw_post) == params[:signature]
render :nothing, :status => :forbidden
end
end
def convert_payload
if params[:payload].has_key? :transaction
@transaction = Chargify::Transaction.new params[:payload][:transaction]
end
if params[:payload].has_key? :subscription
@subscription = Chargify::Subscription.new params[:payload][:subscription]
end
end
end
# route
#map.chargify_hooks '/chargify/hooks', :controller => 'chargify/hooks', :action => "dispatch", :conditions => { :method => :post }
@joshuasiler
Copy link

Very useful - thanks for posting this.

@dan987
Copy link

dan987 commented Jul 27, 2015

Yes, Thank you! Routes?

@tylerlong
Copy link

@dan987 Route is at the bottom, commented out.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment