123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?php
- namespace app\index\controller;
- use app\common\controller\Frontend;
- use app\common\library\Sms;
- use fast\Random;
- use think\exception\HttpResponseException;
- use think\Request;
- use think\Response;
- class Wechat extends Frontend
- {
- protected $noNeedLogin = '*';
- private $wechat = null;
- private $_error = '';
- private $has_mobile = false;
- private $is_notice = false;
- public function __construct(Request $request = null)
- {
- parent::__construct($request);
- $this->wechat = new \app\common\controller\Wechat();
- }
-
- public function serverValidation()
- {
- $TOKEN = 'I8cezsHeF1buiCBPwD';
- $signature = $_GET["signature"] ?? "";
- $timestamp = $_GET["timestamp"] ?? "";
- $nonce = $_GET["nonce"] ?? "";
- $tmpArr = array($TOKEN, $timestamp, $nonce);
- sort($tmpArr, SORT_STRING);
- $tmpStr = implode($tmpArr);
- $tmpStr = sha1($tmpStr);
- if ($tmpStr == $signature) {
- return $_GET["echostr"] ?? '';
- }
- return 'error';
- }
-
- public function bootToUrl($url = '')
- {
- $redirect_uri = request()->domain() . '/index/wechat/wechatRedirect?redirect=' . $url;
- $appid = $this->wechat->appid;
- $redirect_uri = urlencode($redirect_uri);
- $scope = 'snsapi_userinfo';
- $wechat_authorize = "http://2.ipfsfil168.com/get-weixin-code.html?appid={$appid}&redirect_uri={$redirect_uri}&response_type=code&scope={$scope}&state=123#wechat_redirect";
- $this->redirect($wechat_authorize);
- }
-
- public function wechatRedirect()
- {
- $code = input('code');
- $redirect = input('redirect');
-
- if ($code) {
- $wechat_url = 'https://api.weixin.qq.com/sns/oauth2/access_token' .
- '?appid=' . $this->wechat->appid .
- '&secret=' . $this->wechat->appsecret .
- '&code=' . input('code') .
- '&grant_type=authorization_code';
- try {
- $res = $this->wechat->http_request($wechat_url);
- } catch (\Exception $e) {
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=' . $e->getMessage();
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- exit();
- }
- $res = json_decode($res, true);
- if (empty($res['openid'])) {
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=登录失败';
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- exit();
- }
- $redirect = base64_decode($redirect);
- $redirect = htmlspecialchars_decode($redirect);
- $query = parse_url(strstr($redirect, '?'), PHP_URL_QUERY);
- parse_str($query, $params);
-
- if ('snsapi_userinfo' == $res['scope']) {
- $userinfo = file_get_contents("https://api.weixin.qq.com/sns/userinfo?access_token={$res['access_token']}&openid={$res['openid']}&lang=zh_CN");
- $userinfo = json_decode($userinfo, true);
- if (!empty($userinfo['errcode']) && !empty($userinfo['errmsg'])) {
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=' . $userinfo['errmsg'];
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- exit();
- }
-
-
-
-
-
-
-
-
- $invite_code = $params['sharecode'] ?? '';
- $is_channel = $params['channel'] ?? '';
- $token = $this->login($userinfo['openid'], $userinfo['nickname'], $userinfo['headimgurl'], $invite_code, $is_channel);
- if (false === $token) {
- $errmsg = $this->_error ?: '登录失败';
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=' . $errmsg;
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- exit();
- }
- } else {
- $errmsg = $this->_error ?: '仅支持snsapi_userinfo';
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=' . $errmsg;
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- exit();
- }
-
- if ($this->has_mobile) {
- $this->redirect('/h5/#/?status=1&errmsg=&token=' . $token . "&is_notice=". $this->is_notice);
- }
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=1&errmsg=&token=' . $token . "&is_notice=". $this->is_notice;
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- }
- $errmsg = $this->_error ?: '授权失败';
- $redirect = $redirect . (strpos($redirect, '?') ? '&' : '?') . 'status=0&token=&errmsg=' . $errmsg;
- $this->redirect($redirect ? urldecode($redirect) : '/h5/#/');
- }
-
- private function login($openid, $nickname = '', $avatar = '', $invite_code = '', $is_channel ='')
- {
- $user = \app\common\model\User::getByWechatOpenid($openid);
- if ($user) {
- if ($user->status != 'normal') {
- $this->_error = '账号被锁定';
- return false;
- }
-
- $ret = $this->auth->direct($user->id);
- } else {
- $extend = [
- 'invite_code' => $invite_code,
- 'wechat_openid' => $openid,
- 'nickname' => $nickname,
- 'avatar' => $avatar,
- ];
- $ret = $this->auth->register('', Random::alnum(), '', '', $extend);
- if($ret && $is_channel == '49ba59abbe56e057'){
- \app\common\model\User::where(['id'=>$this->auth->id])->setInc("coin", 10);
- $this->is_notice = 1;
- }
- }
- if ($ret) {
- $data = $this->auth->getUserinfo();
- $this->has_mobile = !empty($data['mobile']) ? true : false;
- return $data['token'];
- }
- $this->_error = $this->auth->getError();
- return false;
- }
-
- public function wechatLoginRedirect()
- {
- $redirect = input('redirect');
- if (empty('')) {
- throw new HttpResponseException(Response::create(['code' => 403, 'msg' => '重定向地址为空', 'data' => null], 'json', 200));
- }
- $this->redirect('/index/wechat/bootToUrl?url=' . base64_encode($redirect));
- }
- }
|