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;
}
相关推荐
157092511341 小时前
Android进阶之光:HTTP协议原理深度解析
android·网络协议·http
终端安全笔记2 小时前
安卓五品牌通道差在哪:监管通道拆解
android
浪子明X2 小时前
十六位账本怎样发现传输差错:Internet Checksum 生活类比
开发语言
v_34836087622 小时前
Android native端 堆栈打印
android·算法
一笑的小酒馆3 小时前
AndroidKMP之导航和WebView
android
xiangyun615 小时前
【408数据结构 08】队列:循环队列判空判满,408年年考,一次讲清
c语言·开发语言·数据结构·c++·算法
xiangyun615 小时前
【408数据结构 06】双链表、循环链表、静态链表
c语言·开发语言·数据结构·c++·算法
2501_932750266 小时前
Android BottomNavigationView 入门介绍
android
白远山6 小时前
家政服务家政社区派单实战:调度系统架构设计与实现指南
java·开发语言·小程序·架构·需求分析
DevRay7 小时前
Java 21虚拟线程深度实战:告别线程池焦虑,百万并发吞吐量直接翻倍(原理+代码+避坑)
java·开发语言