WxService.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace app\common\library;
  3. class WxService
  4. {
  5. protected $appid;
  6. protected $appKey;
  7. public $data = null;
  8. public function __construct($appid, $appKey)
  9. {
  10. $this->appid = $appid; //微信支付申请对应的公众号的APPID
  11. $this->appKey = $appKey; //微信支付申请对应的公众号的APP Key
  12. }
  13. /**
  14. * 通过跳转获取用户的openid,跳转流程如下:
  15. * 1、设置自己需要调回的url及其其他参数,跳转到微信服务器https://open.weixin.qq.com/connect/oauth2/authorize
  16. * 2、微信服务处理完成之后会跳转回用户redirect_uri地址,此时会带上一些参数,如:code
  17. *
  18. * @return 用户的openid
  19. */
  20. public function GetOpenid()
  21. {
  22. //通过code获得openid
  23. if (!isset($_GET['code'])){
  24. //触发微信返回code码
  25. $baseUrl = $this->getCurrentUrl();
  26. $url = $this->__CreateOauthUrlForCode($baseUrl);
  27. Header("Location: $url");
  28. exit();
  29. } else {
  30. //获取code码,以获取openid
  31. $code = $_GET['code'];
  32. $openid = $this->getOpenidFromMp($code);
  33. return $openid;
  34. }
  35. }
  36. public function getCurrentUrl()
  37. {
  38. $scheme = $_SERVER['HTTPS']=='on' ? 'https://' : 'http://';
  39. $uri = $_SERVER['PHP_SELF'].$_SERVER['QUERY_STRING'];
  40. if($_SERVER['REQUEST_URI']) $uri = $_SERVER['REQUEST_URI'];
  41. $baseUrl = urlencode($scheme.$_SERVER['HTTP_HOST'].$uri);
  42. return $baseUrl;
  43. }
  44. /**
  45. * 通过code从工作平台获取openid机器access_token
  46. * @param string $code 微信跳转回来带上的code
  47. * @return openid
  48. */
  49. public function GetOpenidFromMp($code)
  50. {
  51. $url = $this->__CreateOauthUrlForOpenid($code);
  52. $res = self::curlGet($url);
  53. $data = json_decode($res,true);
  54. $this->data = $data;
  55. return $data;
  56. }
  57. /**
  58. * 构造获取open和access_toke的url地址
  59. * @param string $code,微信跳转带回的code
  60. * @return 请求的url
  61. */
  62. private function __CreateOauthUrlForOpenid($code)
  63. {
  64. $urlObj["appid"] = $this->appid;
  65. $urlObj["secret"] = $this->appKey;
  66. $urlObj["code"] = $code;
  67. $urlObj["grant_type"] = "authorization_code";
  68. $bizString = $this->ToUrlParams($urlObj);
  69. return "https://api.weixin.qq.com/sns/oauth2/access_token?".$bizString;
  70. }
  71. /**
  72. * 构造获取code的url连接
  73. * @param string $redirectUrl 微信服务器回跳的url,需要url编码
  74. * @return 返回构造好的url
  75. */
  76. private function __CreateOauthUrlForCode($redirectUrl)
  77. {
  78. $urlObj["appid"] = $this->appid;
  79. $urlObj["redirect_uri"] = "$redirectUrl";
  80. $urlObj["response_type"] = "code";
  81. $urlObj["scope"] = "snsapi_userinfo";
  82. $urlObj["state"] = "STATE";
  83. $bizString = $this->ToUrlParams($urlObj);
  84. return "https://open.weixin.qq.com/connect/oauth2/authorize?".$bizString;
  85. }
  86. /**
  87. * 拼接签名字符串
  88. * @param array $urlObj
  89. * @return 返回已经拼接好的字符串
  90. */
  91. private function ToUrlParams($urlObj)
  92. {
  93. $buff = "";
  94. foreach ($urlObj as $k => $v)
  95. {
  96. if($k != "sign") $buff .= $k . "=" . $v . "&";
  97. }
  98. $buff = trim($buff, "&");
  99. return $buff;
  100. }
  101. /**
  102. * 获取用户信息
  103. * @param string $openid 调用【网页授权获取用户信息】接口获取到用户在该公众号下的Openid
  104. * @return string
  105. */
  106. public function getUserInfo($openid,$access_token)
  107. {
  108. $response = self::curlGet('https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid.'&lang=zh_CN');
  109. return json_decode($response,true);
  110. }
  111. public static function curlGet($url = '', $options = array())
  112. {
  113. $ch = curl_init($url);
  114. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  115. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  116. if (!empty($options)) {
  117. curl_setopt_array($ch, $options);
  118. }
  119. //https请求 不验证证书和host
  120. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  121. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  122. $data = curl_exec($ch);
  123. curl_close($ch);
  124. return $data;
  125. }
  126. public static function curlPost($url = '', $postData = '', $options = array())
  127. {
  128. if (is_array($postData)) {
  129. $postData = http_build_query($postData);
  130. }
  131. $ch = curl_init();
  132. curl_setopt($ch, CURLOPT_URL, $url);
  133. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  134. curl_setopt($ch, CURLOPT_POST, 1);
  135. curl_setopt($ch, CURLOPT_POSTFIELDS, $postData);
  136. curl_setopt($ch, CURLOPT_TIMEOUT, 30); //设置cURL允许执行的最长秒数
  137. if (!empty($options)) {
  138. curl_setopt_array($ch, $options);
  139. }
  140. //https请求 不验证证书和host
  141. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  142. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  143. $data = curl_exec($ch);
  144. curl_close($ch);
  145. return $data;
  146. }
  147. }