* @date 2016/10/18 12:38 */ class Push extends Controller { /** * 微信API推送事件处理 * @param string $appid * @return string * @throws \think\Exception * @throws \WeChat\Exceptions\InvalidDecryptException * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException * @throws \think\exception\PDOException */ public function notify($appid) { if ($appid === 'wx570bc396a51b8ff8') { # 全网发布接口测试 return \app\service\handler\PublishHandler::handler($appid); } else { # 接口类正常服务 return \app\service\handler\ReceiveHandler::handler($appid); } } /** * 一、处理服务推送Ticket * 二、处理取消公众号授权 * @return string * @throws \think\Exception * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\exception\PDOException */ public function ticket() { try { $server = WechatService::service(); if (!($data = $server->getComonentTicket())) { return "Ticket event handling failed."; } } catch (\Exception $e) { return "Ticket event handling failed, {$e->getMessage()}"; } if (!empty($data['AuthorizerAppid']) && isset($data['InfoType'])) { # 授权成功通知 if ($data['InfoType'] === 'authorized') { Db::name('WechatServiceConfig')->where(['authorizer_appid' => $data['AuthorizerAppid']])->update(['is_deleted' => '0']); } # 接收取消授权服务事件 if ($data['InfoType'] === 'unauthorized') { Db::name('WechatServiceConfig')->where(['authorizer_appid' => $data['AuthorizerAppid']])->update(['is_deleted' => '1']); } # 授权更新通知 if ($data['InfoType'] === 'updateauthorized') { $_GET['auth_code'] = $data['PreAuthCode']; $this->applyAuth($server); } } return 'success'; } /** * 网页授权 * @throws \think\Exception * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException */ public function oauth() { list($mode, $appid, $enurl, $sessid) = [ $this->request->get('mode'), $this->request->get('state'), $this->request->get('enurl'), $this->request->get('sessid'), ]; $service = WechatService::service(); $result = $service->getOauthAccessToken($appid); if (empty($result['openid'])) throw new \think\Exception('网页授权失败, 无法进一步操作!'); cache("{$appid}_{$sessid}_openid", $result['openid'], 3600); if (!empty($mode)) { $wechat = new \WeChat\Oauth($service->getConfig($appid)); $fans = $wechat->getUserInfo($result['access_token'], $result['openid']); if (empty($fans)) throw new \think\Exception('网页授权信息获取失败, 无法进一步操作!'); cache("{$appid}_{$sessid}_fans", $fans, 3600); } redirect(decode($enurl), [], 301)->send(); } /** * 跳转到微信服务授权页面 * @param string $redirect * @return string * @throws \think\Exception * @throws \WeChat\Exceptions\InvalidResponseException * @throws \WeChat\Exceptions\LocalCacheException * @throws \think\exception\PDOException */ public function auth($redirect = '') { $fromRedirect = decode($redirect); if (empty($redirect) || empty($fromRedirect)) { return '请传入回跳Redirect参数 ( 请使用ENCODE加密 )'; } # 预授权码不为空,则表示可以进行授权处理 $service = WechatService::service(); if (($auth_code = $this->request->get('auth_code'))) { return $this->applyAuth($service, $fromRedirect); } # 生成微信授权链接,使用刷新跳转到授权网页 $url = url("@service/api.push/auth/{$redirect}", false, true, true); if (($redirect = $service->getAuthRedirect($url))) { ob_clean(); header("Refresh:0;url={$redirect}"); return "跳转中..."; } # 生成微信授权链接失败 return "