|
@@ -0,0 +1,180 @@
|
|
|
|
+<?php
|
|
|
|
+namespace app\common\library;
|
|
|
|
+use llianpay\accp\client\LLianPayClient;
|
|
|
|
+use llianpay\accp\params\TradeCreateParams;
|
|
|
|
+use llianpay\accp\params\TradeCreateOrderInfo;
|
|
|
|
+use llianpay\accp\params\TradeCreatePayeeInfo;
|
|
|
|
+use llianpay\accp\params\GetRandomParams;
|
|
|
|
+use llianpay\accp\params\TradeCreatePayerInfo;
|
|
|
|
+
|
|
|
|
+date_default_timezone_set('Asia/Shanghai');
|
|
|
|
+header('Content-type:application/json;charset=utf-8');
|
|
|
|
+//require env('root_path').'application/vendor/autoload.php';
|
|
|
|
+$path = __DIR__ . \DIRECTORY_SEPARATOR . '..' . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/cfg.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/client/LLianPayClient.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/params/TradeCreateParams.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/params/TradeCreateOrderInfo.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/params/TradeCreatePayeeInfo.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/params/TradeCreatePayerInfo.php';
|
|
|
|
+require env('root_path').'application/common/library/llp/src/params/GetRandomParams.php';
|
|
|
|
+class LianLianPay
|
|
|
|
+{
|
|
|
|
+
|
|
|
|
+ // 测试“统一支付创单”接口https://open.lianlianpay.com/docs/accp/accpstandard/accp-tradecreate.html
|
|
|
|
+ function tradeCreate($order_no,$money,$user_id,$notify_url,$return_url)
|
|
|
|
+ {
|
|
|
|
+ // 构建请求参数
|
|
|
|
+ $params = new TradeCreateParams();
|
|
|
|
+ $current = date("YmdHis");
|
|
|
|
+ $params->timestamp = $current;
|
|
|
|
+ $params->oid_partner = OID_PARTNER;
|
|
|
|
+ $params->txn_type = 'GENERAL_CONSUME';
|
|
|
|
+ $params->user_id = $user_id;//LLianPayTest-En-User-12345;
|
|
|
|
+ $params->notify_url = $notify_url;//'https://test.lianlianpay.com/notify';
|
|
|
|
+ $params->return_url = $return_url;//'https://test.lianlianpay.com/return';
|
|
|
|
+ //商户订单信息orderInfo
|
|
|
|
+ $orderInfo = new TradeCreateOrderInfo();
|
|
|
|
+ $orderInfo->txn_seqno = $order_no; //'LLianPayTest' . $current;
|
|
|
|
+ $orderInfo->txn_time = $current;
|
|
|
|
+ $orderInfo->total_amount = $money;//2.00;
|
|
|
|
+ $params->orderInfo = $orderInfo;
|
|
|
|
+
|
|
|
|
+ //收款方信息payeeInfo
|
|
|
|
+ /* $u_payeeInfo = new TradeCreatePayeeInfo();
|
|
|
|
+ $u_payeeInfo->payee_id = $user_id;//'LLianPayTest-En-User-12345';
|
|
|
|
+ $u_payeeInfo->payee_type = 'USER';
|
|
|
|
+ $u_payeeInfo->payee_amount = $money;//'1.00';*/
|
|
|
|
+
|
|
|
|
+ $m_payeeInfo = new TradeCreatePayeeInfo();
|
|
|
|
+ $m_payeeInfo->payee_id = OID_PARTNER;
|
|
|
|
+ $m_payeeInfo->payee_type = 'MERCHANT';
|
|
|
|
+ $m_payeeInfo->payee_amount = $money; //'1.00';
|
|
|
|
+
|
|
|
|
+ // $params->payeeInfo = array($u_payeeInfo, $m_payeeInfo);
|
|
|
|
+ $params->payeeInfo = array($m_payeeInfo);
|
|
|
|
+ // 测试环境地址
|
|
|
|
+ $url = 'https://accpapi-ste.lianlianpay-inc.com/v1/txn/tradecreate';
|
|
|
|
+ // var_dump(json_encode($params));
|
|
|
|
+ $result = LLianPayClient::sendRequest($url, json_encode($params));
|
|
|
|
+ return json_decode($result,true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ function getRandom()
|
|
|
|
+ {
|
|
|
|
+ // 构建请求参数
|
|
|
|
+ $params = new GetRandomParams();
|
|
|
|
+ $params->timestamp = date("YmdHis");
|
|
|
|
+ $params->oid_partner = OID_PARTNER;
|
|
|
|
+ $params->user_id = 'LLianPayTest-In-User-12345';
|
|
|
|
+ $params->flag_chnl = 'H5';
|
|
|
|
+ $params->pkg_name = 'test';
|
|
|
|
+ $params->app_name = 'test';
|
|
|
|
+ // 测试环境地址
|
|
|
|
+ $url = 'https://accpapi-ste.lianlianpay-inc.com/v1/acctmgr/get-random';
|
|
|
|
+ $result = LLianPayClient::sendRequest($url, json_encode($params));
|
|
|
|
+ return json_decode($result,true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // 账户+收银台 (商户在充值/消费交易模式场景下使用,可通过该接口完成收银台创单,然后跳转至连连收银台完成支付。)
|
|
|
|
+ function cashierDesk($order_no,$money,$user_id,$notify_url,$return_url,$goods_name,$risk_item)
|
|
|
|
+ {
|
|
|
|
+ // 构建请求参数
|
|
|
|
+ $params = new TradeCreateParams();
|
|
|
|
+ $current = date("YmdHis");
|
|
|
|
+ $params->timestamp = $current;
|
|
|
|
+ $params->oid_partner = OID_PARTNER;
|
|
|
|
+ $params->txn_type = 'GENERAL_CONSUME';
|
|
|
|
+ $params->user_id = $user_id;//LLianPayTest-En-User-12345;
|
|
|
|
+ $params->user_type = 'ANONYMOUS';
|
|
|
|
+ $params->notify_url = $notify_url;//'https://test.lianlianpay.com/notify';
|
|
|
|
+ $params->return_url = $return_url;//'https://test.lianlianpay.com/return';
|
|
|
|
+ $params->flag_chnl = 'H5';
|
|
|
|
+ $params->risk_item = is_array( $risk_item ) ? json_encode($risk_item) : $risk_item;
|
|
|
|
+
|
|
|
|
+ //商户订单信息orderInfo
|
|
|
|
+ $orderInfo = new TradeCreateOrderInfo();
|
|
|
|
+ $orderInfo->txn_seqno = $order_no; //'LLianPayTest' . $current;
|
|
|
|
+ $orderInfo->txn_time = $current;
|
|
|
|
+ $orderInfo->total_amount = $money;//2.00;
|
|
|
|
+ $orderInfo->goods_name = $goods_name;//2.00;
|
|
|
|
+ $params->orderInfo = $orderInfo;
|
|
|
|
+
|
|
|
|
+ //收款方信息payeeInfo
|
|
|
|
+ $u_payeeInfo = new TradeCreatePayeeInfo();
|
|
|
|
+ $u_payeeInfo->payee_id = OID_PARTNER;//'LLianPayTest-En-User-12345';
|
|
|
|
+ $u_payeeInfo->payee_type = 'MERCHANT';
|
|
|
|
+ $u_payeeInfo->payee_amount = $money;//'1.00';
|
|
|
|
+ $params->payeeInfo = [$u_payeeInfo];
|
|
|
|
+
|
|
|
|
+ // 付款方信息payerInfo
|
|
|
|
+ $m_payeeInfo = new TradeCreatePayerInfo();
|
|
|
|
+ $m_payeeInfo->payer_type = 'USER';
|
|
|
|
+ $m_payeeInfo->payer_id = $user_id; //'1.00';
|
|
|
|
+ $params->payerInfo =$m_payeeInfo;
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ //$url = 'https://accpgw-ste.lianlianpay-inc.com/v1/cashier/paycreate';// 测试环境
|
|
|
|
+ $url = 'https://accpgw.lianlianpay.com/v1/cashier/paycreate';// 生成环境
|
|
|
|
+ // var_dump(json_encode($params));
|
|
|
|
+ $result = LLianPayClient::sendRequest($url, json_encode($params));
|
|
|
|
+ return ['pay_result'=> json_decode($result,true),'request_params'=>json_encode($params)];
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static function getSignData($order_no,$money,$user_id,$notify_url,$return_url,$goods_name,$risk_item)
|
|
|
|
+ {
|
|
|
|
+ // 构建请求参数
|
|
|
|
+ $params = new TradeCreateParams();
|
|
|
|
+ $current = date("YmdHis");
|
|
|
|
+ $params->timestamp = $current;
|
|
|
|
+ $params->oid_partner = OID_PARTNER;
|
|
|
|
+ $params->txn_type = 'GENERAL_CONSUME';
|
|
|
|
+ $params->user_id = $user_id;//LLianPayTest-En-User-12345;
|
|
|
|
+ $params->user_type = 'ANONYMOUS';
|
|
|
|
+ $params->notify_url = $notify_url;//'https://test.lianlianpay.com/notify';
|
|
|
|
+ $params->return_url = $return_url;//'https://test.lianlianpay.com/return';
|
|
|
|
+ $params->flag_chnl = 'H5';
|
|
|
|
+ $params->risk_item = is_array( $risk_item ) ? json_encode($risk_item) : $risk_item;
|
|
|
|
+
|
|
|
|
+ //商户订单信息orderInfo
|
|
|
|
+ $orderInfo = new TradeCreateOrderInfo();
|
|
|
|
+ $orderInfo->txn_seqno = $order_no; //'LLianPayTest' . $current;
|
|
|
|
+ $orderInfo->txn_time = $current;
|
|
|
|
+ $orderInfo->total_amount = $money;//2.00;
|
|
|
|
+ $orderInfo->goods_name = $goods_name;//2.00;
|
|
|
|
+ $params->orderInfo = $orderInfo;
|
|
|
|
+
|
|
|
|
+ //收款方信息payeeInfo
|
|
|
|
+ $u_payeeInfo = new TradeCreatePayeeInfo();
|
|
|
|
+ $u_payeeInfo->payee_id = OID_PARTNER;//'LLianPayTest-En-User-12345';
|
|
|
|
+ $u_payeeInfo->payee_type = 'MERCHANT';
|
|
|
|
+ $u_payeeInfo->payee_amount = $money;//'1.00';
|
|
|
|
+ $params->payeeInfo = [$u_payeeInfo];
|
|
|
|
+
|
|
|
|
+ // 付款方信息payerInfo
|
|
|
|
+ $m_payeeInfo = new TradeCreatePayerInfo();
|
|
|
|
+ $m_payeeInfo->payer_type = 'USER';
|
|
|
|
+ $m_payeeInfo->payer_id = $user_id; //'1.00';
|
|
|
|
+ $params->payerInfo =$m_payeeInfo;
|
|
|
|
+ return json_encode($params);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public static function payResult($order_no,$timestamp)
|
|
|
|
+ {
|
|
|
|
+ $params = [
|
|
|
|
+ 'timestamp'=>$timestamp,
|
|
|
|
+ 'oid_partner'=>OID_PARTNER,
|
|
|
|
+ 'accp_txno'=>$order_no,
|
|
|
|
+ ];
|
|
|
|
+ $url = 'https://accpapi.lianlianpay.com/v1/txn/query-payment';//生产环境
|
|
|
|
+ //$url = 'https://accpapi-ste.lianlianpay-inc.com/v1/txn/query-payment';//测试环境
|
|
|
|
+ $result = LLianPayClient::sendRequest($url, json_encode($params));
|
|
|
|
+ return json_decode($result,true);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+}
|