WxpayJsApi.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434
  1. <?php
  2. /*
  3. * FecShop file.
  4. *
  5. * @link http://www.fecshop.com/
  6. * @copyright Copyright (c) 2016 FecShop Software LLC
  7. * @license http://www.fecshop.com/license/
  8. */
  9. namespace fecshop\services\payment;
  10. //use fecshop\models\mysqldb\IpnMessage;
  11. use fecshop\services\Service;
  12. use yii\base\InvalidConfigException;
  13. use Yii;
  14. use Monolog\Handler\IFTTTHandler;
  15. /**
  16. * Payment wxpay services.
  17. * @author Alex Chang<1692576541@qq.com>
  18. * @since 1.0
  19. */
  20. class WxpayJsApi extends Service
  21. {
  22. public $devide;
  23. public $configFile;
  24. public $subjectMaxLength = 30;
  25. public $tradeType;
  26. public $scanCodeBody = '微信支付';
  27. public $deviceInfo = 'WEB';
  28. public $expireTime = 600;
  29. protected $_order;
  30. // 允许更改的订单状态,不存在这里面的订单状态不允许修改
  31. protected $_allowChangOrderStatus;
  32. public function init()
  33. {
  34. ini_set('date.timezone', 'Asia/Shanghai');
  35. parent::init();
  36. $wxpayConfigFile = Yii::getAlias($this->configFile);
  37. if (!is_file($wxpayConfigFile)) {
  38. throw new InvalidConfigException('wxpay config file:['.$wxpayConfigFile.'] is not exist');
  39. }
  40. require_once($wxpayConfigFile);
  41. $wxpayApiFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Api.php');
  42. //$wxpayDataFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Data.php');
  43. $wxpayNotifyFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Notify.php');
  44. //$wxpayExceptionFile = Yii::getAlias('@fecshop/lib/wxpay/lib/WxPay.Exception.php');
  45. $wxpayJsApiPayPayFile = Yii::getAlias('@fecshop/lib/wxpay/example/WxPay.JsApiPay.php');
  46. //$wxpayNativePayFile = Yii::getAlias('@fecshop/lib/wxpay/example/WxPay.NativePay.php');
  47. $wxpayLogFile = Yii::getAlias('@fecshop/lib/wxpay/example/log.php');
  48. require_once($wxpayApiFile);
  49. //require_once($wxpayDataFile);
  50. require_once($wxpayNotifyFile);
  51. //require_once($wxpayExceptionFile);
  52. require_once($wxpayJsApiPayPayFile);
  53. require_once($wxpayLogFile);
  54. //交易类型
  55. //JSAPI--公众号支付、NATIVE--原生扫码支付、APP--app支付,统一下单接口trade_type的传参可参考这里
  56. //MICROPAY--刷卡支付,刷卡支付有单独的支付接口,不调用统一下单接口
  57. $this->tradeType = 'JSAPI';
  58. $this->_allowChangOrderStatus = [
  59. Yii::$service->order->payment_status_pending,
  60. Yii::$service->order->payment_status_processing,
  61. ];
  62. }
  63. /**
  64. * 接收IPN消息的url,接收微信支付的异步消息,进而更改订单状态。
  65. */
  66. public function ipn()
  67. {
  68. $notifyFile = Yii::getAlias('@fecshop/services/payment/wxpay/notify.php');
  69. require_once($notifyFile);
  70. \Yii::info('begin ipn', 'fecshop_debug');
  71. $notify = new \PayNotifyCallBack();
  72. $notify->Handle(false);
  73. }
  74. /**
  75. * @param $data | Array 数据格式如下:
  76. * array(18) {
  77. * ["appid"]=> string(18) "wx426b3015555a46be"
  78. * ["attach"]=>string(24) "微信支付测试产品"
  79. * ["bank_type"]=>string(3) "CFT"
  80. * ["cash_fee"]=>string(1) "1"
  81. * ["device_info"]=>string(3) "WEB"
  82. * ["fee_type"]=> string(3) "CNY"
  83. * ["is_subscribe"]=>string(1) "N"
  84. * ["mch_id"]=>string(10) "1900009851"
  85. * ["nonce_str"]=> string(32) "e91xn1hwgyw9ox5zecdag1l86vrhi94l"
  86. * ["openid"]=>string(28) "oHZx6uKw5nrwZmEfgIX8poeQIucw"
  87. * ["out_trade_no"]=>string(10) "1100000953"
  88. * ["result_code"]=>string(7) "SUCCESS"
  89. * ["return_code"]=>string(7) "SUCCESS"
  90. * ["sign"]=>string(32) "589AC2046E667584FF1967C3C091259A"
  91. * ["time_end"]=>string(14) "20171106160124"
  92. * ["total_fee"]=>string(1) "1"
  93. * ["trade_type"]=>string(6) "NATIVE"
  94. * ["transaction_id"]=>string(28) "4200000006201711062859872774"
  95. * }
  96. * 在微信sdk验证数据安全性后,会执行该函数,用来验证订单的金额的正确性
  97. * 如果订单数据没有问题,则更改订单状态。
  98. */
  99. public function ipnUpdateOrder($data)
  100. {
  101. \Yii::info('ipn order process', 'fecshop_debug');
  102. $incrementId = $data['out_trade_no'];
  103. $transaction_id = $data['transaction_id'];
  104. $total_fee = $data['total_fee'];
  105. $fee_type = $data['fee_type'];
  106. if ($incrementId && $transaction_id && $total_fee) {
  107. $this->_order = Yii::$service->order->getByIncrementId($incrementId);
  108. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  109. $base_grand_total = $this->_order['base_grand_total'];
  110. $order_total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  111. \Yii::info('check order totla amouont['.($order_total_amount * 100).' == '.$total_fee.']', 'fecshop_debug');
  112. // 微信支付的人民币单位为分
  113. if(bccomp($order_total_amount * 100, $total_fee) !== 0){
  114. return false;
  115. }
  116. \Yii::info('updateOrderInfo', 'fecshop_debug');
  117. // 更改订单状态
  118. if ($this->updateOrderInfo($incrementId, $transaction_id, false)) { //支付成功调用服务执行订单状态改变,清空购物车和发送邮件操作
  119. \Yii::info('updateOrderInfo Success', 'fecshop_debug');
  120. return true;
  121. }
  122. }
  123. }
  124. public function getOpenidUrl($baseUrl)
  125. {
  126. $tools = new \JsApiPay();
  127. return $tools->GetOpenidUrl($baseUrl);
  128. }
  129. /**
  130. * @param $code | string 传递的微信code
  131. */
  132. public function getScanCodeStart($code = "")
  133. {
  134. // 根据订单得到json格式的微信支付参数。
  135. $trade_info = $this->getStartBizContentAndSetPaymentMethod();
  136. if (!$trade_info) {
  137. Yii::$service->helper->errors->add('generate wxpay bizContent error');
  138. return false;
  139. }
  140. //①、获取用户openid
  141. $tools = new \JsApiPay();
  142. if (!$code) {
  143. $openId = $tools->GetOpenid();
  144. } else {
  145. $openId = $tools->GetOpenidByCode($code);
  146. }
  147. //echo $openId;exit;
  148. //②、统一下单
  149. $input = new \WxPayUnifiedOrder();
  150. //$notify_url = Yii::$service->url->getUrl("payment/wxpayjsapi/ipn"); ////获取支付配置中的返回ipn url
  151. $notify_url = Yii::$service->payment->getStandardIpnUrl();
  152. //$notify = new \NativePay();
  153. //$input = new \WxPayUnifiedOrder();
  154. $input->SetBody($this->scanCodeBody);
  155. //$input->SetAttach("商店的额外的自定义数据");
  156. $input->SetAttach($trade_info['subject']);
  157. $input->SetDevice_info($this->deviceInfo); // 设置设备号
  158. if ($trade_info['coupon_code']) {
  159. $input->SetGoods_tag($trade_info['coupon_code']); //设置商品标记,代金券或立减优惠功能的参数
  160. }
  161. $input->SetOut_trade_no($trade_info['increment_id']); // Fecshop 订单号
  162. $orderTotal = $trade_info['total_amount'] * 100; //微信支付的单位为分,所以要乘以100
  163. $input->SetTotal_fee($orderTotal);
  164. $input->SetTime_start(date("YmdHis"));
  165. $input->SetTime_expire($this->getShangHaiExpireTime($this->expireTime));
  166. $input->SetNotify_url($notify_url); //通知地址 改成自己接口通知的接口,要有公网域名,测试时直接行动此接口会产生日志
  167. $input->SetTrade_type($this->tradeType);
  168. $input->SetProduct_id($trade_info['product_ids']); //此为二维码中包含的商品ID
  169. $input->SetOpenid($openId);
  170. //var_dump($input);
  171. $order = \WxPayApi::unifiedOrder($input);
  172. //echo '<font color="#f00"><b>统一下单支付单信息</b></font><br/>';
  173. //$this->printf_info($order);
  174. $isJsonFormat = true;
  175. if ($code) {
  176. $isJsonFormat = false;
  177. }
  178. $jsApiParameters = $tools->GetJsApiParameters($order, $isJsonFormat);
  179. //var_dump($jsApiParameters);
  180. //获取共享收货地址js函数参数
  181. $editAddress = $tools->GetEditAddressParameters($isJsonFormat);
  182. //var_dump($editAddress);
  183. //echo '3333333333333333<br>';
  184. return [
  185. 'jsApiParameters' => $jsApiParameters,
  186. 'editAddress' => $editAddress,
  187. 'total_amount' => $trade_info['total_amount'],
  188. 'increment_id' => $trade_info['increment_id'],
  189. ];
  190. }
  191. //打印输出数组信息
  192. function printf_info($data)
  193. {
  194. foreach($data as $key=>$value){
  195. echo "<font color='#00ff55;'>$key</font> : $value <br/>";
  196. }
  197. }
  198. public function getShangHaiExpireTime($expire_time)
  199. {
  200. $timezone_out = date_default_timezone_get();
  201. date_default_timezone_set('Asia/Shanghai');
  202. $r_time = date("YmdHis", time() + $expire_time);
  203. date_default_timezone_set($timezone_out);
  204. return $r_time;
  205. }
  206. public function scanCodeCheckTradeIsSuccess($out_trade_no)
  207. {
  208. $result = Yii::$service->payment->wxpay->queryOrderByOut($out_trade_no);
  209. if (is_array($result) && !empty($result)) {
  210. $trade_state = $result['trade_state']; //最终的交易状态,必须为SUCCESS才是交易成功
  211. $return_code = $result['result_code'];
  212. $trade_type = $result['trade_type']; //获取交易方式,这里使用的是扫码支付native
  213. $out_trade_no = $result['out_trade_no'];
  214. $total_amount = $result['total_fee'];
  215. $seller_id = $result['mch_id'];
  216. $auth_app_id = $result['appid'];
  217. $trade_no = $result['transaction_id'];
  218. $checkOrderStatus = Yii::$service->payment->wxpay->checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id);
  219. if ($checkOrderStatus) {
  220. return $this->updateOrderInfo($out_trade_no, $trade_no);
  221. }
  222. }
  223. }
  224. /**
  225. * 通过微信接口查询交易信息
  226. * @param unknown $out_trade_no
  227. */
  228. public function queryOrderByOut($out_trade_no)
  229. {
  230. $input = new \WxPayOrderQuery();
  231. $input->SetOut_trade_no($out_trade_no);
  232. $result = \WxPayApi::orderQuery($input);
  233. return $result;
  234. }
  235. /**
  236. * 把返回的支付参数方式改成数组以适应微信的api
  237. * 生成二维码图片会用到这个函数
  238. */
  239. protected function getStartBizContentAndSetPaymentMethod()
  240. {
  241. $currentOrderInfo = Yii::$service->order->getCurrentOrderInfo();
  242. if (isset($currentOrderInfo['products']) && is_array($currentOrderInfo['products'])) {
  243. $subject_arr = [];
  244. foreach ($currentOrderInfo['products'] as $product) {
  245. $subject_arr[] = $product['name'];
  246. }
  247. if (!empty($subject_arr)) {
  248. $subject = implode(',', $subject_arr);
  249. // 字符串太长会出问题,这里将产品的name链接起来,在截图一下
  250. if (strlen($subject) > $this->subjectMaxLength) {
  251. $subject = mb_substr($subject, 0, $this->subjectMaxLength);
  252. }
  253. //echo $subject;
  254. $increment_id = $currentOrderInfo['increment_id'];
  255. $base_grand_total = $currentOrderInfo['base_grand_total'];
  256. $total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  257. Yii::$service->payment->setPaymentMethod($currentOrderInfo['payment_method']);
  258. $products = $currentOrderInfo['products'];
  259. $productIds = '';
  260. if (is_array($products)) {
  261. foreach ($products as $product) {
  262. $productIds = $product['product_id'];
  263. break;
  264. }
  265. }
  266. return [
  267. 'increment_id' => $increment_id,
  268. 'total_amount' => $total_amount,
  269. 'subject' => $subject,
  270. 'coupon_code' => $currentOrderInfo['coupon_code'],
  271. 'product_ids' => $productIds,
  272. ];
  273. }
  274. }
  275. }
  276. /**
  277. * 检查订单是否合法
  278. * 如果每项验证都通过则返回真
  279. */
  280. public function checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id)
  281. {
  282. if ($trade_state != 'SUCCESS') {
  283. Yii::$service->helper->errors->add('request trade_state is not equle to SUCCESS');
  284. return false;
  285. }
  286. if ($return_code != 'SUCCESS') {
  287. Yii::$service->helper->errors->add('request return_code is not equle to SUCCESS');
  288. return false;
  289. }
  290. if ($trade_type != 'NATIVE') {
  291. Yii::$service->helper->errors->add('request trade_type is not equle to NATIVE');
  292. return false;
  293. }
  294. if (!$this->_order) {
  295. $this->_order = Yii::$service->order->getByIncrementId($out_trade_no);
  296. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  297. }
  298. if (!$this->_order) {
  299. Yii::$service->helper->errors->add('order increment id:{out_trade_no} is not exist.', ['out_trade_no' => $out_trade_no]);
  300. return false;
  301. }
  302. $base_grand_total = $this->_order['base_grand_total'];
  303. $order_total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  304. if ((string)($order_total_amount * 100) != $total_amount) { //由于微信中是以分为单位所以必须乘以100,二维码页面也已经作了处理,单位都是分,$order_total_amount * 100要转为字符串再比较
  305. Yii::$service->helper->errors->add('order increment id:{out_trade_no} , total_amount({total_amount}) is not equal to order_total_amount({order_total_amount})', ['out_trade_no'=>$out_trade_no , 'total_amount'=>$total_amount , 'order_total_amount'=>$order_total_amount ]);
  306. //return ['o' => $order_total_amount * 100, 't' => $total_amount]; //测试时便于观察订单金额和微信实际支付的金额,生产环境要注释掉
  307. return false;
  308. }
  309. return true;
  310. }
  311. /**
  312. * 微信 支付成功后,对订单的状态进行修改
  313. * 如果支付成功,则修改订单状态为支付成功状态。
  314. * @param $out_trade_no | string , fecshop的订单编号 increment_id
  315. * @param $trade_no | 微信支付交易号
  316. * @param isClearCart | boolean 是否清空购物车
  317. *
  318. */
  319. protected function updateOrderInfo($out_trade_no, $trade_no, $isClearCart=true)
  320. {
  321. if (!empty($out_trade_no) && !empty($trade_no)) {
  322. if ($this->paymentSuccess($out_trade_no, $trade_no)) {
  323. // 清空购物车
  324. if ($isClearCart) {
  325. Yii::$service->cart->clearCartProductAndCoupon();
  326. }
  327. return true;
  328. }
  329. } else {
  330. Yii::$service->helper->errors->add('wxpay payment fail,resultCode: {result_code}', ['result_code' => $resultCode]);
  331. return false;
  332. }
  333. }
  334. /**
  335. * @param $increment_id | String 订单号
  336. * @param $sendEmail | boolean 是否发送邮件
  337. * 订单支付成功后,需要更改订单支付状态等一系列的处理。
  338. */
  339. protected function paymentSuccess($increment_id, $trade_no, $sendEmail = true)
  340. {
  341. if (!$this->_order) {
  342. $this->_order = Yii::$service->order->getByIncrementId($increment_id);
  343. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  344. }
  345. // 【优化后的代码 ##】
  346. $orderstatus = Yii::$service->order->payment_status_confirmed;
  347. $updateArr['order_status'] = $orderstatus;
  348. $updateArr['txn_id'] = $trade_no; // 微信的交易号
  349. $updateColumn = $this->_order->updateAll(
  350. $updateArr,
  351. [
  352. 'and',
  353. ['order_id' => $this->_order['order_id']],
  354. ['in','order_status',$this->_allowChangOrderStatus]
  355. ]
  356. );
  357. if (!empty($updateColumn)) {
  358. // 发送邮件,以及其他的一些操作(订单支付成功后的操作)
  359. Yii::$service->order->orderPaymentCompleteEvent($this->_order['increment_id']);
  360. }
  361. // 【优化后的代码 ##】
  362. /* 注释掉的原来代码,上面进行了优化,保证更改只有一次,这样发邮件也就只有一次了
  363. // 如果订单状态已经是processing,那么,不需要更改订单状态了。
  364. if ($this->_order['order_status'] == Yii::$service->order->payment_status_confirmed){
  365. return true;
  366. }
  367. $order = $this->_order;
  368. if (isset($order['increment_id']) && $order['increment_id']) {
  369. // 如果支付成功,则更改订单状态为支付成功
  370. $order->order_status = Yii::$service->order->payment_status_confirmed;
  371. $order->txn_id = $trade_no; // 微信的交易号
  372. // 更新订单信息
  373. $order->save();
  374. Yii::$service->order->orderPaymentCompleteEvent($order['increment_id']);
  375. // 得到当前的订单信息
  376. // $orderInfo = Yii::$service->order->getOrderInfoByIncrementId($order['increment_id']);
  377. // 发送新订单邮件
  378. // Yii::$service->email->order->sendCreateEmail($orderInfo);
  379. return true;
  380. }
  381. */
  382. return true;
  383. }
  384. // 支付宝的 标示
  385. public function getWxpayHandle()
  386. {
  387. return 'wxpay_standard';
  388. }
  389. }