cordova-plugin-payhere
v0.0.10
Published
Cordova plugin to use PayHere mobile SDK in ionic projects
Downloads
8
Maintainers
Readme
Ionic Cordova Native Plugin for PayHere Payment Gateway
This plugin can be used to add native behaviour of PayHere mobile SDK into your Ionic cordova project. Plugin supports two platforms Android & IOS
Installation
Plugin
Add the plugin and type definitions to your project
cordova plugin add [email protected]
npm install [email protected] --save
It is also possible to install via repo url directly ( unstable )
cordova plugin add https://github.com/nipuna21018/cordova-plugin-payhere.git
CocoaPods
Note: This is only if you need plugin to support ios platform
CocoaPods is a dependency manager used in ios projects. We need to add PayHere's native ios SDK dependancy to our project.
You can install CocoaPods with the following command, ignore if CocoaPods already installed on your computer
$ gem install cocoapods
Follow these teps to payhereSDK
into your ios project
- Go to platform/ios folder in your ionic project
- Open
Podfile
insideios
folder. IfPodfile
not available. Simply run the commandpod init
on that folder - Now you need to add two line to the pod file
use_frameworks!
&pod 'payHereSDK' , '2.0.0'
-- examplepodfile
platform :ios, '11.0'
use_frameworks!
target '<your project name>' do
project '<your project name>.xcodeproj'
pod 'payHereSDK', '2.0.0'
end
- Now run following command to install all dependancies
$ pod install
- That's all. Now all dependencies are installed on your ios project
Usage
Add the plugin to app's provider list
import { PayHere } from "types-payhere/ngx";
@NgModule({
imports: [ ... ],
declarations: [ ... ],
providers: [..., PayHere],
})
export class AppModule {}
In your page
Checkout Payment Request:
import { PayHere, CheckoutRequest, Currency } from "types-payhere/ngx";
constructor(private payhere: PayHere) { }
...
const checkoutRequest: CheckoutRequest = {
sandboxEnabled:true, // default is false
merchantId: "11111",
merchantSecret: "<Add your app at Settings > Domains & Credentials, to get this>",
notifyURL: "http://sample.com/notify",
amount: 100.00,
currency: Currency.LKR,
orderId: "123",
itemsDescription: "Item Desc",
custom1: "",
custom2: "",
customer: {
firstName: "Nipuna",
lastName: "Harshana",
email: "[email protected]",
phone: "0712345678",
},
billing: {
address: "No 127, Street name",
city: "Colombo",
country: "Sri Lanka",
},
shipping: {
address: "Park Street",
city: "Colombo",
country: "Sri Lanka",
},
items: [
{
id: "1",
name: "My first item name",
quantity: 1,
amount: 10.0,
},
{
id: "2",
name: "My second item name",
quantity: 1,
amount: 20.0,
},
],
}
this.payhere.checkout(checkoutRequest).then((response) => {
// handle response
console.log(JSON.parse(response));
}, (err) => {
// Handle error
console.log(JSON.parse(err));
});
PreAproval Payment Request:
import { PayHere, PreApproveRequest, Currency } from "types-payhere/ngx";
constructor(private payhere: PayHere) { }
...
const preApproveRequest: PreApproveRequest = {
sandboxEnabled:true, // default is false
merchantSecret: "<Add your app at Settings > Domains & Credentials, to get this>",
notifyURL: "http://sample.com/notify",
merchantId: "11111",
currency: Currency.LKR,
orderId: "123",
itemsDescription: "Desc",
custom1: "",
custom2: "",
customer: {
firstName: "Nipuna",
lastName: "Harshana",
email: "[email protected]",
phone: "0712345678",
},
billing: {
address: "No 127, Street name",
city: "Colombo",
country: "Sri Lanka",
},
items: [],
}
this.payhere.preApprove(preApproveRequest).then((response) => {
// handle response
}, (err) => {
// Handle error
});
Recurring Payment Request:
not supported yet
PayHere API & SDK reference
See Android SDK, iOS SDK
Todos
- Add support for Recurring Payment Request
- Add browser support
License
MIT