认知 / 支付um_braintree
Payum Braintree支付模块
1.0.2
2021-03-21 14:55 UTC
Requires
- braintree/braintree_php: ^5.2
- payum/core: ^1.5
Requires (Dev)
- payum/core: ^1.5
- php-http/guzzle6-adapter: ^1.0
This package is auto-updated.
Last update: 2024-09-21 22:48:47 UTC
README
通过Braintree购买的Payum扩展
安装和使用
要安装,使用composer最为方便
composer require cognito/payum_braintree
构建配置
<?php use Payum\Core\PayumBuilder; use Payum\Core\GatewayFactoryInterface; $defaultConfig = []; $payum = (new PayumBuilder) ->addGatewayFactory('braintree', function(array $config, GatewayFactoryInterface $coreGatewayFactory) { return new \Cognito\PayumBraintree\BraintreeGatewayFactory($config, $coreGatewayFactory); }) ->addGateway('braintree', [ 'factory' => 'braintree', 'merchantId' => 'Your merchant Id', 'publicKey' => 'Your Public Key', 'privateKey' => 'Your Private Key', 'sandbox' => true, ]) ->getPayum() ;
请求支付
<?php use Payum\Core\Request\Capture; $storage = $payum->getStorage(\Payum\Core\Model\Payment::class); $request = [ 'invoice_id' => 100, ]; $payment = $storage->create(); $payment->setNumber(uniqid()); $payment->setCurrencyCode($currency); $payment->setTotalAmount(100); // Total cents $payment->setDescription(substr($description, 0, 45)); $payment->setDetails([ 'local' => [ 'email' => $email, // Used for the customer to be able to save payment details ], ]); $storage->setInternalDetails($payment, $request); $captureToken = $payum->getTokenFactory()->createCaptureToken('braintree', $payment, 'done.php'); $url = $captureToken->getTargetUrl(); header("Location: " . $url); die();
检查是否成功
<?php /** @var \Payum\Core\Model\Token $token */ $token = $payum->getHttpRequestVerifier()->verify($request); $gateway = $payum->getGateway($token->getGatewayName()); /** @var \Payum\Core\Storage\IdentityInterface $identity **/ $identity = $token->getDetails(); $model = $payum->getStorage($identity->getClass())->find($identity); $gateway->execute($status = new GetHumanStatus($model)); /** @var \Payum\Core\Request\GetHumanStatus $status */ // using shortcut if ($status->isNew() || $status->isCaptured() || $status->isAuthorized()) { // success } elseif ($status->isPending()) { // most likely success, but you have to wait for a push notification. } elseif ($status->isFailed() || $status->isCanceled()) { // the payment has failed or user canceled it. }
许可证
Payum Braintree遵循MIT许可证发布。