Wx.php 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\Config;
  4. use think\Db;
  5. use think\Request;
  6. use app\common\model\User as Users;
  7. use think\facade\Validate;
  8. use app\common\controller\Api;
  9. class Wx extends Api
  10. {
  11. //微信授权消息
  12. public function sendmessage(){
  13. if (isset($_GET['echostr'])) { //校验服务器地址URL
  14. self::valid();
  15. }
  16. $img = Db::name('config')->where('name','bot_img')->value('value');
  17. $img = str_replace('http://'.$_SERVER['SERVER_NAME'],'',$img);
  18. $postStr = file_get_contents('php://input'); //此处推荐使用file_get_contents('php://input')获取后台post过来的数据
  19. if (!empty($postStr) && is_string($postStr)) {
  20. $postArr = json_decode($postStr, true);
  21. if ($postArr['MsgType'] == 'event' && $postArr['Event'] == 'user_enter_tempsession') { //用户进入客服后马上回复,现在已失效,需要用户先发过消息
  22. $fromUsername = $postArr['FromUserName']; //发送者openid
  23. $imgurl = $img; //公众号二维码,相对路径,修改为自己的
  24. $media_id = self::getMediaId($imgurl); //获取图片消息的media_id
  25. $data = array(
  26. "touser" => $fromUsername,
  27. "msgtype" => "image",
  28. "image" => array("media_id" => $media_id)
  29. );
  30. $json = json_encode($data, JSON_UNESCAPED_UNICODE); //php5.4+
  31. self::requestAPI($json);
  32. }elseif ($postArr['MsgType'] !== 'event') { //用户发送其他内容,引导加客服
  33. $fromUsername = $postArr['FromUserName']; //发送者openid
  34. $imgurl = $img; //公众号二维码,相对路径,修改为自己的
  35. $media_id = self::getMediaId($imgurl); //获取图片消息的media_id
  36. $data = array(
  37. "touser" => $fromUsername,
  38. "msgtype" => "image",
  39. "image" => array("media_id" => $media_id)
  40. );
  41. $json = json_encode($data, JSON_UNESCAPED_UNICODE); //php5.4+
  42. self::requestAPI($json);
  43. }
  44. } else {
  45. echo "empty";
  46. exit;
  47. }
  48. }
  49. public static function valid()
  50. {
  51. $echoStr = $_GET["echostr"];
  52. if (self::checkSignature()) {
  53. header('content-type:text');
  54. echo $echoStr;
  55. exit;
  56. } else {
  57. echo $echoStr . '+++' . 'k8h5qu8znxxxxxxjazm76';
  58. exit;
  59. }
  60. }
  61. public static function checkSignature()
  62. {
  63. $signature = $_GET["signature"];
  64. $timestamp = $_GET["timestamp"];
  65. $nonce = $_GET["nonce"];
  66. $token = 'k8h5qu8znxxxxxxjazm76';
  67. $tmpArr = array($token, $timestamp, $nonce);
  68. sort($tmpArr, SORT_STRING);
  69. $tmpStr = implode($tmpArr);
  70. $tmpStr = sha1($tmpStr);
  71. if ($tmpStr == $signature) {
  72. return true;
  73. } else {
  74. return false;
  75. }
  76. }
  77. public static function requestAPI($json)
  78. {
  79. $access_token = self::get_accessToken();
  80. /*
  81. * POST发送https请求客服接口api
  82. */
  83. $url = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=" . $access_token;
  84. //以'json'格式发送post的https请求
  85. $curl = curl_init();
  86. curl_setopt($curl, CURLOPT_URL, $url);
  87. curl_setopt($curl, CURLOPT_POST, 1); // 发送一个常规的Post请求
  88. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  89. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, FALSE);
  90. if (!empty($json)) {
  91. curl_setopt($curl, CURLOPT_POSTFIELDS, $json);
  92. }
  93. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  94. //curl_setopt($curl, CURLOPT_HTTPHEADER, $headers );
  95. $output = curl_exec($curl);
  96. if (curl_errno($curl)) {
  97. echo 'Errno' . curl_error($curl);//捕抓异常
  98. }
  99. curl_close($curl);
  100. if ($output == 0) {
  101. echo 'success';
  102. exit;
  103. }
  104. }
  105. /* 调用微信api,获取access_token,有效期7200s*/
  106. public static function get_accessToken()
  107. {
  108. $appid = Config::get_values('wechat_appid');
  109. $secret = Config::get_values('wechat_appsecret');
  110. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$secret.""; //替换成自己的小程序id和secret
  111. @$weixin = file_get_contents($url);
  112. @$jsondecode = json_decode($weixin);
  113. @$array = get_object_vars($jsondecode);
  114. $token = $array['access_token'];
  115. return $token;
  116. }
  117. //获取上传图片的media_id
  118. public static function getMediaId($imgurl)
  119. {
  120. $token = self::get_accessToken();
  121. $url = "https://api.weixin.qq.com/cgi-bin/media/upload?access_token={$token}&type=image";
  122. // echo $url;
  123. $ch1 = curl_init();
  124. $timeout = 10;
  125. $real_path = "{$_SERVER['DOCUMENT_ROOT']}$imgurl";//自动转成图片文件绝对路径,如果图片发送失败,检查PHP的$_SERVER['DOCUMENT_ROOT'的配置
  126. // echo $real_path;
  127. $data = array("media" => new \CURLFile("{$real_path}"));//php5.6(含)以上版本使用此方法
  128. // print_r($data);
  129. curl_setopt($ch1, CURLOPT_URL, $url);
  130. curl_setopt($ch1, CURLOPT_POST, 1);
  131. curl_setopt($ch1, CURLOPT_RETURNTRANSFER, 1);
  132. curl_setopt($ch1, CURLOPT_CONNECTTIMEOUT, $timeout);
  133. curl_setopt($ch1, CURLOPT_SSL_VERIFYPEER, FALSE);
  134. curl_setopt($ch1, CURLOPT_SSL_VERIFYHOST, false);
  135. curl_setopt($ch1, CURLOPT_POSTFIELDS, $data);
  136. $result = curl_exec($ch1);
  137. //print_r( $result);
  138. curl_close($ch1);
  139. if ($result) {
  140. $result = json_decode($result, true);
  141. return $result['media_id'];
  142. } else {
  143. return null;
  144. }
  145. }
  146. }