|
@@ -5,6 +5,7 @@ namespace app\api\controller;
|
|
use app\common\controller\Api;
|
|
use app\common\controller\Api;
|
|
use app\common\library\Ems;
|
|
use app\common\library\Ems;
|
|
use app\common\library\Sms;
|
|
use app\common\library\Sms;
|
|
|
|
+use EasyWeChat\Factory;
|
|
use fast\Random;
|
|
use fast\Random;
|
|
use think\Db;
|
|
use think\Db;
|
|
use think\Validate;
|
|
use think\Validate;
|
|
@@ -108,8 +109,10 @@ class User extends Api
|
|
$password = $this->request->request('password');
|
|
$password = $this->request->request('password');
|
|
$mobile = $this->request->request('mobile');
|
|
$mobile = $this->request->request('mobile');
|
|
$group_id = $this->request->request('group_id');
|
|
$group_id = $this->request->request('group_id');
|
|
- $username = $mobile;
|
|
|
|
-
|
|
|
|
|
|
+ $username = $this->request->request('nickname');
|
|
|
|
+ $avatar = $this->request->request('avatar');
|
|
|
|
+ $openid = $this->request->request('openid');
|
|
|
|
+ if (!isset($username) || empty($username)) $username = $mobile;
|
|
$code = $this->request->request('code');
|
|
$code = $this->request->request('code');
|
|
if (!$username || !$password) {
|
|
if (!$username || !$password) {
|
|
$this->error(__('Invalid parameters'));
|
|
$this->error(__('Invalid parameters'));
|
|
@@ -133,7 +136,7 @@ class User extends Api
|
|
if (!$group_id) {
|
|
if (!$group_id) {
|
|
$group_id = 0;
|
|
$group_id = 0;
|
|
}
|
|
}
|
|
- $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id);
|
|
|
|
|
|
+ $ret = $this->auth->register($username, $password, '', $mobile, [], $group_id,$openid,$avatar);
|
|
if ($ret) {
|
|
if ($ret) {
|
|
$data = ['userinfo' => $this->auth->getUserinfo()];
|
|
$data = ['userinfo' => $this->auth->getUserinfo()];
|
|
$this->success(__('Sign up successful'), $data);
|
|
$this->success(__('Sign up successful'), $data);
|
|
@@ -147,30 +150,82 @@ class User extends Api
|
|
*/
|
|
*/
|
|
public function wechatLogin()
|
|
public function wechatLogin()
|
|
{
|
|
{
|
|
|
|
+
|
|
|
|
+ $config = [
|
|
|
|
+ 'app_id' => 'wxe02aa578255f9184',
|
|
|
|
+ 'secret' => '5e184a450e2cb5331826ead2fd95157e',
|
|
|
|
+ // 下面为可选项
|
|
|
|
+ // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
|
|
|
|
+ 'response_type' => 'array',
|
|
|
|
+
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ $app=Factory::miniProgram($config);
|
|
|
|
+ $data = input('get.');
|
|
|
|
+ $res=$app->auth->session($data['js_code']);
|
|
|
|
+ if (!isset($res['openid'])) return $this->error('请求失败');
|
|
|
|
+
|
|
|
|
+ $userInfo = Db::name('user')->where('openid',$res['openid'])->find();
|
|
|
|
+
|
|
|
|
+ if (!$userInfo) {
|
|
|
|
+ return json(['code' => 101,'msg'=>'请先绑定手机号','data'=>$data]);
|
|
|
|
+ } else {
|
|
|
|
+ $user = \app\common\model\User::getByMobile($userInfo['mobile']);
|
|
|
|
+ if ($user) {
|
|
|
|
+ if ($user->status != '1') {
|
|
|
|
+ $this->error(__('Account is locked'));
|
|
|
|
+ }
|
|
|
|
+ //如果已经有账号则直接登录
|
|
|
|
+ $ret = $this->auth->direct($user->id);
|
|
|
|
+ if ($ret) {
|
|
|
|
+ Sms::flush($userInfo['mobile'], 'mobilelogin');
|
|
|
|
+ $data = ['userinfo' => $this->auth->getUserinfo()];
|
|
|
|
+ $this->success(__('Logged in successful'), $data);
|
|
|
|
+ } else {
|
|
|
|
+ $this->error($this->auth->getError());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ /**
|
|
|
|
+ * 绑定微信
|
|
|
|
+ * @param string $username 微信昵称
|
|
|
|
+ * @param string $avatar 微信头像
|
|
|
|
+ */
|
|
|
|
+ public function bin()
|
|
|
|
+ {
|
|
|
|
+ $user = $this->auth->getUser();
|
|
|
|
+
|
|
|
|
+ if (!empty($user['openid'])) return $this->error('您已经绑定过微信了');
|
|
|
|
+ $config = [
|
|
|
|
+ 'app_id' => 'wxe02aa578255f9184',
|
|
|
|
+ 'secret' => '5e184a450e2cb5331826ead2fd95157e',
|
|
|
|
+ // 下面为可选项
|
|
|
|
+ // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
|
|
|
|
+ 'response_type' => 'array',
|
|
|
|
+
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ $app=Factory::miniProgram($config);
|
|
$data = input('get.');
|
|
$data = input('get.');
|
|
- $appid = "wxe02aa578255f9184 ";
|
|
|
|
- $secret = "5e184a450e2cb5331826ead2fd95157e";
|
|
|
|
- $js_code = $data['js_code'];
|
|
|
|
- $headerArray = array(
|
|
|
|
- "Content-type:application/json",
|
|
|
|
- "Accept:application/json"
|
|
|
|
- );
|
|
|
|
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid=$appid&secret=$secret&js_code=$js_code&grant_type=authorization_code";
|
|
|
|
-
|
|
|
|
- $ch = curl_init(); //初始化
|
|
|
|
-// curl_setopt($ch,CURLOPT_HTTPHEADER,$headerArray);
|
|
|
|
- curl_setopt($ch, CURLOPT_URL, $url); //设置访问的URL
|
|
|
|
- curl_setopt($ch, CURLOPT_HEADER, false); //设置不需要头信息
|
|
|
|
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);//只获取页面内容,但不输出
|
|
|
|
- curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
- curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
|
|
|
|
- curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
|
|
|
|
- $str = curl_exec($ch); //执行访问,返回结果
|
|
|
|
- curl_close($ch); //关闭curl,释放资源
|
|
|
|
- dump($str);die;
|
|
|
|
- $openid = json_decode($str, true);
|
|
|
|
- $data["user_openid"] = $openid["openid"];
|
|
|
|
|
|
+ $res=$app->auth->session($data['js_code']);
|
|
|
|
+ if (!isset($res['openid'])) return $this->error('请求失败');
|
|
|
|
|
|
|
|
+ $data = input('get.');
|
|
|
|
+
|
|
|
|
+ $ins = [
|
|
|
|
+ 'openid' => $res['openid'],
|
|
|
|
+ 'username' => $data['username'],
|
|
|
|
+ 'avatar' => $data['avatar'],
|
|
|
|
+ ];
|
|
|
|
+
|
|
|
|
+ $upd= Db::name('user')->where('id',$user['id'])->update($ins);
|
|
|
|
+
|
|
|
|
+ if ($upd) {
|
|
|
|
+ return $this->success('绑定成功');
|
|
|
|
+ } else {
|
|
|
|
+ return $this->error('绑定失败');
|
|
|
|
+ }
|
|
}
|
|
}
|
|
/**
|
|
/**
|
|
* 重置密码
|
|
* 重置密码
|
|
@@ -480,7 +535,7 @@ class User extends Api
|
|
} else {
|
|
} else {
|
|
return $this->error('提价失败');
|
|
return $this->error('提价失败');
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|