WxpayJsApi.php 18 KB

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