Symfony2 Payum Bundle - 不支持请求SecuredCaptureRequest {model:Payment}

时间:2014-06-06 14:01:23

标签: symfony payum

我刚刚安装并配置了payum捆绑包。我有例外:

不支持申请SecuredCaptureRequest {型号:付款}。

在PaymentController的preparePaypalExpressCheckoutPaymentAction中,重定向后出现

Payum配置:

payum:
    contexts:
        payment_with_paypal_express:
            storages:
                Service\Bundle\PaymentBundle\Entity\Payment:
                    doctrine:
                        driver: orm
            paypal_express_checkout_nvp:
                api:
                    options:
                        username:  %paypal.express.username%
                        password:  %paypal.express.password%
                        signature: %paypal.express.signature%
                        sandbox:   %paypal.express.sandbox%
    security:
        token_storage:
            Service\Bundle\PaymentBundle\Entity\PayumSecurityToken:
                doctrine:
                    driver: orm

付款管理员:

class PaymentController extends HelperController
{
    public function preparePaypalExpressCheckoutPaymentAction()
    {
        $paymentName = 'payment_with_paypal_express';

        $storage = $this->get('payum')->getStorageForClass(
            'Service\Bundle\PaymentBundle\Entity\Payment',
            $paymentName
        );
        # ---- Set payment details below

        $package = $this->getPackageRepository()->loadOneByAliasAndDuration(Package::TYPE_SUBSCRIPTION,1);
        $accountPackages = new ArrayCollection();
        $accountPackages->add((new AccountPackage())->setPackage($package)->setQuantity(1));

        /**
         * @var Payment $payment
         */
        $payment = $storage->createModel();
        # Account must be set first, packages must be set before paid attribute
        $payment->setAccount($this->getAccount())
                ->setPackages($accountPackages)
                ->setPaid(false);

        # ---- Set payment details above

        $storage->updateModel($payment);

        $captureToken = $this->get('payum.security.token_factory')->createCaptureToken(
            $paymentName,
            $payment,
            'service_payment_done' // the route to redirect after capture;
        );

        $payment->setReturnUrl($captureToken->getTargetUrl())
                ->setCancelUrl($captureToken->getTargetUrl());

        $storage->updateModel($payment);

        return $this->redirect($captureToken->getTargetUrl());
    }

    public function paymentDoneAction(Request $request)
    {
        $token = $this->get('payum.security.http_request_verifier')->verify($request);

        $payment = $this->get('payum')->getPayment($token->getPaymentName());

        # $paymentDetails = $token->getDetails();

        $status = new BinaryMaskStatusRequest($token);

        $payment->execute($status);

        if ($status->isSuccess()) {
            $this->getUser()->addCredits(100);
            $this->get('session')->getFlashBag()->set(
                'notice',
                'Payment success. Credits were added'
            );
        }
        else if ($status->isPending()) {
            $this->get('session')->getFlashBag()->set(
                'notice',
                'Payment is still pending. Credits were not added'
            );
        }
        else {
            $this->get('session')->getFlashBag()->set('error', 'Payment failed');
        }

        return $this->redirect('service_home');
    }
}

有人有任何提示我做错了吗?在官方文档中,付款细节显示为一个对象/数组(有点令人困惑),但在我的控制器中,我把它作为一个对象,有什么想法吗?

1 个答案:

答案 0 :(得分:4)

我解决了这个问题。忘了用Payme从ArrayObject扩展我的付款细节:)