Code Monkey home page Code Monkey logo

commerce_billing's Introduction

Commerce.Billing

Payment processing library for Elixir. Based on Shopify's ActiveMerchant ruby gem

Supported Gateways

  • Bogus
  • Stripe

Advantages of Elixir

  • Fault tolerant: Each worker is supervised, so a new worker is started in the event of errors. Network errors are caught and payment is retried (not yet working).
  • Distributed: Run workers on different machines.
  • Scalable: Run multiple workers and adjust number of workers as needed.
  • Throughput: Takes advantage of all cores. For example on my laptop with 4 cores (2 threads per core), I can do 100 authorizations with Stripe in 10 seconds. Thats 864,000 transactions per day. ebay does 1.4M/day.
  • Hot code swap: Update code while the system is running

Card processing example

alias Commerce.Billing
alias Commerce.Billing.Response

config = %{credentials: {"sk_test_BQokikJOvBiI2HlWgH4olfQ2", ""},
           default_currency: "USD"}

Billing.Worker.start_link(Billing.Gateways.Stripe, config, name: :my_gateway)

card = %Billing.CreditCard{name: "John Smith",
                            number: "4242424242424242",
                            expiration: {2017, 12},
                            cvc: "123"}

address = %Billing.Address{street1: "123 Main",
                            city: "New York",
                            region: "NY",
                            country: "US",
                            postal_code: "11111"}

case Billing.authorize(:my_gateway, 199.95, card, billing_address: address,
                                                   description: "Amazing T-Shirt") do
  {:ok, %Response{authorization: authorization}} ->
    IO.puts("Payment authorized #{authorization}")

  {:error, %Response{code: :declined, reason: reason}} ->
    IO.puts("Payment declined #{reason}")

  {:error, %Response{code: error}} ->
    IO.puts("Payment error #{error}")
end

Road Map

  • Support multiple gateways (PayPal, Stripe, Authorize.net, Braintree etc..)
  • Support gateways that bill directly and those that use html integrations.
  • Support recurring billing
  • Each gateway is hosted in a worker process and supervised.
  • Workers can be pooled. (using poolboy)
  • Workers can be spread on multiple nodes
  • The gateway is selected by first calling the "Gateway Factory" process. The "Gateway Factory" decides which gateway to use. Usually it will just be one type based on configuration setting in mix.exs (i.e. Stripe), but the Factory can be replaced with something fancier. It will enable scenarios like:
    • Use one gateway for visa another for mastercard
    • Use primary gateway (i.e PayPal), but when PayPal is erroring switch to secondary/backup gateway (i.e. Authorize.net)
    • Currency specific gateway, i.e. use one gateway type for USD another for CAD
  • Retry on network failure

@joshnuss is a freelance software consultant. [email protected]

commerce_billing's People

Contributors

joshnuss avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.