0.0
No commit activity in last 3 years
No release in over 3 years
Provides an endpoint for captring data posted via Webhooks in Stripe, and a system for running callbacks in response to desired event types.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

StripeWebhooks

Code Climate Test Coverage Build Status

StripeWebhooks is a Rails engine for dealing with data posted from Stripe via Webhooks.

Goals

  1. Provide an endpoint for capturing POST data from Stripe
  2. Verify authenticity of data by checking against the Stripe API
  3. Run callbacks in response to desired events
  4. Enable an app to "catch up" with missed events in the case of a server outage
  5. Store as little Stripe data locally as possible

Requirements

  • Stripe 1.23 or higher
  • Rails 4.2
  • Ruby 2.2

Installation

First, install and configure the stripe gem according to their instructions. Then:

  1. Add the gem to your Gemfile

     gem 'stripe_webhooks'
    
  2. Run bundle install

  3. Copy the database migrations to your rails project

     bundle exec rake railties:install:migrations
     rake db:migrate
    
  4. Mount the engine in your routes.rb file

     mount StripeWebhooks::Engine => "/stripe_webhooks"
    
  5. Restart your application

Configuration

Once the gem has been installed and configured, log in to your Stripe account and configure the webhook with your application endpoint.

The stripe_webhooks gem will capture and process events using ActiveJob. The default behavior for ActiveJob is to run tasks immediately; It is strongly recommended that you configure a background queue instead. See the ActiveJob docs for a list of available queueing back ends.

Callbacks

Create a callback object using the generator, which accepts a name argument followed by a list of stripe event types.

rails g stripe_webhooks:callback Customer customer.created customer.updated customer.deleted

See the official documentation for a list of possible events.

This will creates a new callback object at app/callbacks/NAME_callback.rb. A callback is a simple ruby object with a handles_events declaration and a #run method.

class CustomerCallback < ApplicationCallback
  handles_events 'customer.created', 'customer.updated', 'customer.deleted'

  def run(event)
    # do useful stuff here!
  end

end