wayforpay-ts-integration
v0.1.3
Published
Library for forms to go to the Wayforpay payment page.
Downloads
307
Maintainers
Readme
💳 wayforpay-ts-integration
wayforpay-ts-integration — a TypeScript SDK for integrating with the Wayforpay payment system. The package provides easy access to the Wayforpay API for processing payments, creating payment forms, and retrieving transaction lists.
npm i wayforpay-ts-integration
✨ Features
- [X] Payments
- [ ] One-Click Payment
- [ ] Payment Widget
- [ ] Card Verification (Verify)
- [ ] Invoicing (Invoice)
- [ ] Card Top-Up for Individuals (Account2card)
- [ ] Funds Transfer to Bank Account (Account2account)
- [X] API for Transaction List Retrieval
- [ ] Online Lending
- [ ] Online Taxi Payment
- [ ] Anti-Fraud API
- [ ] Recurring Payments
- [ ] Payment Modules for CMS
- [ ] Store/Partner Creation
- [ ] Payment QR Code Creation
- [ ] PCI DSS
- [ ] Currency Rates Retrieval
🚀 Content
- Creating a Store in Wayforpay
- Installing the Package
- Usage
- Payments
- Retrieving the List of Transactions
🏪 Creating a Store in Wayforpay
Log in to the Wayforpay platform through the official website.
After logging in, go to the Store Settings section in the sidebar. You will see a list of your stores. If there is no store yet, click Create Store. Don't forget to specify the store's domain. If you haven't decided on a domain yet, enter a temporary one.
🔑 Tokens
After creating the store, go to its settings. There, find the Merchant Details section, where you will see the
Merchant login and Merchant secret key. You need to specify these details in the options for the Wayforpay
class or add them to the .env
file in the root directory of your project.
DOMAIN
— the domain of your Wayforpay storeMERCHANT_LOGIN
— the merchant login from the store settingsMERCHANT_SECRET_KEY
— the merchant secret key from the store settings
[!CAUTION] Do not use the methods of this package on the client side. This may compromise your secret key. Use the functionality only on the server side (e.g., in your API).
📦 Installing the Package
After setting up the store, install the npm package on your Node.js server:
npm i wayforpay-ts-integration
🛠 Usage
📝 Payments
To create payments, Wayforpay accepts only simple HTTP requests with the POST method and a unique signature included. You don’t need to worry about how the signature is generated or the specific format required, as this is all handled by this package’s functionality.
Here’s what you need to know:
- The user sends a request to the server.
- The server uses our package to generate an HTML form based on the client’s cart.
- The generated form, with a unique signature, is sent back to the user.
- On the client side, you automatically execute the form for the user.
- After the form is submitted, the user is redirected to the Wayforpay page for order payment.
In the Wayforpay
class, you specify your merchant’s data. The createForm
method generates an HTML form for payment, which should be automatically executed on the client side for the user.
The first parameter is the user’s cart. It should be passed as an array of objects with the TCartElement
type.
| Property | Type | Description |
|-----------------|--------|------------------------------------|
| quantity
| number | Quantity of products in the basket |
| product
| object | Product details |
| product.name
| string | Product name |
| product.price
| number | Product price |
The second parameter is a configuration object, where you can pass any field supported by Wayforpay.
import {Wayforpay, TCartElement} from "wayforpay-ts-integration";
const wayforpay = new Wayforpay({
merchantLogin: 'test_merch_n1',
merchantSecret: 'flk3409refn54t54t*FNJRET',
domain: 'www.market.ua',
});
const form = await wayforpay.createForm(cart as TCartElement[], {
currency: 'UAH'
});
Additional documentation
- https://wiki.wayforpay.com/view/852102
Express.js example
import {Wayforpay, TCartElement, TProduct, TUserCartElement} from "wayforpay-ts-integration";
const products: TProduct[] = [
{id: '1', name: "Example product 1", price: 100},
{id: '2', name: "Example product 2", price: 15},
{id: '3', name: "Example product 3", price: 700},
{id: '4', name: "Example product 4", price: 80},
{id: '5', name: "Example product 5", price: 300},
];
app.post('/api/wayforpay/checkout', async (req: Request, res: Response) => {
const {userCart}: {
userCart: TUserCartElement[];
} = req.body;
if (userCart && userCart.length > 0) {
const cart = userCart.map(item => {
const product = products.find(product => product.id === item.id);
if (product) {
return {
quantity: item.quantity,
product
} as TCartElement;
} else {
console.error(`Product with ID ${item.id} does not exist`);
return null; // Return null for invalid products
}
}).filter(Boolean); // Filter out null values from the array
const wayforpay = new Wayforpay({
merchantLogin: process.env.MERCHANT_LOGIN as string,
merchantSecret: process.env.MERCHANT_SECRET_KEY as string,
domain: process.env.DOMAIN as string,
});
// Creates a form for a request to wayforpay
const form = await wayforpay.createForm(cart as TCartElement[], {
currency: 'UAH',
deliveryList: ["nova", "other"],
});
return res.send(form);
} else {
console.error('No product IDs were specified');
}
});
Next.js example (with app router)
import { TCartElement, TUserCartElement } from "wayforpay-ts-integration";
import {Product} from "@/lib/services/woocommerce-api";
export async function POST(request: Request) {
const {cart: userCart}: {
cart: TUserCartElement[];
} = await request.json();
const cart = await Product.generateCart(userCart);
const wayforpay = new Wayforpay({
merchantLogin: process.env.MERCHANT_LOGIN as string,
merchantSecret: process.env.MERCHANT_SECRET_KEY as string,
domain: process.env.DOMAIN as string,
});
// Creates a form for a request to wayforpay
const form = await wayforpay.createForm(cart as TCartElement[], {
currency: 'UAH',
deliveryList: ["nova", "other"],
});
return new Response(form, {
headers: {
'Content-Type': 'text/html',
},
});
}
📤 Form execution
On the client side, the form needs to be inserted into the DOM and automatically executed. Here is an example of a React component that redirects the client to the payment page upon clicking a button:
import axios from "axios";
function GoToPaymentButton() {
const cart = [
{id: '1', quantity: 1},
{id: '4', quantity: 7},
];
const handleGoToPay = async () => {
// Here is the domain of your server and the route by which the form is received
const response = await axios.post('http://localhost:3000/api/wayforpay/checkout', {
userCart: cart
});
// Gets form's HTML from the backend
const html = await response.data;
// Check if the container already exists, if not, create it
let handlePay = document.getElementById('handlePay');
if (!handlePay) {
handlePay = document.createElement('div');
handlePay.id = 'handlePay';
document.body.appendChild(handlePay);
}
// Add the form's HTML to the container
handlePay.innerHTML = html;
// Find and submit the form
const form = document.getElementById('wayforpayForm') as HTMLFormElement;
if (form) {
form.submit(); // Completes the form
}
};
return <button onClick={handleGoToPay} type="button">Go to payment</button>;
}
📋 Retrieving the List of Transactions
A transaction list request is used to obtain a list of store transactions for a specific period.
The maximum period for which you can receive transactions is 31 days.
Additional documentation
- https://wiki.wayforpay.com/view/1736786
const wayforpay = new Wayforpay({
merchantLogin: 'test_merch_n1',
merchantSecret: 'flk3409refn54t54t*FNJRET',
domain: 'www.market.ua',
});
const response = await wayforpay.getTransactions();
const transactions = response.data;
Author
License
ISC