WxpayMicro.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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 WxpayMicro 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()
  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. $identity = Yii::$app->user->identity;
  148. $openId = $identity->wx_openid;
  149. //echo $openId;exit;
  150. //②、统一下单
  151. $input = new \WxPayUnifiedOrder();
  152. $notify_url = Yii::$service->url->getUrl("payment/wxpayjsapi/ipn"); ////获取支付配置中的返回ipn url
  153. //$notify_url = Yii::$service->payment->getStandardIpnUrl();
  154. //$notify = new \NativePay();
  155. //$input = new \WxPayUnifiedOrder();
  156. $input->SetBody($this->scanCodeBody);
  157. //$input->SetAttach("商店的额外的自定义数据");
  158. $input->SetAttach($trade_info['subject']);
  159. $input->SetDevice_info('1000'); // 设置设备号
  160. if ($trade_info['coupon_code']) {
  161. $input->SetGoods_tag($trade_info['coupon_code']); //设置商品标记,代金券或立减优惠功能的参数
  162. }
  163. $input->SetOut_trade_no($trade_info['increment_id']); // Fecshop 订单号
  164. $orderTotal = $trade_info['total_amount'] * 100; //微信支付的单位为分,所以要乘以100
  165. $input->SetTotal_fee($orderTotal);
  166. $input->SetTime_start(date("YmdHis"));
  167. $input->SetTime_expire($this->getShangHaiExpireTime($this->expireTime));
  168. $input->SetNotify_url($notify_url); //通知地址 改成自己接口通知的接口,要有公网域名,测试时直接行动此接口会产生日志
  169. $input->SetTrade_type($this->tradeType);
  170. $input->SetProduct_id($trade_info['product_ids']); //此为二维码中包含的商品ID
  171. $input->SetOpenid($openId);
  172. // var_dump($input);exit;
  173. $order = \WxPayApi::unifiedOrder($input);
  174. //echo '<font color="#f00"><b>统一下单支付单信息</b></font><br/>';
  175. //$this->printf_info($order);
  176. $isJsonFormat = false;
  177. $jsApiParameters = $tools->GetJsApiParameters($order, $isJsonFormat);
  178. //var_dump($jsApiParameters);
  179. //获取共享收货地址js函数参数
  180. $editAddress = $tools->GetEditAddressParameters($isJsonFormat);
  181. //var_dump($editAddress);
  182. //echo '3333333333333333<br>';
  183. return [
  184. 'jsApiParameters' => $jsApiParameters,
  185. 'editAddress' => $editAddress,
  186. 'total_amount' => $trade_info['total_amount'],
  187. 'increment_id' => $trade_info['increment_id'],
  188. ];
  189. }
  190. //打印输出数组信息
  191. function printf_info($data)
  192. {
  193. foreach($data as $key=>$value){
  194. echo "<font color='#00ff55;'>$key</font> : $value <br/>";
  195. }
  196. }
  197. public function getShangHaiExpireTime($expire_time)
  198. {
  199. $timezone_out = date_default_timezone_get();
  200. date_default_timezone_set('Asia/Shanghai');
  201. $r_time = date("YmdHis", time() + $expire_time);
  202. date_default_timezone_set($timezone_out);
  203. return $r_time;
  204. }
  205. public function scanCodeCheckTradeIsSuccess($out_trade_no)
  206. {
  207. $result = Yii::$service->payment->wxpay->queryOrderByOut($out_trade_no);
  208. if (is_array($result) && !empty($result)) {
  209. $trade_state = $result['trade_state']; //最终的交易状态,必须为SUCCESS才是交易成功
  210. $return_code = $result['result_code'];
  211. $trade_type = $result['trade_type']; //获取交易方式,这里使用的是扫码支付native
  212. $out_trade_no = $result['out_trade_no'];
  213. $total_amount = $result['total_fee'];
  214. $seller_id = $result['mch_id'];
  215. $auth_app_id = $result['appid'];
  216. $trade_no = $result['transaction_id'];
  217. $checkOrderStatus = Yii::$service->payment->wxpay->checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id);
  218. if ($checkOrderStatus) {
  219. return $this->updateOrderInfo($out_trade_no, $trade_no);
  220. }
  221. }
  222. }
  223. /**
  224. * 通过微信接口查询交易信息
  225. * @param unknown $out_trade_no
  226. */
  227. public function queryOrderByOut($out_trade_no)
  228. {
  229. $input = new \WxPayOrderQuery();
  230. $input->SetOut_trade_no($out_trade_no);
  231. $result = \WxPayApi::orderQuery($input);
  232. return $result;
  233. }
  234. /**
  235. * 把返回的支付参数方式改成数组以适应微信的api
  236. * 生成二维码图片会用到这个函数
  237. */
  238. protected function getStartBizContentAndSetPaymentMethod()
  239. {
  240. $currentOrderInfo = Yii::$service->order->getCurrentOrderInfo();
  241. if (isset($currentOrderInfo['products']) && is_array($currentOrderInfo['products'])) {
  242. $subject_arr = [];
  243. foreach ($currentOrderInfo['products'] as $product) {
  244. $subject_arr[] = $product['name'];
  245. }
  246. if (!empty($subject_arr)) {
  247. $subject = implode(',', $subject_arr);
  248. // 字符串太长会出问题,这里将产品的name链接起来,在截图一下
  249. if (strlen($subject) > $this->subjectMaxLength) {
  250. $subject = mb_substr($subject, 0, $this->subjectMaxLength);
  251. }
  252. //echo $subject;
  253. $increment_id = $currentOrderInfo['increment_id'];
  254. $base_grand_total = $currentOrderInfo['base_grand_total'];
  255. $total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  256. Yii::$service->payment->setPaymentMethod($currentOrderInfo['payment_method']);
  257. $products = $currentOrderInfo['products'];
  258. $productIds = '';
  259. if (is_array($products)) {
  260. foreach ($products as $product) {
  261. $productIds = $product['product_id'];
  262. break;
  263. }
  264. }
  265. return [
  266. 'increment_id' => $increment_id,
  267. 'total_amount' => $total_amount,
  268. 'subject' => $subject,
  269. 'coupon_code' => $currentOrderInfo['coupon_code'],
  270. 'product_ids' => $productIds,
  271. ];
  272. }
  273. }
  274. }
  275. /**
  276. * 检查订单是否合法
  277. * 如果每项验证都通过则返回真
  278. */
  279. public function checkOrder($trade_state, $return_code, $trade_type, $out_trade_no, $total_amount, $seller_id, $auth_app_id)
  280. {
  281. if ($trade_state != 'SUCCESS') {
  282. Yii::$service->helper->errors->add('request trade_state is not equle to SUCCESS');
  283. return false;
  284. }
  285. if ($return_code != 'SUCCESS') {
  286. Yii::$service->helper->errors->add('request return_code is not equle to SUCCESS');
  287. return false;
  288. }
  289. if ($trade_type != 'NATIVE') {
  290. Yii::$service->helper->errors->add('request trade_type is not equle to NATIVE');
  291. return false;
  292. }
  293. if (!$this->_order) {
  294. $this->_order = Yii::$service->order->getByIncrementId($out_trade_no);
  295. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  296. }
  297. if (!$this->_order) {
  298. Yii::$service->helper->errors->add('order increment id:{out_trade_no} is not exist.', ['out_trade_no' => $out_trade_no]);
  299. return false;
  300. }
  301. $base_grand_total = $this->_order['base_grand_total'];
  302. $order_total_amount = Yii::$service->page->currency->getCurrencyPrice($base_grand_total, 'CNY');
  303. if ((string)($order_total_amount * 100) != $total_amount) { //由于微信中是以分为单位所以必须乘以100,二维码页面也已经作了处理,单位都是分,$order_total_amount * 100要转为字符串再比较
  304. 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 ]);
  305. //return ['o' => $order_total_amount * 100, 't' => $total_amount]; //测试时便于观察订单金额和微信实际支付的金额,生产环境要注释掉
  306. return false;
  307. }
  308. return true;
  309. }
  310. /**
  311. * 微信 支付成功后,对订单的状态进行修改
  312. * 如果支付成功,则修改订单状态为支付成功状态。
  313. * @param $out_trade_no | string , fecshop的订单编号 increment_id
  314. * @param $trade_no | 微信支付交易号
  315. * @param isClearCart | boolean 是否清空购物车
  316. *
  317. */
  318. protected function updateOrderInfo($out_trade_no, $trade_no, $isClearCart=true)
  319. {
  320. if (!empty($out_trade_no) && !empty($trade_no)) {
  321. if ($this->paymentSuccess($out_trade_no, $trade_no)) {
  322. // 清空购物车
  323. if ($isClearCart) {
  324. Yii::$service->cart->clearCartProductAndCoupon();
  325. }
  326. return true;
  327. }
  328. } else {
  329. Yii::$service->helper->errors->add('wxpay payment fail,resultCode: {result_code}', ['result_code' => $resultCode]);
  330. return false;
  331. }
  332. }
  333. /**
  334. * @param $increment_id | String 订单号
  335. * @param $sendEmail | boolean 是否发送邮件
  336. * 订单支付成功后,需要更改订单支付状态等一系列的处理。
  337. */
  338. protected function paymentSuccess($increment_id, $trade_no, $sendEmail = true)
  339. {
  340. if (!$this->_order) {
  341. $this->_order = Yii::$service->order->getByIncrementId($increment_id);
  342. Yii::$service->payment->setPaymentMethod($this->_order['payment_method']);
  343. }
  344. // 【优化后的代码 ##】
  345. $orderstatus = Yii::$service->order->payment_status_confirmed;
  346. $updateArr['order_status'] = $orderstatus;
  347. $updateArr['txn_id'] = $trade_no; // 微信的交易号
  348. $updateColumn = $this->_order->updateAll(
  349. $updateArr,
  350. [
  351. 'and',
  352. ['order_id' => $this->_order['order_id']],
  353. ['in','order_status',$this->_allowChangOrderStatus]
  354. ]
  355. );
  356. if (!empty($updateColumn)) {
  357. // 发送邮件,以及其他的一些操作(订单支付成功后的操作)
  358. Yii::$service->order->orderPaymentCompleteEvent($this->_order['increment_id']);
  359. }
  360. // 【优化后的代码 ##】
  361. /* 注释掉的原来代码,上面进行了优化,保证更改只有一次,这样发邮件也就只有一次了
  362. // 如果订单状态已经是processing,那么,不需要更改订单状态了。
  363. if ($this->_order['order_status'] == Yii::$service->order->payment_status_confirmed){
  364. return true;
  365. }
  366. $order = $this->_order;
  367. if (isset($order['increment_id']) && $order['increment_id']) {
  368. // 如果支付成功,则更改订单状态为支付成功
  369. $order->order_status = Yii::$service->order->payment_status_confirmed;
  370. $order->txn_id = $trade_no; // 微信的交易号
  371. // 更新订单信息
  372. $order->save();
  373. Yii::$service->order->orderPaymentCompleteEvent($order['increment_id']);
  374. // 得到当前的订单信息
  375. // $orderInfo = Yii::$service->order->getOrderInfoByIncrementId($order['increment_id']);
  376. // 发送新订单邮件
  377. // Yii::$service->email->order->sendCreateEmail($orderInfo);
  378. return true;
  379. }
  380. */
  381. return true;
  382. }
  383. // 支付宝的 标示
  384. public function getWxpayHandle()
  385. {
  386. return 'wxpay_standard';
  387. }
  388. }