diff --git a/app/wechat/Service.php b/app/wechat/Service.php index 339a087c5..3f304bf5d 100644 --- a/app/wechat/Service.php +++ b/app/wechat/Service.php @@ -56,12 +56,12 @@ class Service extends Plugin $this->commands([Fans::class, Auto::class, Clear::class]); // 注册粉丝关注事件 - $this->app->event->listen('WechatFansSubscribe', function ($openid) { + $this->app->event->listen('WechatFansSubscribe', static function ($openid) { AutoService::register($openid); }); // 注册支付通知路由 - $this->app->route->any('/plugin-wxpay-notify/:vars', function (Request $request) { + $this->app->route->any('/plugin-wxpay-notify/:vars', static function (Request $request) { try { $data = json_decode(CodeExtend::deSafe64($request->param('vars')), true); return PaymentService::notify($data); diff --git a/app/wechat/service/WechatService.php b/app/wechat/service/WechatService.php index 998b4ff83..39280cc3b 100644 --- a/app/wechat/service/WechatService.php +++ b/app/wechat/service/WechatService.php @@ -236,7 +236,6 @@ class WechatService extends Service { $appid = static::getAppid(); $sessid = Library::$sapp->session->getId(); - $script = $openid = Library::$sapp->session->get("{$appid}_openid"); $userinfo = Library::$sapp->session->get("{$appid}_fansinfo"); if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { @@ -258,16 +257,26 @@ class WechatService extends Service $oauthurl = $wechat->getOauthRedirect($location, $appid, $isfull ? 'snsapi_userinfo' : 'snsapi_base'); throw new HttpResponseException($redirect ? redirect($oauthurl, 301) : response("location.href='{$oauthurl}'")); } elseif (($token = $wechat->getOauthAccessToken($getVars['code'])) && isset($token['openid'])) { - Library::$sapp->session->set("{$appid}_openid", $openid = $token['openid']); + $openid = $token['openid']; + // 如果是虚拟账号,不保存会话信息,下次重新授权 + if (empty($token['is_snapshotuser'])) { + Library::$sapp->session->set("{$appid}_openid", $openid); + } if ($isfull && isset($token['access_token'])) { $userinfo = $wechat->getUserInfo($token['access_token'], $openid); - Library::$sapp->session->set("{$appid}_fansinfo", $userinfo); - empty($userinfo) || FansService::set($userinfo, $appid); + // 如果是虚拟账号,不保存会话信息,下次重新授权 + if (empty($token['is_snapshotuser'])) { + $userinfo['is_snapshotuser'] = 0; + Library::$sapp->session->set("{$appid}_fansinfo", $userinfo); + empty($userinfo) || FansService::set($userinfo, $appid); + } else { + $userinfo['is_snapshotuser'] = 1; + } } } if ($getVars['rcode']) { $location = debase64url($getVars['rcode']); - throw new HttpResponseException($redirect ? redirect($location, 301) : response("location.href='{$location}';localStorage.setItem('wechat.session','{$sessid}');")); + throw new HttpResponseException($redirect ? redirect($location, 301) : response("location.replace('{$location}');sessionStorage.setItem('wechat.session','{$sessid}');")); } elseif ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { return ['openid' => $openid, 'fansinfo' => $userinfo]; } else { @@ -275,16 +284,20 @@ class WechatService extends Service } } else { $result = static::ThinkServiceConfig()->oauth(Library::$sapp->session->getId(), $source, $isfull); - Library::$sapp->session->set("{$appid}_openid", $openid = $result['openid']); - Library::$sapp->session->set("{$appid}_fansinfo", $userinfo = $result['fans']); + [$openid, $userinfo] = [$result['openid'] ?? '', $result['fans'] ?? []]; + // 如果是虚拟账号,不保存会话信息,下次重新授权 + if (empty($result['token']['is_snapshotuser'])) { + Library::$sapp->session->set("{$appid}_openid", $openid); + Library::$sapp->session->set("{$appid}_fansinfo", $userinfo); + } if ((empty($isfull) && !empty($openid)) || (!empty($isfull) && !empty($openid) && !empty($userinfo))) { - empty($userinfo) || FansService::set($userinfo, $appid); + empty($result['token']['is_snapshotuser']) && empty($userinfo) || FansService::set($userinfo, $appid); return ['openid' => $openid, 'fansinfo' => $userinfo]; } if ($redirect) { throw new HttpResponseException(redirect($result['url'], 301)); } else { - throw new HttpResponseException(response("location.href='{$result['url']}';localStorage.setItem('wechat.session','{$sessid}');")); + throw new HttpResponseException(response("location.replace('{$result['url']}');localStorage.setItem('wechat.session','{$sessid}');")); } } } diff --git a/app/wechat/view/fans/index.html b/app/wechat/view/fans/index.html index df6c8337b..0a2fd9387 100644 --- a/app/wechat/view/fans/index.html +++ b/app/wechat/view/fans/index.html @@ -37,14 +37,13 @@ {field: 'sex', title: '性别', align: 'center', minWidth: 80, templet: '