微信支付sdk调用记录
2018-03-25 本文已影响0人
余头
微信sdk提供了五种支付场景(公众号支付、app支付、扫码支付、刷卡支付、微信买单)。作为后台开发实际工作中主要接触到的是微信内公众号支付和pc端的扫码支付两种,记录下防止遗忘
商户开通微信支付资质流程
申请公众号->申请微信支付商户号->协议签署接入
一、公众号支付
公众号支付是指用户在微信中打开商户的H5页面,商户在H5页面通过调用微信支付提供的JSAPI接口调起微信支付模块来完成支付。
适用于在公众号、朋友圈、聊天窗口等微信内完成支付的场景。
1)设置支付目录并设置授权域名
图片.png微信商户平(pay.weixin.qq.com)设置您的公众号支付支付目录,设置路径:商户平台-->产品中心-->开发配置
统一下单接口中必传参数用户的openid(获取openid需在公众平台设置获取openid域名)
2)code片段
class Pay extends Controller
{
/**
* 统一下单支付处理
*/
public function index()
{
//初始化日志
$logHandler= new \CLogFileHandler(ROOT_PATH."com/hpmall/wxpay/logs/".date('Y-m-d').'.log');
$log = \Log::Init($logHandler, 15);
//①、获取用户openid
$tools = new \JsApiPay();
$openId = $tools->GetOpenid();
//②、统一下单
//支付参数
$data = $this->request->param();
//获取子订单信息待修改
$info = Db::table('hp_orders_child')->field('id,payfee')->where('stats=0 AND childsn='.$data['id'])->find();
$orderid = $data['id']; //订单编号
$price = $info['payfee'];//订单价格
$input = new \WxPayUnifiedOrder();
$input->SetBody("xxx");
$input->SetAttach($orderid);
$input->SetOut_trade_no(\WxPayConfig::MCHID.date("YmdHis"));
$input->SetTotal_fee((int)($price.'00'));
//$input->SetTotal_fee(1); //测试价格
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
//$input->SetGoods_tag("test");
$input->SetNotify_url("http://www.hunziyu.com/notify");
$input->SetTrade_type("JSAPI");
$input->SetOpenid($openId);
$order = \WxPayApi::unifiedOrder($input);
//echo '<font color="#f00"><b>统一下单支付单信息</b></font><br/>';
//printf_info($order);
$jsApiParameters = $tools->GetJsApiParameters($order);
//获取共享收货地址js函数参数
$editAddress = $tools->GetEditAddressParameters();
//③、在支持成功回调通知中处理成功之后的事宜,见 notify.php
/**
* 注意:
* 1、当你的回调地址不可访问的时候,回调通知会失败,可以通过查询订单来确认支付是否成功
* 2、jsapi支付时需要填入用户openid,WxPay.JsApiPay.php中有获取openid流程 (文档可以参考微信公众平台“网页授权接口”,
* 参考http://mp.weixin.qq.com/wiki/17/c0f37d5704f0b64713d5d2c37b468d75.html)
*/
$this->assign('orderid',$orderid);
$this->assign('totalprice',$price);
$this->assign('title', '支付');
$this->assign('keywords', '支付');
$this->assign('description', '支付');
return $this->fetch('index', ['jsApiParameters'=>$jsApiParameters, 'editAddress'=>$editAddress]);
}
//异步回调处理订单
class Notify extends \WxPayNotify
{
//查询订单
public function Queryorder($transaction_id)
{
$input = new \WxPayOrderQuery();
$input->SetTransaction_id($transaction_id);
$result = \WxPayApi::orderQuery($input);
\Log::DEBUG("query:" . json_encode($result));
if(array_key_exists("return_code", $result)
&& array_key_exists("result_code", $result)
&& $result["return_code"] == "SUCCESS"
&& $result["result_code"] == "SUCCESS")
{
$order_sn = $result['attach']; //订单单号
//更新数据库
// $param['ordersn'] = $order_sn;
//$orderArr = explode('+', $order_sn);
$dataArr['stats'] = 1;
$dataArr['payway'] = 1;
$res = Db::table('hp_orders_child')->where('childsn',$order_sn)->find();
if($res['stats']==1){
return false;
}
//更改订单状态并记录账户日志
//业务逻辑处理更改订单状态等
return true;
}
return false;
}
//重写回调处理函数
public function NotifyProcess($data, &$msg)
{
\Log::DEBUG("call back:" . json_encode($data));
$notfiyOutput = array();
if(!array_key_exists("transaction_id", $data)){
$msg = "输入参数不正确";
return false;
}
//查询订单,判断订单真实性
if(!$this->Queryorder($data["transaction_id"])){
$msg = "订单查询失败";
return false;
}
return true;
}
}
\Log::DEBUG("begin notify");
$notify = new Notify();
$notify->Handle(false);
二、扫码支付
扫码支付是指商户系统按微信支付协议生成支付二维码,用户再用微信“扫一扫”来完成支付。
适用于PC网站支付、实体店单品等场景。
1)同上设置商户支付回调url
2)code片段
class Pay extends Auth
{
/**
* 扫码支付
* @return mixed
*/
public function index()
{
//模式二
/**
* 流程:
* 1、调用统一下单,取得code_url,生成二维码
* 2、用户扫描二维码,进行支付
* 3、支付完成之后,微信服务器会通知支付成功
* 4、在支付成功通知中需要查单确认是否真正支付成功(见:notify.php)
*/
$data = $this->requestHandler->param();
$orderArr = explode('+', $data['ordersn']);
$resultArr['childsn'] = $orderArr[0];
Orders::init([
'type' => 'OrdersChildService',
'model' => '\\app\\common\\modelv2\\OrdersChild',
'name' => 'ordersChild',
]);
$field = 'id,orderid, childsn, payfee';
$info = Orders::row($resultArr, $field, 'relationOrders');
$orderid = $info['childsn']; //订单编号
$price = $info['payfee'];
$notify = new \NativePay();
$input = new \WxPayUnifiedOrder();
$input->SetBody("xxx");
$input->SetAttach($orderid);
$input->SetOut_trade_no(\WxPayConfig::MCHID.date("YmdHis"));
$input->SetTotal_fee((int)($price.'00'));
$input->SetTime_start(date("YmdHis"));
$input->SetTime_expire(date("YmdHis", time() + 600));
$input->SetGoods_tag("test");
$input->SetNotify_url("http://www.hunziyu.com/user/notify");
$input->SetTrade_type("NATIVE");
$input->SetProduct_id($info['relation_orders']['productid']);
$result = $notify->GetPayUrl($input);
$url2 = $result["code_url"];
$this->assign('title', '支付');
return $this->fetch('index', ['data'=>$url2, 'order'=>$orderid, 'total'=>(int)($price)]);
}
/**
* 二维码
* @return mixed
*/
public function code()
{
require ROOT_PATH.'com/hpmall/wxpay/example/phpqrcode/phpqrcode.php';
$url = urldecode($_GET["data"]);
$errorCorrectionLevel = "L"; // 纠错级别:L、M、Q、H
$matrixPointSize = "8"; //生成图片大小 :1到10
ob_clean();
\QRcode::png($url, false, $errorCorrectionLevel, $matrixPointSize);
exit();
}
}