Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aleksandrzhiliaev/omnipay-unitpay
Unitpay gateway for Omnipay payment processing library
https://github.com/aleksandrzhiliaev/omnipay-unitpay
omnipay php unitpay
Last synced: 10 days ago
JSON representation
Unitpay gateway for Omnipay payment processing library
- Host: GitHub
- URL: https://github.com/aleksandrzhiliaev/omnipay-unitpay
- Owner: aleksandrzhiliaev
- License: mit
- Created: 2017-07-01T11:47:56.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T17:27:43.000Z (over 7 years ago)
- Last Synced: 2024-04-22T04:56:20.525Z (7 months ago)
- Topics: omnipay, php, unitpay
- Language: PHP
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# omnipay-unitpay
[![Build Status](https://travis-ci.org/aleksandrzhiliaev/omnipay-unitpay.svg?branch=master)](https://travis-ci.org/aleksandrzhiliaev/omnipay-unitpay)
[![Latest Stable Version](https://poser.pugx.org/aleksandrzhiliaev/omnipay-unitpay/v/stable)](https://packagist.org/packages/aleksandrzhiliaev/omnipay-unitpay)
[![Total Downloads](https://poser.pugx.org/aleksandrzhiliaev/omnipay-unitpay/downloads)](https://packagist.org/packages/aleksandrzhiliaev/omnipay-unitpay)Unitpay gateway for [Omnipay](https://github.com/thephpleague/omnipay) payment processing library.
[Omnipay](https://github.com/omnipay/omnipay) is a framework agnostic, multi-gateway payment
processing library for PHP 5.3+. This package implements Okpay support for Omnipay.## Installation
Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply add it
to your `composer.json` file:```json
{
"require": {
"aleksandrzhiliaev/omnipay-unitpay": "*"
}
}
```And run composer to update your dependencies:
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update## Basic Usage
The following gateways are provided by this package:
* Unitpay.ru
For general usage instructions, please see the main [Omnipay](https://github.com/omnipay/omnipay)
repository. See also the [Unitpay Documentation](http://help.unitpay.ru)## Example
1. Purchase:
```php
$gateway = Omnipay::create('Unitpay');$gateway->setPublicKey('');
$gateway->setSecretKey('');$response = $gateway->purchase([
'amount' => '0.1',
'currency' => 'USD',
'transactionId' => time(),
'description' => 'Order # 123',
])->send();if ($response->isSuccessful()) {
// success
} elseif ($response->isRedirect()) {# Generate form to do payment
$hiddenFields = '';
foreach ($response->getRedirectData() as $key => $value) {
$hiddenFields .= sprintf(
'',
htmlentities($key, ENT_QUOTES, 'UTF-8', false),
htmlentities($value, ENT_QUOTES, 'UTF-8', false)
)."\n";
}$output = ' %2$s ';
$output = sprintf(
$output,
htmlentities($response->getRedirectUrl(), ENT_QUOTES, 'UTF-8', false),
$hiddenFields
);
echo $output;
# End of generating form
} else {
echo $response->getMessage();
}
```
2. Validate webhook
```php
try {
$response = $gateway->completePurchase()->send();
$success = $response->isSuccessful();
if ($success) {
$transactionId = $response->getTransactionId();
$amount = $response->getAmount();
$currency = $response->getCurrency();
// success
}
} catch (\Exception $e) {
// check $e->getMessage()
}
```
3. Do refund
To be done## Support
If you are having general issues with Omnipay, we suggest posting on
[Stack Overflow](http://stackoverflow.com/). Be sure to add the
[omnipay tag](http://stackoverflow.com/questions/tagged/omnipay) so it can be easily found.If you want to keep up to date with release anouncements, discuss ideas for the project,
or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which
you can subscribe to.If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/aleksandrzhiliaev/omnipay-nixmoney/issues).