php 实现stripe支付流程

1.申请账号获取密钥key

2.申请创建商品,创建价格,创建支付,

复制代码
//创建商品
public function create_product(){  
    $_key = self::STRIPE_KEY;
    $stripe = new \Stripe\StripeClient($_key);
    $arr =  $stripe->products->create([
        'name' => $goods_name,
    ]);
    //  print_r($arr->id);die;
    $this->create_price($arr->id,$order_id,$is_source);
}
复制代码
//创建价格
public function create_price($product_id,$order_id,$is_source){
    //获取订单对应的商品价格
    $goods_price = \db('order')->where('id',$order_id)->value('pay_money');
  
    $_key = self::STRIPE_KEY;
    $stripe = new \Stripe\StripeClient($_key);
    $price_arr = $stripe->prices->create([
       'unit_amount' => $goods_price*100,
        //'unit_amount' => 1*100,
        'currency' => 'usd',
        'tax_behavior' => 'exclusive',
        //'recurring' => ['interval' => 'day'],
        'product' => $product_id,
    ]);
    //print_r($price_arr->id);die;
    $this->actionStripe($price_arr->id,$order_id,$is_source);
}
复制代码
/**
 * 创建stripe支付
 */
public function actionStripe($price_id,$order_id,$is_source)
{
    $_key = self::STRIPE_KEY;

    $domain = $this->request->domain();

    //如果是AI订阅和AI作品打样的话
     if ($is_source == 8 || $is_source == 9){
         $cancel_url = 'https://ai.jewelryhunt.net/index/aimobile/mobile_list';
         $success_url = 'https://ai.jewelryhunt.net/index/aimobile/order';
     }else{
         $cancel_url = $domain.'/index/user/orders';
         $success_url = $domain . '/index/stripepay/success_info';
     }
    // stripe 生成订单

    \Stripe\Stripe::setApiKey($_key);
    $checkout_session = \Stripe\Checkout\Session::create([
        'line_items' => [[
            'price' => $price_id, // 产品id
            'quantity' => 1,
        ]],
        'mode' => 'payment',
        'success_url' => $success_url,
        'cancel_url' => $cancel_url,
        'automatic_tax' => [
            'enabled' => true,
        ],
        'metadata' => [
            'order_id' => $order_id,
        ],
    ]);
    header("HTTP/1.1 303 See Other");
    header("Location: " . $checkout_session->url);

}

4.配置回调事件

复制代码
/**
 * stripe支付回调
 */
public function actionNotify()
{
    \think\Log::record('支付进来了', 'info');
    $_key = self::STRIPE_KEY;
    \Stripe\Stripe::setApiKey($_key);
    $payload = @file_get_contents('php://input');
    $event = null;
    try {
        $event = \Stripe\Event::constructFrom(
            json_decode($payload, true)
        );
    } catch(\UnexpectedValueException $e) {
        // Invalid payload
        http_response_code(400);
        exit();
    }
    // Handle the event
    \think\Log::record('event12333333' . var_export($event->type, true), 'info');
    switch ($event->type) {
        case 'checkout.session.completed':
            $succeeded = $event->data->object;
            $content = "=========".date('Y-m-d H:i:s',time())."==========\r\n";
            $content .= json_encode($succeeded);
            \think\Log::record('content=======' . var_export($content, true), 'info');
            $token = input('token', '');

            if ($succeeded->status == 'complete') {
                $order_id = $succeeded->metadata->order_id;
                $pay_type = input('pay_type', 1);
      
            }
            break;
        case 'checkout.session.async_payment_failed':
            \think\Log::record('pay is failed', 'info');
            break;
        default:
            echo 'Received unknown event type ' . $event->type;
            break;
    }
    \think\Log::record('done', 'info');
    return true;
}
相关推荐
未知陨落33 分钟前
数据结构——二叉搜索树
开发语言·数据结构·c++·二叉搜索树
大波V533 分钟前
设计模式-参考的雷丰阳老师直播课
java·开发语言·设计模式
无敌最俊朗@1 小时前
unity3d————接口基础知识点
开发语言·c#
一丝晨光1 小时前
gcc 1.c和g++ 1.c编译阶段有什么区别?如何知道g++编译默认会定义_GNU_SOURCE?
c语言·开发语言·c++·gnu·clang·gcc·g++
南城花随雪。1 小时前
Spring框架之装饰者模式 (Decorator Pattern)
java·开发语言·装饰器模式
图王大胜1 小时前
Android Framework AMS(17)APP 异常Crash处理流程解读
android·app·异常处理·ams·crash·binderdied·讣告
究极无敌暴龙战神X1 小时前
前端学习之ES6+
开发语言·javascript·ecmascript
虞书欣的62 小时前
Python小游戏24——小恐龙躲避游戏
开发语言·python·游戏·小程序·pygame
TN_stark9322 小时前
多进程/线程并发服务器
服务器·算法·php
FHYAAAX2 小时前
【机器学习】任务十:从函数分析到机器学习应用与BP神经网络
开发语言·python