Blog

Simple Stripe and Firebase subscription and authentication

Simple Stripe and Firebase subscription and authentication
10 Jan 2018 | JavaScript | 0

Simple Stripe and Firebase subscription and authentication

In this post, I am going to show you how you can create a subscription using Stripe and authentication using Firebase.

We will create validate user's credit card and if it is valid, we will create their account on Firebase and then subscribe them to a plan on Stripe.

What is Stripe

Stripe is an online payment processing for internet businesses. Stripe is a suite of payment APIs that powers commerce for businesses of all sizes. Stripe has a simple fee structure similar to PayPal for incoming transactions, currently 2.9% + 30ยข for pay-as-you-go accounts. They also offer enterprise pricing.

For more information, see

What is Firebase

Firebase is Google's mobile platform that helps you quickly develop high-quality apps and grow your business. Firebase was developed by Firebase, Inc. in 2011 and was later acquired by Google in 2014.

For move information, see https://firebase.google.com

Requirements

1. Stripe account https://stripe.com
1. Firebase account https://console.firebase.google.com
1. JQuery https://jquery.com
1. Twitter Bootstrap https://getbootstrap.com
1. Composer https://getcomposer.org

## Dependencies
1. Stripe-php https://github.com/stripe/stripe-php

Getting started

  • Setup your Stripe account if you have not already done so and retrieve both your public and secret API keys.
  • Set up your Google Firebase account and enable email/password authentication
  • Retrieve your Firebase configuration settings


{
"apiKey": "your-app-api-key",
"authDomain": "your-app.firebaseapp.com",
"databaseURL": "https://your-app.firebaseio.com",
"projectId": "your-app",
"storageBucket": "your-app.appspot.com",
"messagingSenderId": "your-app-message-id"
}

  • composer require stripe/stripe-php
  • Your HTML page
  • Include JS files (JQuery, Bootstrap and Stripe)
<script src="https://js.stripe.com/v3/"></script>
  • The complete script. Add each code to its respective file. i.e CSS to your `style.css`, js to your `script.js` and `index.html`.
  • Add the following in your register.php
if(isset($_POST['stripeToken'])):
        \Stripe\Stripe::setApiKey("your_stripe_sk_key");
            $token = $_POST['stripeToken'];
            $success = 0;
            $error = '';
            try {
                $customer = \Stripe\Customer::create(array(
                    "description" => $this->input->post('name'),
                    "email" => $_POST['email'],
                    "source" => $token
                ));
                $success = 1;
            } catch (\Stripe\Error\Card $e) {
                $error = $e->getMessage();
            } catch (\Stripe\Error\InvalidRequest $e) {
                $error = $e->getMessage();
            } catch (\Stripe\Error\Authentication $e) {
                $error = $e->getMessage();
            } catch (\Stripe\Error\ApiConnection $e) {
                $error = $e->getMessage();
            } catch (\Stripe\Error\Base $e) {
                $error = $e->getMessage();
            } catch (Exception $e) {
                $error = $e->getMessage();
            }
            if ($success == 1) {
                $success = 0;
                try {
                    \Stripe\Subscription::create(array(
                        "customer" => $customer->id,
                        "items" => array(
                            array(
                                "plan" => $this->input->post('plan'),
                            ),
                        )
                    ));
                    $success = 1;
                } catch (\Stripe\Error\InvalidRequest $e) {
                    $error = $e->getMessage();
                } catch (\Stripe\Error\Authentication $e) {
                    $error = $e->getMessage();
                } catch (\Stripe\Error\ApiConnection $e) {
                    $error = $e->getMessage();
                } catch (\Stripe\Error\Base $e) {
                    $error = $e->getMessage();
                } catch (Exception $e) {
                    $error = $e->getMessage();
                }
            }
            if ($success == 1) {
                $type = 'success';
                $msg = 'You are all set.';
            } else {
                $type = 'error';
                $msg = $error;
            }
            echo json_encode(['type' => $type, 'msg' => $msg]);
        endif;

If you have set up correctly, when you complete and submit the form, you should have a user registered in Firebase and a subscription started in Stripe.

Now the next step (not included here) would be to integrate authentication to your application using Firebase. For more information, see https://firebase.google.com/docs/auth/web/start

If you have comments or need further information, use comments below.

Discussion