piesync / billbo

Easy to use billing service for Stripe with VAT support
MIT License
73 stars 3 forks source link

Billbo

Build Status Test Coverage

About

Billbo is an easy to use billing service including VAT support written in Ruby that is designed and built around the Stripe API. It decouples billing functionality from your application's core functionality and centralizes billing and invoicing logic into a stable workflow.

Billbo uses the Stripe invoicing system and adds VAT information/charges following legal regulations. As soon as a Stripe invoice charge succeeds, an internal invoice is created, generated in pdf and emailed to the customer.

It's currently designed to support billing from EU based countries.

Features

How it Works with Stripe

Subscriptions are created through Billbo instead of through the Stripe API directly. When the subscription is being created, Billbo calculated the correct VAT rate that should be applied to this subscription based on the customer metadata. This VAT rate is then passed to Stripe as tax_percent.

When we receive a invoice.payment_succeeded event from Stripe, we finalize and assign an invoice number to the associated invoice in the Billbo database.

Deployment and configuration

The easiest way to get Billbo online to use it for production is Heroku. The deploy-heroku script in the root directory helps you with that. It provisions a Heroku instance with a Postgres database and all the right settings.

The fastest path we can offer you:

Deploy to Heroku

git clone git@github.com:piesync/billbo.git && cd billbo
bundle install
./deploy-heroku [HEROKU_APP_NAME] -s [SECRET_STRIPE_KEY]

The deploy script takes lots of additional options to customize your Billbo instance. Just run ./deploy-heroku to see usage details.

Configure Stripe Webhook

Add a Webhook to Stripe that points to https://HEROKU_APP_NAME.herokuapp.com/hook

Configuration

TK list env vars

Generating invoices

TK CRON JOB

Basic Usage

Billbo works with all different types of Stripe invoicing workflows, the only specifics you need are customer related.

Creating Stripe Customers

Create Stripe customers with the following required metadata.

Example using Ruby (or using Curl):

Stripe::Customer.create(
  card: "tok_14JuLq2nHroS7mLXZ5uxDRqs" # obtained with Stripe.js
  metadata: {
    country_code: 'US', # required - ISO 3166-1 alpha-2 standard
    vat_registered: true, # required
    name: 'John Doe', # optional
    company_name: 'DoeComp', # optional, VIES value if not provided and vat_number is provided
    address: 'Doestreet 1, 1111 Doeville', # optional, VIES value if not provided and vat_number is provided
    vat_number: 'DOE1234', # optional
    accounting_id: '8723648', # optional
    ... # optional extra metadata
  }
)

This data and any extra metadata of your customers will be copied into the metadata of your Stripe invoices. This way you can make your invoices immutable containing all their needed info taken at a certain point in time.

Creating Subscriptions

To use Billbo in the correct way, instead of creating subscriptions using the Stripe API, create your subscriptions using Billbo.

Example using the billbo Ruby Gem:

Billbo.create_subscription(
  plan: 'basic',
  customer: 'cus_4XWKfwBrWLHvf8',
  ... # other Stripe compatible options
)
# => A Stripe::Subscription object

Or using Curl:

curl https://HOST/subscriptions \
   -u X:BILLBO_TOKEN \
   -d plan=large

You can pass all options supported in the Stripe create subscription call. The returned Stripe::Subscription or raised errors are 100% compatible with the Stripe Ruby Gem.

Help and Discussion

If you need help you can contact us by sending a message to: oss@piesync.com.

If you believe you've found a bug, please report it at: https://github.com/piesync/billbo/issues

Contributing to Billbo

Copyright

Copyright (c) 2014 PieSync.