WxPay.php 13 KB

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