17

我确定我在这里遗漏了一些明显的东西,但我无法理解如何针对客户检查现有卡。

我在一个 laravel 应用程序中使用 stripe connect api 来代表他人管理付款,基本流程如下:

  • token通过付款表格创建stripe.js并提交条带
  • 如果客户存在于本地数据库中,我抓取他们的stripe_id,否则使用令牌作为源/卡创建新客户
  • charge然后使用检索到的或新的客户创建astripe_id

目前,如果客户返回并使用不同的卡,因为费用只包括客户而不是来源,无论如何都会从他们的默认卡中收取费用。

我想做的是:

  • 创建条纹token
  • 检查customer本地数据库等
  • 检查card客户卡上的指纹
  • 如有必要,card在客户记录中创建新的
  • 使用customercardids创建费用

简单地说:我看不到持久化card_id是在哪里生成的;响应中使用的stripe.js以及在条带仪表板中创建的那些似乎都是唯一的,这意味着每次收费都会在条带中创建一个全新的卡片对象。

我知道我可以检索存储在客户帐户中的卡列表 - 但是我从哪里获取初始值card_id以进行搜索?

我在这里看到了一个涉及此问题的问题-我可以在创建新卡之前检查是否已经存在条纹卡吗?- 但我不了解 Ruby,所以无法确定它的头部或尾部。

编辑:

更简单的版本 - 有没有办法获得fingerprint条带文档中描述的内容 - https://stripe.com/docs/api/php#card_object - 而无需先创建卡片对象?

4

2 回答 2

25

所以这里的想法是使用fingerprintCard对象Token对象而不是 id 本身,因为如果您多次添加同一张卡,它们会有所不同。

当您获得新的卡令牌时,您可以通过检索令牌API 检索它并fingerprintcard哈希中查找。

您将在数据库中保留与特定客户和/或卡相关联的已知指纹列表,以便您可以检测重复的卡。

注意:确保您使用密钥来获取这些信息。否则,如果您使用可发布密钥,您可能无法获得指纹值。

于 2015-03-24T00:33:02.377 回答
1

我创建了一个函数来做到这一点:

  • $customer是条纹客户对象
  • $stripe_account是您帐户的条带 ID 或关联帐户的条带 ID
  • $token来自 stripe.js 元素
  • $check_exp允许您决定是否还要检查卡的到期日期,因为如果卡号相同,指纹不会改变
  • 条纹 PHP API 7.0.0

    function check_duplicate_card($customer, $stripe_account, $token, $check_exp) {
    $loc = "check_duplicate_card >> ";
    $debug = true;
    
    if ($debug) {
        // see here for an explanation for logging: http://php.net/set_error_handler >> Examples
        trigger_error("$loc started", E_USER_NOTICE);
    }
    
    try
    {
        // get token data
        $response = \Stripe\Token::retrieve(
            $token,
            ["stripe_account" => $stripe_account]
        );
        $token_fingerprint = $response->card->fingerprint;
        $token_exp_month = $response->card->exp_month;
        $token_exp_year = $response->card->exp_year;
        if ($debug) {
            trigger_error("$loc token_fingerprint = $token_fingerprint; token_exp_month = $token_exp_month; token_exp_year = $token_exp_year", E_USER_NOTICE);
        }
    
        // check for duplicate source
        if ($debug) {
            trigger_error("$loc customer sources = " . json_encode($customer->sources), E_USER_NOTICE);
        }
        $duplicate_found = false;
        foreach ($customer->sources->data as &$value) {
            // get data
            $fingerprint = $value->fingerprint;
            $exp_month = $value->exp_month;
            $exp_year = $value->exp_year;
    
            if ($fingerprint == $token_fingerprint) {
                if ($check_exp) {
                    if (($exp_month == $token_exp_month) && ($exp_year == $token_exp_year)) {
                        $duplicate_found = true;
                        break;
                    }
                } else {
                    $duplicate_found = true;
                    break;    
                }
            }
        }
        if ($debug) {
            trigger_error("$loc duplicate_found = " . json_encode($duplicate_found), E_USER_NOTICE);
        }
    } catch (Exception $e) {
        if ($e instanceof \Stripe\Exception\ApiErrorException) {
            $return_array = [
                "status" => $e->getHttpStatus(),
                "type" => $e->getError()->type,
                "code" => $e->getError()->code,
                "param" => $e->getError()->param,
                "message" => $e->getError()->message,
            ];
            $return_str = json_encode($return_array);
            trigger_error("$loc $return_str", E_USER_WARNING);
            http_response_code($e->getHttpStatus());
            echo $return_str;
        } else {
            $return_array = [
                "message" => $e->getMessage(),
            ];
            $return_str = json_encode($return_array);
            trigger_error("$loc $return_str", E_USER_ERROR);
            http_response_code(500); // Internal Server Error
            echo $return_str;
        }
    }
    
    if ($debug) {
        trigger_error("$loc ended", E_USER_NOTICE);
    }
    
    return $duplicate_found;
    }
    
于 2019-09-26T15:51:11.560 回答