capitual/cappay-php-sdk
Composer 安装命令:
composer require capitual/cappay-php-sdk
包简介
PHP SDK for CapPay (Capitual Payment Gateway)
README 文档
README
This is CapPay's PHP SDK.
With this SDK you are able to start receiving payments in crypto-currencies in a few minutes!
Logging In
Note that you have to login to the button generator on CapPay Button Generator.
You will also need your merchant ID, that can be found on your Capitual profile.
Installing
You can either download the library or use Composer to install it directly:
composer require capitual/cappay-php-sdk
After it, include the CapPay.php file on your project (or Composer's autoload file) and you are ready to start using CapPay.
Creating a new invoice
In order to send a new invoice to receive a new payment, create a new instance of the Capitual\CapPay class.
$invoice = new \Capitual\CapPay;
Then set your merchant ID.
$invoice->merchant = 1234;
Set the address of your Capitual wallet that will receive the funds for this payment. This is not a crypto-wallet address. This is the address of one of your Capitual wallets. Note that you may choose a wallet of any currency, but if the currency is different from the invoice currency (that we'll set below), an exchange rate will apply. Otherwise, no fees are involved.
$invoice->wallet = 'CAP-XXXXXXXX-XXXXXX-XX';
Now it's time to set the payment currency and value. The value is a string. Always use dots (.) for decimals (do not worry about using the correct amount of decimals if this is not relevant for your use case), and not commas.
The currency may be one of the following:
| Code | Currency |
|---|---|
| BTC | Bitcoin |
| LTC | Litecoin |
| DSH | Dash |
| USD | US Dollar |
| EUR | Euro |
| BRL | Brazilian Real |
$invoice->currency = 'USD'; $invoice->value = '100.00';
Now, set the payee's email address. Note that the invoice will also be sent to his email.
$invoice->payee = 'johndoe@mailinator.com';
If you want, you can also set a human-readable payment description for your customer:
$invoice->description = 'Payment for order 123'; // optional
Optionally set expiration date, as a Unix timestamp (UTC timezone).
$invoice->expires = strtotime("+48 hours"); // optional
IPN: If you want, you can set a public accessible URL that Capitual servers should call once the payment is done. You may include query string variables.
$invoice->ipn = 'https://mysite.com/ipn.php'; // optional
That's all! To create the invoice, just do:
$invoice->create();
After the invoice was created, you may retrieve its ID using:
$invoice_id = $invoice->id; // proceed to save $invoice_id to the database...
You may also get its URL using:
$url = $invoice->url; // or a short link $url = $invoice->getShortLink();
You may redirect or create a link to this URL for your user to be able to pay.
It's also advisable to set a return URL, which your user will be redirected to after the payment (it does not work on the shortlink). To do so, just append a "return_url" query param.
$url = $invoice->url.'?return_url=http://yoursite.com/thanks.php';
Note that the user requesting your return_url does not mean the payment is complete, as crypto transactions require waiting for confirmation time. Delivering the product/service before the confirmation is dangerous and may lead to its loss, as transactions with low fees may never be confirmed. Use IPN (see next article) for checking when the transaction is confirmed.
IPN - Instant Payment Notification
The URL you set as ipn will receive HTTP POST requests (x-www-form-urlencoded) with two variables:
| Variable | Description |
|---|---|
| InvoiceID | The invoice ID (as in $invoice->id) |
| Type | Message type |
The message type may be (notice the case):
| Type | Description |
|---|---|
Received |
The invoice was paid, but not yet confirmed. It's not yet safe to deliver the product/service. |
Paid |
The invoice was paid and confirmed. It's now safe to deliver the product/service. |
Cancelled |
The invoice was cancelled (this can only be done by the invoice sender) |
In a perfect situation, IPN by itself could be enough, but unfortunately we know that the bad guys are trying to break things all the time, and may discover your IPN URL and spoof the request, making your system to think a payment has been done while it hasn't. Therefore, you shall not take IPN requests as a reliable source of truth. Rather, treat it simply as a notification. You should retrieve information about the invoice when you receive a IPN request.
Retrieving information about an invoice
In order to retrieve information about an invoice, simply create a new instance of the class, passing the invoice ID as argument to the constructor:
$invoice = new \Capitual\CapPay('XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX');
Now, you may get every property of the class, just like you've just set it.
echo $invoice->currency; // "USD" echo $invoice->amount; // "100.00"
Note that for security reasons it's not possible to retrieve $invoice->payee using this method. You should store it on your database after creating the invoice. You may retrieve the invoice payee by logging in to your Capitual account, or by implementing the complete Capitual API.
You may get the invoice status using:
echo $invoice->status; // "pending", "paid", "canceled" or "expired"
For the sake of code readability, the invoice status strings are also available as static values:
if ($invoice->status === \Capitual\CapPay::STATUS_PENDING) { // no payment has been received yet } elseif ($invoice->status === \Capitual\CapPay::STATUS_PAID) { // paid and confirmed } elseif ($invoice->status === \Capitual\CapPay::STATUS_CANCELED) { // invoice cancelled by its sender } elseif ($invoice->status === \Capitual\CapPay::STATUS_EXPIRED) { // due date has passed without payment }
capitual/cappay-php-sdk 适用场景与选型建议
capitual/cappay-php-sdk 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17 次下载、GitHub Stars 达 4, 最近一次更新时间为 2019 年 07 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「payment」 「gateway」 「crypto」 「bitcoin」 「cryptocurrencies」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 capitual/cappay-php-sdk 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 capitual/cappay-php-sdk 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 capitual/cappay-php-sdk 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Payyo Gateway for the Omnipay payment processing library
High-level cryptographic primitives and security utilities for Maatify systems including password hashing, reversible encryption, HKDF key derivation, and key rotation.
Client library to send SMS using Comilio SMS Gateway API (https://www.comilio.it)
A simple PHP Cryptography Implementation for the Ark Blockchain.
A simple PHP API client for the Ark Blockchain.
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 3
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-07-29