Stripe 支付网关使用 PayumBundle 创建定期支付

Stripe payment gateway create recurring payment using PayumBundle

我正在使用 PayumBundle 将 Stripe 支付网关集成到我的 symfony2 应用程序中。 我可以创建一个成功的直接付款,但是我不能创建一个经常性的。由于捆绑包的文档非常差。

我的问题是如何使用 PayumBundle 或任何类似软件为客户实施定期付款。

我设法在 PayumBundle 和 Stripe-php 之间做了一个小的组合,如下所示:

/**
 * @Extra\Route(
 *   "/prepare_checkout",
 *   name="mycom_stripe_prepare_checkout"
 * )
 *
 * @Extra\Template("MYCOMStripeBundle:PurchaseExamples:prepareCheckout.html.twig")
 */
public function prepareCheckoutAction(Request $request) {
    $paymentName = 'subscribe_guardia_via_stripe_checkout';

    $storage = $this->getPayum()->getStorage('MYCOM\PaymentBundle\Entity\PaymentDetails');

    /** @var $details PaymentDetails */
    $details = $storage->create();
    $details["amount"] = 85 * 100;
    $details["currency"] = 'USD';
    $details["description"] = "Bi-Annual Subs.";

    if ($request->isMethod('POST') && $request->request->get('stripeToken')) {
        // create a new customer and assign a plan for him
        \Stripe::setApiKey($this->container->getParameter('stripe.secret_key'));
        $customer = \Stripe_Customer::create([
                    'description' => 'amr samy',
                    'source' => $request->request->get('stripeToken'),
                    'plan' => 'C1',
        ]);

        $details["customer"] = $customer->id;
        $storage->update($details); // presist the customer and the payment


        $captureToken = $this->getTokenFactory()->createToken(
                $paymentName, $details, 'mycom_subscription_create_stripe_recurring_payment'
        );

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

    return array(
        'publishable_key' => $this->container->getParameter('stripe.publishable_key'),
        'model' => $details,
        'paymentName' => $paymentName
    );
}

我面临的唯一问题是如果使用 createCaptureToken() 它会再次显示结帐付款表单,因此我改用 createToken(),但是我面临另一个问题,即交易状态是新的。