@sourceloop/payment-service / Exports
@sourceloop/payment-service¶
Overview¶
A Loopback Microservice primarily used for payment implementation to charge the payments for any client application.
- Users can seamlessly integrate PayPal for payment transactions.
- The microservice supports Stripe as a preferred payment gateway option.
- Razorpay integration is also available for users seeking diverse payment methods.
Installation¶
Usage¶
- Create a new Loopback4 Application (If you don't have one already)
lb4 testapp
- Install the in mail service
npm i @sourceloop/payment-service
- Set the environment variables.
- Run the migrations.
- Add the
PaymentServiceComponent
to your Loopback4 Application (inapplication.ts
). - Set up a Loopback4 Datasource with
dataSourceName
property set toPaymentDatasourceName
. You can see an example datasource here. - Bind any of the custom providers you need.
- Using Paypal payment Gateway
Bind the PayPalHelper and PayPalConfig as shown below
-
Using Stripe payment Gateway Bind the StripeHelper and Config as shown below
-
Using RazorPay payment Gateway Bind the RazorPayHelper and RazorPayConfig as shown below
-
Using with Sequelize
This service supports Sequelize as the underlying ORM using @loopback/sequelize extension. And in order to use it, you'll need to do following changes.
-
To use Sequelize in your application, add following to application.ts:
- Use the
SequelizeDataSource
in your datasource as the parent class. Refer this for more.
-
- Start the application
npm start
Setting up a DataSource
¶
Here is a sample Implementation DataSource
implementation using environment variables and PostgreSQL as the data source.
Migration¶
The migrations required for this service are processed during the installation automatically if you set the PAYMENT_MIGRATION
or SOURCELOOP_MIGRATION
env variable. The migrations use db-migrate
with db-migrate-pg
driver for migrations, so you will have to install these packages to use auto-migration. Please note that if you are using some pre-existing migrations or databases, they may be affected. In such a scenario, it is advised that you copy the migration files in your project root, using the PAYMENT_MIGRATION_COPY
or SOURCELOOP_MIGRATION_COPY
env variables. You can customize or cherry-pick the migrations in the copied files according to your specific requirements and then apply them to the DB.
Additionally, there is now an option to choose between SQL migration or PostgreSQL migration. NOTE : For @sourceloop/cli users, this choice can be specified during the scaffolding process by selecting the "type of datasource" option.
Database Schema¶
Setting Environment Variables¶
Do not forget to set Environment variables. The examples below show a common configuration for a PostgreSQL Database running locally.
Name | Required | Default Value | Description |
---|---|---|---|
NODE_ENV |
Y | Node environment value, i.e. dev , test , prod |
|
LOG_LEVEL |
Y | Log level value, i.e. error , warn , info , verbose , debug |
|
HOST |
Y | Host for the service to run under, i.e. 0.0.0.0 |
|
PORT |
Y | 3000 |
Port for the service to listen on. |
DB_HOST |
Y | Hostname for the database server. | |
DB_PORT |
Y | Port for the database server. | |
DB_USER |
Y | User for the database. | |
DB_PASSWORD |
Y | Password for the database user. | |
DB_DATABASE |
Y | Database to connect to on the database server. | |
DB_SCHEMA |
Y | public |
Database schema used for the data source. In PostgreSQL, this will be public unless a schema is made explicitly for the service. |
JWT_SECRET |
Y | Symmetric signing key of the JWT token. | |
JWT_ISSUER |
Y | Issuer of the JWT token. | |
### Providers |
You can find documentation for some of the providers available in this service here
API Documentation¶
Visit the OpenAPI spec docs
Common Headers¶
Authorization: Bearer Content-Type: application/json
in the response and in request if the API method is NOT GET
Common Request path Parameters¶
{version}: Defines the API Version
Common Responses¶
200: Successful Response. Response body varies w.r.t API 401: Unauthorized: The JWT token is missing or invalid 403: Forbidden : Not allowed to execute the concerned API 404: Entity Not Found 400: Bad Request (Error message varies w.r.t API) 201: No content: Empty Response
PayPal Payment Integration¶
Sign up for payPal account at https://www.paypal.com/signin login to the developer section and create sandbox accounts copy the credentials to the sandbox account and use them to develop payment-service
Order creation , capture and refund is supported right now.
API Details¶
POST /payment-gateways¶
Create a payment gateway.
POST /place-order-and-pay¶
Create an order and initiate transaction for the selected payment gateway, this will create order and initiate payment process.
POST /orders¶
Creating orders manually.
GET /transactions/orderid/{id}¶
Pass order id in {id} for manually created orders or retry the payment in case of failure.
POST /transactions/refund/{id}¶
Pass transactions ID in {id} to initiate a refund.
GET /orders¶
Get a list of all orders.
GET /transactions¶
Get a list of all transactions.
GET /transactions/{id}¶
Get details of a particular transaction.
GET /orders/{id}¶
Get details of a particular order.
POST /templates¶
Create a template to overwrite the existing default Gateway Templates if needed.