我正在尝试将payum支付包整合到symfony 2.8
中我的最终目标是处理paypal订阅应用程序。
我按照here描述完成了第一次设置。
但是我不知道如何测试或从哪里开始。
有public function prepareAction()
,我想起初我应该访问这里。
所以我放入了我的route.yml
acme_payment:
resource: "@AcmePaymentBundle/Resources/config/routing.yml"
prefix: /payment
和我的Acme / PaymentBundle / Resources / config.routing.yml
acme_payment_prepare:
path: /prepare
defaults: { _controller: AcmePaymentBundle:Payment:prepare }
然后尝试访问,
http://localhost/myapp/web/app_dev.php/payment/prepare
然而,它显示了这样的错误。
Unable to generate a URL for the named route "done" as such route does not exist.
我确信这与我的PaymentController.php
有关我认为这个错误出现在PaymentController.php中,但我该如何解决?
'done' // the route to redirect after capture
<?php
namespace Acme\PaymentBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Payum\Core\Request\GetHumanStatus;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
class PaymentController extends Controller
{
public function prepareAction()
{
$gatewayName = 'offline';
$storage = $this->get('payum')->getStorage('Acme\PaymentBundle\Entity\Payment');
$payment = $storage->create();
$payment->setNumber(uniqid());
$payment->setCurrencyCode('EUR');
$payment->setTotalAmount(123); // 1.23 EUR
$payment->setDescription('A description');
$payment->setClientId('anId');
$payment->setClientEmail('foo@example.com');
$storage->update($payment);
$captureToken = $this->get('payum')->getTokenFactory()->createCaptureToken(
$gatewayName,
$payment,
'done' // the route to redirect after capture
);
return $this->redirect($captureToken->getTargetUrl());
}
public function doneAction(Request $request)
{
$token = $this->get('payum')->getHttpRequestVerifier()->verify($request);
$gateway = $this->get('payum')->getGateway($token->getGatewayName());
// you can invalidate the token. The url could not be requested any more.
// $this->get('payum')->getHttpRequestVerifier()->invalidate($token);
// Once you have token you can get the model from the storage directly.
//$identity = $token->getDetails();
//$payment = $this->get('payum')->getStorage($identity->getClass())->find($identity);
// or Payum can fetch the model for you while executing a request (Preferred).
$gateway->execute($status = new GetHumanStatus($token));
$payment = $status->getFirstModel();
// you have order and payment status
// so you can do whatever you want for example you can just print status and payment details.
return new JsonResponse(array(
'status' => $status->getValue(),
'payment' => array(
'total_amount' => $payment->getTotalAmount(),
'currency_code' => $payment->getCurrencyCode(),
'details' => $payment->getDetails(),
),
));
}
}
}
答案 0 :(得分:1)
在Acme/PaymentBundle/Resources/config.routing.yml
内,您还需要定义done
路线。
因此路由配置可能如下所示:
acme_payment_prepare:
path: /prepare
defaults: { _controller: AcmePaymentBundle:Payment:prepare }
acme_payment_done:
path: /done
defaults: { _controller: AcmePaymentBundle:Payment:done }
然后在prepareAction
中的PaymentController.php
方法内更改完成路线:
$captureToken = $this->get('payum')->getTokenFactory()->createCaptureToken(
$gatewayName,
$payment,
'acme_payment_done' // NOTE: I replaced `done` with `acme_payment_done`
);
我从未使用过payum套装,但我希望有所帮助。