WxPay.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377
  1. <?php
  2. namespace app\common\library;
  3. use app\common\model\Config;
  4. use think\Controller;
  5. use think\Facade;
  6. use EasyWeChat\Factory;
  7. class WxPay extends Controller
  8. {
  9. /*
  10. 配置参数
  11. */
  12. public function __construct()
  13. {
  14. // $this->appid = Config::get_values('small_wechat_id');
  15. $this->appid = Config::get_values('wechat_appid');
  16. $this->api_key = Config::get_values('wechat_mch_key');
  17. $this->mch_id = Config::get_values('wechat_mch_id');
  18. }
  19. public function retrunconfig(){
  20. $config = [
  21. 'app_id' => Config::get_values('wechat_appid'),
  22. 'mch_id' =>Config::get_values('wechat_mch_id'),
  23. 'key' =>Config::get_values('wechat_mch_key')
  24. ];
  25. return $config;
  26. }
  27. //获取预支付订单
  28. public function getPrePayOrder($body, $out_trade_no, $total_fee, $notify_url,$come,$openid){
  29. $url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
  30. $onoce_str = $this->getRandChar(32);
  31. $data["appid"] = $this->appid;
  32. $data["body"] = $body;
  33. $data["mch_id"] = $this->mch_id;
  34. $data["nonce_str"] = $onoce_str;
  35. $data["notify_url"] = $notify_url;
  36. $data["out_trade_no"] = $out_trade_no;
  37. $data["spbill_create_ip"] = $this->get_client_ip();
  38. $data["total_fee"] = floatval($total_fee);
  39. //$data["trade_type"] = $come=='weixin' ? "JSAPI" : "APP";
  40. $data["trade_type"] = "APP";
  41. $data['sign_type'] = "MD5";
  42. // if ($come=='weixin'){
  43. // $data['openid'] = $openid;
  44. // }
  45. $s = $this->getSign($data);
  46. $data["sign"] = $s;
  47. $xml = $this->arrayToXml($data);
  48. $response = $this->postXmlCurl($xml, $url);
  49. //将微信返回的结果xml转成数组
  50. //return $this->xmlstr_to_array($response);
  51. return $this->xmlToArray($response);
  52. }
  53. public function wxrefund($out_trade_no,$out_refund_no,$total_fee,$refund_fee)
  54. {
  55. $param = array(
  56. 'appid'=> $this->appid,
  57. 'mch_id'=> $this->mch_id,
  58. 'nonce_str'=> $this->getRandChar(32),
  59. 'out_trade_no'=>$out_trade_no,
  60. 'out_refund_no'=>$out_refund_no,//订单号
  61. // 'transaction_id'=> $transactionId,//微信订单号
  62. 'total_fee'=> $total_fee*100,
  63. 'refund_fee'=>$refund_fee*100
  64. );
  65. $param['sign'] = $this->getSign($param);
  66. $xmldata = $this->arrayToXml($param);
  67. $xmlresult = $this->postXmlSSLCurl($xmldata,'https://api.mch.weixin.qq.com/secapi/pay/refund');
  68. $result = $this->xmlToArray($xmlresult);
  69. return $result;
  70. }
  71. //执行第二次签名,才能返回给客户端使用
  72. public function getOrder($prepayId){
  73. $data["appid"] = $this->appid;
  74. $data["noncestr"] = $this->getRandChar(32);
  75. $data["package"] = "Sign=WXPay";
  76. // $data['package'] = "prepay_id=".$prepayId;
  77. $data["partnerid"] = $this->mch_id;
  78. $data["prepayid"] = $prepayId;
  79. $data["signType"] = "MD5";
  80. $data["timestamp"] = '' . time() . '';
  81. $s = $this->getSign($data, false);
  82. $data["sign"] = $s;
  83. return $data;
  84. }
  85. /*
  86. 生成签名
  87. */
  88. function getSign($Obj)
  89. {
  90. foreach ($Obj as $k => $v)
  91. {
  92. $Parameters[strtolower($k)] = $v;
  93. }
  94. //签名步骤一:按字典序排序参数
  95. ksort($Parameters);
  96. $String = $this->formatBizQueryParaMap($Parameters, false);
  97. //echo "【string】 =".$String."</br>";
  98. //签名步骤二:在string后加入KEY
  99. $String = $String."&key=".$this->api_key;
  100. // echo "<textarea style='width: 50%; height: 150px;'>$String</textarea> <br />";
  101. //签名步骤三:MD5加密
  102. $result_ = strtoupper(md5($String));
  103. return $result_;
  104. }
  105. //获取指定长度的随机字符串
  106. function getRandChar($length){
  107. $str = null;
  108. $strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";
  109. $max = strlen($strPol)-1;
  110. for($i=0;$i<$length;$i++){
  111. $str.=$strPol[rand(0,$max)];//rand($min,$max)生成介于min和max两个数之间的一个随机整数
  112. }
  113. return $str;
  114. }
  115. //数组转xml
  116. function arrayToXml($arr)
  117. {
  118. $xml = "<xml>";
  119. foreach ($arr as $key=>$val)
  120. {
  121. if (is_numeric($val))
  122. {
  123. $xml.="<".$key.">".$val."</".$key.">";
  124. }
  125. else
  126. $xml.="<".$key."><![CDATA[".$val."]]></".$key.">";
  127. }
  128. $xml.="</xml>";
  129. return $xml;
  130. }
  131. //post https请求,CURLOPT_POSTFIELDS xml格式
  132. function postXmlCurl($xml,$url,$second=30)
  133. {
  134. //初始化curl
  135. $ch = curl_init();
  136. //超时时间
  137. curl_setopt($ch,CURLOPT_TIMEOUT,$second);
  138. //这里设置代理,如果有的话
  139. //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
  140. //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
  141. curl_setopt($ch,CURLOPT_URL, $url);
  142. curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
  143. curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
  144. //设置header
  145. curl_setopt($ch, CURLOPT_HEADER, FALSE);
  146. //要求结果为字符串且输出到屏幕上
  147. curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  148. //post提交方式
  149. curl_setopt($ch, CURLOPT_POST, TRUE);
  150. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml);
  151. //运行curl
  152. $data = curl_exec($ch);
  153. //返回结果
  154. if($data)
  155. {
  156. curl_close($ch);
  157. return $data;
  158. }
  159. else
  160. {
  161. $error = curl_errno($ch);
  162. echo "curl出错,错误码:$error"."<br>";
  163. echo "<a href='http://curl.haxx.se/libcurl/c/libcurl-errors.html'>错误原因查询</a></br>";
  164. curl_close($ch);
  165. return false;
  166. }
  167. }
  168. //需要使用证书的请求
  169. private function postXmlSSLCurl($xml,$url,$second=30)
  170. {
  171. $ch = curl_init();
  172. //超时时间
  173. curl_setopt($ch,CURLOPT_TIMEOUT,$second);
  174. //这里设置代理,如果有的话
  175. //curl_setopt($ch,CURLOPT_PROXY, '8.8.8.8');
  176. //curl_setopt($ch,CURLOPT_PROXYPORT, 8080);
  177. curl_setopt($ch,CURLOPT_URL, $url);
  178. curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
  179. curl_setopt($ch,CURLOPT_SSL_VERIFYHOST,FALSE);
  180. //设置header
  181. curl_setopt($ch,CURLOPT_HEADER,FALSE);
  182. //要求结果为字符串且输出到屏幕上
  183. curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  184. //设置证书
  185. //使用证书:cert 与 key 分别属于两个.pem文件
  186. //默认格式为PEM,可以注释
  187. curl_setopt($ch,CURLOPT_SSLCERTTYPE,'PEM');
  188. curl_setopt($ch,CURLOPT_SSLCERT, dirname(__DIR__) . '/wxcert/apiclient_cert.pem');
  189. //默认格式为PEM,可以注释
  190. curl_setopt($ch,CURLOPT_SSLKEYTYPE,'PEM');
  191. curl_setopt($ch,CURLOPT_SSLKEY, dirname(__DIR__) . '/wxcert/apiclient_key.pem');
  192. //post提交方式
  193. curl_setopt($ch,CURLOPT_POST, true);
  194. curl_setopt($ch,CURLOPT_POSTFIELDS,$xml);
  195. $data = curl_exec($ch);
  196. //返回结果
  197. if($data){
  198. curl_close($ch);
  199. return $data;
  200. }
  201. else {
  202. $error = curl_errno($ch);
  203. echo "curl出错,错误码:$error"."<br>";
  204. curl_close($ch);
  205. return false;
  206. }
  207. }
  208. /*
  209. 获取当前服务器的IP
  210. */
  211. function get_client_ip()
  212. {
  213. if ($_SERVER['REMOTE_ADDR']) {
  214. $cip = $_SERVER['REMOTE_ADDR'];
  215. } elseif (getenv("REMOTE_ADDR")) {
  216. $cip = getenv("REMOTE_ADDR");
  217. } elseif (getenv("HTTP_CLIENT_IP")) {
  218. $cip = getenv("HTTP_CLIENT_IP");
  219. } else {
  220. $cip = "unknown";
  221. }
  222. return $cip;
  223. }
  224. //将数组转成uri字符串
  225. function formatBizQueryParaMap($paraMap, $urlencode)
  226. {
  227. $buff = "";
  228. ksort($paraMap);
  229. foreach ($paraMap as $k => $v)
  230. {
  231. if($urlencode)
  232. {
  233. $v = urlencode($v);
  234. }
  235. $buff .= strtolower($k) . "=" . $v . "&";
  236. }
  237. $reqPar;
  238. if (strlen($buff) > 0)
  239. {
  240. $reqPar = substr($buff, 0, strlen($buff)-1);
  241. }
  242. return $reqPar;
  243. }
  244. /**
  245. xml转成数组
  246. */
  247. // function xmlstr_to_array($xmlstr) {
  248. // $doc = new DOMDocument();
  249. // $doc->loadXML($xmlstr);
  250. // return $this->domnode_to_array($doc->documentElement);
  251. // }
  252. function domnode_to_array($node) {
  253. $output = array();
  254. switch ($node->nodeType) {
  255. case XML_CDATA_SECTION_NODE:
  256. case XML_TEXT_NODE:
  257. $output = trim($node->textContent);
  258. break;
  259. case XML_ELEMENT_NODE:
  260. for ($i=0, $m=$node->childNodes->length; $i<$m; $i++) {
  261. $child = $node->childNodes->item($i);
  262. $v = $this->domnode_to_array($child);
  263. if(isset($child->tagName)) {
  264. $t = $child->tagName;
  265. if(!isset($output[$t])) {
  266. $output[$t] = array();
  267. }
  268. $output[$t][] = $v;
  269. }
  270. elseif($v) {
  271. $output = (string) $v;
  272. }
  273. }
  274. if(is_array($output)) {
  275. if($node->attributes->length) {
  276. $a = array();
  277. foreach($node->attributes as $attrName => $attrNode) {
  278. $a[$attrName] = (string) $attrNode->value;
  279. }
  280. $output['@attributes'] = $a;
  281. }
  282. foreach ($output as $t => $v) {
  283. if(is_array($v) && count($v)==1 && $t!='@attributes') {
  284. $output[$t] = $v[0];
  285. }
  286. }
  287. }
  288. break;
  289. }
  290. return $output;
  291. }
  292. // public function xmltoarray( $xml )
  293. // {
  294. // $arr = $this->xml_to_array($xml);
  295. // $key = array_keys($arr);
  296. // return $arr[$key[0]];
  297. // }
  298. /**
  299. * 作用:将xml转为array
  300. */
  301. public function xmlToArray($xml)
  302. {
  303. //将XML转为array
  304. $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  305. return $array_data;
  306. }
  307. public function xml_to_array( $xml )
  308. {
  309. $reg = "/<(\\w+)[^>]*?>([\\x00-\\xFF]*?)<\\/\\1>/";
  310. if(preg_match_all($reg, $xml, $matches))
  311. {
  312. $count = count($matches[0]);
  313. $arr = array();
  314. for($i = 0; $i < $count; $i++)
  315. {
  316. $key = $matches[1][$i];
  317. $val = $this->xml_to_array( $matches[2][$i] ); // 递归
  318. if(array_key_exists($key, $arr))
  319. {
  320. if(is_array($arr[$key]))
  321. {
  322. if(!array_key_exists(0,$arr[$key]))
  323. {
  324. $arr[$key] = array($arr[$key]);
  325. }
  326. }else{
  327. $arr[$key] = array($arr[$key]);
  328. }
  329. $arr[$key][] = $val;
  330. }else{
  331. $arr[$key] = $val;
  332. }
  333. }
  334. return $arr;
  335. }else{
  336. return $xml;
  337. }
  338. }
  339. }