WxtWechatAction.class.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288
  1. <?php
  2. class WxtWechatAction extends CommonAction {
  3. public function oauth2( ){
  4. $config = array(
  5. 'appid' =>C('WECHAT_APPID'),
  6. 'appsecret'=>C('WECHAT_APPSECRET'),
  7. 'token' =>'',
  8. 'token_cache_func'=>wx_token_cache,
  9. );
  10. $weixin = new \Tencent\wechat($config);
  11. $callback = pb_abs_url('wxt_wechat/oauth2_userinfo');
  12. $state = str2hex(I('get.uri'));
  13. $redirect_uri = $weixin->getOauthRedirect($callback,$state);
  14. header('Location: '.$redirect_uri);
  15. }
  16. public function callback( ){
  17. $config = array(
  18. 'appid' =>C('WECHAT_APPID'),
  19. 'appsecret'=>C('WECHAT_APPSECRET'),
  20. 'token' => '',
  21. 'token_cache_func'=>wx_token_cache
  22. );
  23. $weixin = new \Tencent\wechat($config);
  24. $type = $weixin->getRev()->getRevType();
  25. $openid = $weixin->getRev()->getRevFrom();
  26. $data = $weixin->getRevData();
  27. $userinfo = $weixin->getUserInfo($openid);
  28. switch($type) {
  29. case 'text':
  30. $content = $weixin->getRev()->getRevContent();
  31. $reply = $this->on_text($openid,$content,$userinfo);
  32. break;
  33. case 'event':
  34. $event = $weixin->getRev()->getRevEvent();
  35. $reply = $this->on_event($event,$openid,$userinfo);
  36. break;
  37. /* case 'image':
  38. $content = $weixin->getRev()->getRevPic();
  39. $reply = $this->on_image($content);
  40. break;
  41. case 'location':
  42. $content = $weixin->getRev()->getRevGeo();
  43. $reply = $this->on_location($openid,$content['x'],$content['y'],$content['label']);
  44. break;*/
  45. default:
  46. $reply = $this->on_other();
  47. }
  48. if($reply){
  49. echo $weixin->text($reply)->reply();
  50. }
  51. else{
  52. echo 'success';
  53. }
  54. }
  55. public function oauth2_userinfo( ){
  56. $config = array(
  57. 'appid' =>C('WECHAT_APPID'),
  58. 'appsecret'=>C('WECHAT_APPSECRET'),
  59. 'token' =>'',
  60. 'token_cache_func'=>wx_token_cache,
  61. );
  62. $weixin = new \Tencent\wechat($config);
  63. $token = $weixin->getOauthAccessToken();
  64. //echo json_encode($token);exit;
  65. if(!$token){
  66. $this->on_oauth2_failed();
  67. return;
  68. }
  69. $access_token = $token['access_token'];
  70. $openid = $token['openid'];
  71. $userinfo = $weixin->getOauthUserinfo($access_token,$openid);
  72. if(!$userinfo){
  73. $this->on_oauth2_failed();
  74. return;
  75. }
  76. $this->on_oauth2_userinfo($userinfo);
  77. $a = hex2str( I('get.state') );
  78. if(strpos($a,'?') !== false){
  79. $uri = htmlspecialchars_decode(hex2str( I('get.state') )) . '&openid='.$openid;
  80. }else{
  81. $uri = htmlspecialchars_decode(hex2str( I('get.state') )) . '?openid='.$openid;
  82. }
  83. if(isset($userinfo['unionid']) && $userinfo['unionid']){
  84. $uri .= "&unionid={$userinfo['unionid']}";
  85. }
  86. header('Location: '.pb_abs_url($uri) );
  87. }
  88. private function on_oauth2_userinfo( $userinfo ){
  89. echo json_encode($userinfo);
  90. }
  91. public function on_oauth2_failed( ){
  92. }
  93. private function on_event( $event, $openid, $userinfo ){
  94. if($event['event'] == "subscribe")
  95. return $this->on_event_subscribe($openid,$userinfo);
  96. else if($event['event'] == "unsubscribe")
  97. return $this->on_event_unsubscribe($openid);
  98. else
  99. return $event['event'];
  100. }
  101. private function on_event_subscribe( $openid, $userinfo ){
  102. // 添加映射关系
  103. $this->add_union_map($openid,$userinfo['unionid']);
  104. $this->add_user_info($userinfo);
  105. return '欢迎关注O(∩_∩)O';
  106. }
  107. private function on_event_unsubscribe( $openid ){
  108. // 移除映射关系
  109. $this->remove_union_map($openid);
  110. }
  111. private function on_text( $openid, $msg, $userinfo ){
  112. if( $msg == '联盾行车卫士' ){
  113. $res = $this->add_union_map($openid,$userinfo['unionid'],$msg);
  114. return $res['message'];
  115. }
  116. //return '欢迎关注O(∩_∩)O';
  117. }
  118. public function send_text_msg( $openid, $msg ){
  119. $config = array(
  120. 'appid' =>C('WECHAT_APPID'),
  121. 'appsecret'=>C('WECHAT_APPSECRET'),
  122. 'token' =>'',
  123. );
  124. $weixin = new \Tencent\wechat($config);
  125. $data = array(
  126. "touser" => $openid,
  127. "msgtype"=> "text",
  128. "text" => array("content"=>$msg)
  129. );
  130. return $weixin->sendCustomMessage($data);
  131. }
  132. private function on_other( ){
  133. return 'other';
  134. }
  135. public function on_image( ){
  136. }
  137. public function on_location( ){
  138. }
  139. private function add_union_map( $openid, $unionid, $text = "" ){
  140. if(!$openid){
  141. return array('success' => false, 'message' => 'missing openid');
  142. }
  143. if(!$unionid){
  144. return array('success' => false, 'message' => 'missing unionid');
  145. }
  146. // 检查是否存在
  147. $wx_union_map = M('wx_union_map');
  148. $where = array(
  149. 'GzhOpenId' => $openid,
  150. 'UnionId' => $unionid
  151. );
  152. if($wx_union_map->where($where)->count()){
  153. return array('success' => true, 'message' => "已关联【{$text}】");
  154. }
  155. // 不存在则添加一条记录
  156. $add_data = array(
  157. 'ID' => create_guid(),
  158. 'GzhOpenId' => $openid,
  159. 'UnionId' => $unionid,
  160. 'AddTime' => date('Y-m-d H:i:s')
  161. );
  162. $res = $wx_union_map->createAdd($add_data);
  163. if($res === false){
  164. return array('success' => false, 'message' => '出错了,请稍后再试');
  165. }
  166. return array('success' => true, 'message' => "关联【{$text}】成功");
  167. }
  168. function site_and_qrcode( ){
  169. $cityid = I('get.cityid');
  170. if(!$cityid){
  171. exit("<script>alert('未获取到所在城市')</script>");
  172. }
  173. //预约单信息
  174. $deviceNum = I('get.deviceNum');
  175. if(empty($deviceNum)){
  176. exit("<script>alert('未获取到订单编号')</script>");
  177. }
  178. $hospitalId = I('get.hospitalId');
  179. $qrCode = new \Endroid\QrCode\QrCode($deviceNum);
  180. $qrCode->setSize(200);
  181. $endroidQrCode = $qrCode->writeString();
  182. $qrCode = base64_encode($endroidQrCode);
  183. //网点信息
  184. $uc_user = M('uc_user');
  185. $where = array('CityId'=>$cityid);
  186. if($hospitalId){
  187. $where['ID'] = $hospitalId;
  188. }
  189. $places = M('pets_hospital')->where($where)->order('Qualification DESC')->select();
  190. foreach($places as &$item){
  191. $where = array('ID'=>$item['PrincipalId']);
  192. $item['Mobile'] = $uc_user->where($where)->getField('Mobile');
  193. }
  194. $this->assign('deviceNum',$deviceNum);
  195. $this->assign('qrCode',$qrCode);
  196. $this->assign('places',$places);
  197. $this->display();
  198. }
  199. private function remove_union_map( $openid, $text = "" ){
  200. if(!$openid){
  201. return array('success' => false, 'message' => 'missing openid');
  202. }
  203. // 检查是否存在
  204. $wx_union_map = M('wx_union_map');
  205. $where = array(
  206. 'GzhOpenId' => $openid,
  207. );
  208. if(!$wx_union_map->where($where)->count()){
  209. return array('success' => true, 'message' => "已移除【{$text}】");
  210. }
  211. // 存在则移除条记录
  212. $res = $wx_union_map->where($where)->delete();
  213. if($res === false){
  214. return array('success' => false, 'message' => '出错了,请稍后再试');
  215. }
  216. return array('success' => true, 'message' => "解除关联【{$text}】成功");
  217. }
  218. private function add_user_info( $userinfo ){
  219. $uc_user = M('uc_user');
  220. $cond = array('UnionId'=>$userinfo['unionid']);
  221. $id = $uc_user->where($cond)->getField('ID');
  222. // 用户不存在,添加信息
  223. if(!$id){
  224. $save_data = array(
  225. 'UnionId'=>$userinfo['unionid'],
  226. 'Avatar'=>$userinfo['headimgurl'],
  227. 'RealName'=>$userinfo['nickname']
  228. );
  229. $save_data['ID'] = create_guid();
  230. $uc_user->createAdd($save_data);
  231. }
  232. return array('success' => true, 'message' => "添加成功");
  233. }
  234. }