Laravel 卡更新后收银员重新尝试待处理发票

Laravel Cashier Re-attempt Pending Invoice after Card Updates

我正在使用 Laravel 5.3 和 Cashier。如果客户更新了他们的卡详细信息,我如何检查是否有待处理的发票并要求 Stripe 重新尝试在新卡上收费?目前,我已经在 Stripe 仪表板中设置了尝试设置。但据我了解,如果客户更新了他们的银行卡详细信息,Stripe 不会自动尝试向客户收费,而是等待下一个尝试日期再试一次。这就是为什么我想在客户更新卡后立即手动尝试向客户收取未决发票的费用。我阅读了 Cashier 文档和 Github 页面,但此处未涵盖这种情况。

$user->updateCard($token);
// Next charge customer if there is a pending invoice

有人能帮帮我吗

在测试并与 Stripe 支持人员交谈后,我发现 Laravel 收银台中当前使用的 updateCard() 方法存在问题。

使用当前的 updateCard() 方法,将卡添加到源列表,然后将新卡设置为 default_source。此方法的结果有 2 个结果:

  1. 多张卡片被添加到列表中,尽管最近的一张被设置为 default_source

  2. 使用此方法更新卡时,如果有任何未支付的发票(即处于past_due状态的发票),则不会自动扣款。

为了让 stripe 重新尝试对处于 past_due 状态的所有发票向客户收费,需要传递 source 参数。所以我创建了一个类似这样的新方法:

public function replaceCard($token)
    {
        $customer = $this->asStripeCustomer();
        $token = StripeToken::retrieve($token, ['api_key' => $this->getStripeKey()]);
        // If the given token already has the card as their default source, we can just
        // bail out of the method now. We don't need to keep adding the same card to
        // a model's account every time we go through this particular method call.
        if ($token->card->id === $customer->default_source) {
            return;
        }
        //  Just pass `source: tok_xxx` in order for the previous default source 
        // to be deleted and any unpaid invoices to be retried
        $customer->source = $token;
        $customer->save();
        // Next we will get the default source for this model so we can update the last
        // four digits and the card brand on the record in the database. This allows
        // us to display the information on the front-end when updating the cards.
        $source = $customer->default_source
                    ? $customer->sources->retrieve($customer->default_source)
                    : null;
        $this->fillCardDetails($source);
        $this->save();
    }

我为此添加了一个 Pull request。由于直接编辑 Billable 文件进行任何更改不是一个好主意,如果这没有被添加到收银台,那么您可以在控制器文件中使用以下内容直接从那里执行此操作:

$user = Auth::User();

$customer = $user->asStripeCustomer();
$token = StripeToken::retrieve($token, ['api_key' => config('services.stripe.secret')]);

if (!($token->card->id === $customer->default_source)) {
  $customer->source = $token;
  $customer->save();
  // Next synchronise user's card details and update the database
  $user->updateCardFromStripe();
}