123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663 |
- <?php
- namespace app\api\controller;
- use app\admin\model\User as ModelUser;
- use app\admin\model\UserAddress;
- use app\admin\model\UserSubscribeMessage;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use fast\Http;
- use fast\Random;
- use think\Config;
- use think\Db;
- use think\exception\ErrorException;
- use think\Validate;
- use function fast\e;
- /**
- * 会员接口and收货地址
- * @ApiWeigh (7)
- */
- class User extends Api
- {
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'resetpwd', 'changeemail', 'changemobile', 'third','tees'];
- protected $noNeedRight = '*';
- public function _initialize()
- {
- parent::_initialize();
- if (!Config::get('fastadmin.usercenter')) {
- $this->error(__('User center already closed'));
- }
- }
- /**
- * 会员中心
- */
- public function index()
- {
- $this->success('', ['welcome' => $this->auth->nickname]);
- }
- /**
- * 会员登录
- *
- * @ApiMethod (POST)
- * @param string $account 账号
- * @param string $password 密码
- */
- public function login()
- {
- $account = $this->request->post('account');
- $password = $this->request->post('password');
- if (!$account || !$password) {
- $this->error(__('Invalid parameters'));
- }
- $ret = $this->auth->login($account, $password);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 手机验证码登录
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $captcha 验证码
- */
- public function mobilelogin()
- {
- $mobile = $this->request->post('mobile');
- $captcha = $this->request->post('captcha');
- if (!$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if (!Sms::check($mobile, $captcha, 'mobilelogin')) {
- $this->error(__('Captcha is incorrect'));
- }
- $user = \app\common\model\User::getByMobile($mobile);
- if ($user) {
- if ($user->status != 'normal') {
- $this->error(__('Account is locked'));
- }
- //如果已经有账号则直接登录
- $ret = $this->auth->direct($user->id);
- } else {
- $ret = $this->auth->register($mobile, Random::alnum(), '', $mobile, []);
- }
- if ($ret) {
- Sms::flush($mobile, 'mobilelogin');
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 注册会员
- *
- * @ApiMethod (POST)
- * @param string $username 用户名
- * @param string $password 密码
- * @param string $email 邮箱
- * @param string $mobile 手机号
- * @param string $code 验证码
- */
- public function register()
- {
- $username = $this->request->post('mobile');
- $password = $this->request->post('password');
- $email ='yubobao@qq.com';
- $mobile = $this->request->post('mobile');
- $code = $this->request->post('code');
- if (!$username || !$password) {
- $this->error(__('Invalid parameters'));
- }
- if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = $this->auth->register($username, $password, $email, $mobile, []);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- public function tees(){
- $mobile = $this->request->post('mobile');
- $code = $this->request->post('code');
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- }
- /**
- * 退出登录
- * @ApiMethod (POST)
- */
- public function logout()
- {
- if (!$this->request->isPost()) {
- $this->error(__('Invalid parameters'));
- }
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
- /**
- * 修改会员个人信息
- *
- * @ApiMethod (POST)
- * @param string $avatar 头像地址
- * @param string $username 用户名
- * @param string $nickname 昵称
- * @param string $bio 个人简介
- */
- public function profile()
- {
- $user = $this->auth->getUser();
- $username = $this->request->post('username');
- $nickname = $this->request->post('nickname');
- $bio = $this->request->post('bio');
- $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars');
- if ($username) {
- $exists = \app\common\model\User::where('username', $username)->where('id', '<>', $this->auth->id)->find();
- if ($exists) {
- $this->error(__('Username already exists'));
- }
- $user->username = $username;
- }
- if ($nickname) {
- $exists = \app\common\model\User::where('nickname', $nickname)->where('id', '<>', $this->auth->id)->find();
- if ($exists) {
- $this->error(__('Nickname already exists'));
- }
- $user->nickname = $nickname;
- }
- $user->bio = $bio;
- $user->avatar = $avatar;
- $user->save();
- $this->success();
- }
- /**
- * 修改邮箱
- *
- * @ApiMethod (POST)
- * @param string $email 邮箱
- * @param string $captcha 验证码
- */
- public function changeemail()
- {
- $user = $this->auth->getUser();
- $email = $this->request->post('email');
- $captcha = $this->request->post('captcha');
- if (!$email || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::is($email, "email")) {
- $this->error(__('Email is incorrect'));
- }
- if (\app\common\model\User::where('email', $email)->where('id', '<>', $user->id)->find()) {
- $this->error(__('Email already exists'));
- }
- $result = Ems::check($email, $captcha, 'changeemail');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
- $verification = $user->verification;
- $verification->email = 1;
- $user->verification = $verification;
- $user->email = $email;
- $user->save();
- Ems::flush($email, 'changeemail');
- $this->success();
- }
- /**
- * 修改手机号
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $captcha 验证码
- */
- public function changemobile()
- {
- $user = $this->auth->getUser();
- $mobile = $this->request->post('mobile');
- $captcha = $this->request->post('captcha');
- if (!$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if (\app\common\model\User::where('mobile', $mobile)->where('id', '<>', $user->id)->find()) {
- $this->error(__('Mobile already exists'));
- }
- $result = Sms::check($mobile, $captcha, 'changemobile');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
- $verification = $user->verification;
- $verification->mobile = 1;
- $user->verification = $verification;
- $user->mobile = $mobile;
- $user->save();
- Sms::flush($mobile, 'changemobile');
- $this->success();
- }
- /**
- * 第三方登录
- *
- * @ApiMethod (POST)
- * @param string $platform 平台名称
- * @param string $code Code码
- */
- public function third()
- {
- $url = url('user/index');
- $platform = $this->request->post("platform");
- $code = $this->request->post("code");
- //通过code换access_token和绑定会员
- // $result = $this->getWechatInfoByAPP($platform,$code);
- $params =[
- 'nickname'=>'用户名',
- 'avatar' =>'',
- 'unionid'=>'o59Zi4_X2AaTNTR7DIcbvGh_46Kg',
- 'openid'=>'orIcq60YtpA9ZawW4Y9Cy-9yGCsM',
- 'access_token'=>'',
- 'refresh_token'=>'',
- 'expires_in'=>'7200'
- ] ;
- if (1) {
- $loginret = \addons\third\library\Service::connect($platform, $params);
- if ($loginret) {
- $data = [
- 'userinfo' => $this->auth->getUserinfo(),
- ];
- $this->success(__('Logged in successful'), $data);
- }
- }
- $this->error(__('Operation failed'), $url);
- }
- public function getWechatInfoByAPP($platform,$code)
- {
- if($platform=='app') {
- $app_id = 'wx7165322b4ece8fae'; // 开放平台APP的id
- $app_secret = '30d611c8287260d8ef0e5bb0440d9d9e'; // 开放平台APP的secret
- $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid={$app_id}&secret={$app_secret}&code={$code}&grant_type=authorization_code";
- }
- else{
- $app_id = 'wx20bb65dcc885b693'; // 开放平台APP的id
- $app_secret = 'aa24c8058672b7e7f90e14bfdc27eff1'; // 开放平台APP的secret
- $url="https://api.weixin.qq.com/sns/jscode2session?appid=$app_id&secret=$app_secret&js_code=$code&grant_type=authorization_code";
- }
- $params = [
- 'appid' => $app_id,
- 'secret' => $app_secret,
- 'js_code' => $code,
- 'grant_type' => 'authorization_code'
- ];
- $data = Http::sendRequest($url, $params, 'GET');
- Array('ret' => 1, 'msg' => '{"session_key":"4bMZyDrmSYo6gxB4NV3ASw==","openid":"o59Zi4_X2AaTNTR7DIcbvGh_46Kg","unionid":"orIcq60YtpA9ZawW4Y9Cy-9yGCsM"}');
- $data = json_decode($data['msg'],true);
- if (isset($data['errcode']) && $data['errcode']) {
- $this->error('code错误'.$data['errmsg']);
- }
- return $data;
- }
- /**
- * 重置密码
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $newpassword 新密码
- * @param string $captcha 验证码
- */
- public function resetpwd()
- {
- $type = $this->request->post("type");
- $mobile = $this->request->post("mobile");
- $email = $this->request->post("email");
- $newpassword = $this->request->post("newpassword");
- $captcha = $this->request->post("captcha");
- if (!$newpassword || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- //验证Token
- if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
- $this->error(__('Password must be 6 to 30 characters'));
- }
- if ($type == 'mobile') {
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $user = \app\common\model\User::getByMobile($mobile);
- if (!$user) {
- $this->error(__('User not found'));
- }
- $ret = Sms::check($mobile, $captcha, 'resetpwd');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- Sms::flush($mobile, 'resetpwd');
- } else {
- if (!Validate::is($email, "email")) {
- $this->error(__('Email is incorrect'));
- }
- $user = \app\common\model\User::getByEmail($email);
- if (!$user) {
- $this->error(__('User not found'));
- }
- $ret = Ems::check($email, $captcha, 'resetpwd');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- Ems::flush($email, 'resetpwd');
- }
- //模拟一次登录
- $this->auth->direct($user->id);
- $ret = $this->auth->changepwd($newpassword, '', true);
- if ($ret) {
- $this->success(__('Reset password successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 添加地址信息
- * @ApiMethod (POST)
- * @ApiParams (name=name,description="姓名")
- * @ApiParams (name=phone,description="手机号")
- * @ApiParams (name=province_id,type="int", required=true,description="省")
- * @ApiParams (name=city_id,type="int", required=true,description="市")
- * @ApiParams (name=area_id,type="int", required=true,description="区")
- * @ApiParams (name=address,description="详细地址")
- * @ApiParams (name=default,type="int", required=true,description="是否默认:1=默认")
- */
- public function add_address()
- {
- $user_address_model = new UserAddress();
- $user_id = $this->auth->id;
- $input = input();
- if (empty($input['province_id']) || empty($input['city_id']) || empty('area_id')) {
- $this->error('请选择省市区');
- }
- if (empty($input['address']) || empty($input['name']) || empty($input['phone'])) {
- $this->error('请完善收货信息');
- }
- $data = [
- 'user_id' => $user_id,
- 'province_id' => $input['province_id'],
- 'city_id' => $input['city_id'],
- 'area_id' => $input['area_id'],
- 'address' => $input['address'],
- 'name' => $input['name'],
- 'phone' => $input['phone'],
- 'default' => $input['default']
- ];
- Db::startTrans();
- try {
- if ($input['default'] == 1) {
- $user_address_model->save(['default' => 0], ['user_id' => $user_id]);
- }
- $user_address_model->insertGetId($data);
- Db::commit();
- $this->success('地址添加成功');
- } catch (ErrorException $e) {
- Db::rollback();
- $this->error('地址添加失败');
- }
- }
- /**
- * 编辑地址信息
- * @ApiMethod (POST)
- * @ApiParams (name=address_id,type="int", required=true,description="地址id")
- * @ApiParams (name=name,description="姓名")
- * @ApiParams (name=phone,description="手机号")
- * @ApiParams (name=province_id,type="int", required=true,description="省")
- * @ApiParams (name=city_id,type="int", required=true,description="市")
- * @ApiParams (name=area_id,type="int", required=true,description="区")
- * @ApiParams (name=address,description="详细地址")
- * @ApiParams (name=default,type="int", required=true,description="是否默认:1=默认")
- */
- public function edit_address()
- {
- $user_address_model = new UserAddress();
- $user_id = $this->auth->id;
- $input = input();
- if (empty($input['address_id'])) {
- $this->error('参数错误');
- }
- if (empty($input['province_id']) || empty($input['city_id']) || empty('area_id')) {
- $this->error('请选择省市区');
- }
- if (empty($input['address']) || empty($input['name']) || empty($input['phone'])) {
- $this->error('请完善收货信息');
- }
- $data = [
- 'user_id' => $user_id,
- 'province_id' => $input['province_id'],
- 'city_id' => $input['city_id'],
- 'area_id' => $input['area_id'],
- 'address' => $input['address'],
- 'name' => $input['name'],
- 'phone' => $input['phone'],
- 'default' => $input['default']
- ];
- Db::startTrans();
- try {
- if ($input['default'] == 1) {
- $user_address_model->save(['default' => 0], ['user_id' => $user_id]);
- }
- $user_address_model->save($data, ['id' => $input['address_id']]);
- Db::commit();
- $this->success('地址修改成功');
- } catch (ErrorException $e) {
- Db::rollback();
- $this->error('地址修改失败');
- }
- }
- /**
- * 用户地址信息
- * @ApiMethod (GET)
- * @ApiParams (name=limit,type="int", required=false,description="每页数量")
- * @ApiParams (name=page,type="int", required=false,description="页数")
- * @ApiReturnParams (name="city", type="string", required=true, description="省市区信息")
- * @ApiReturnParams (name="address", type="string", required=true, description="详细地址")
- * @ApiReturnParams (name="default", type="int", required=true, description="是否默认,1默认")
- * @ApiReturn ({"code":1,"msg":"用户地址列表","time":"1672037789","data":{"total":4,"per_page":"2","current_page":1,"last_page":2,"data":[{"id":2,"user_id":3,"name":"线下活动","phone":"13161001120","province_id":1,"city_id":2,"area_id":3,"address":"地址","default":1,"city":"北京北京市东城区"},{"id":4,"user_id":3,"name":"线下活动","phone":"13161001120","province_id":1,"city_id":2,"area_id":3,"address":"1","default":0,"city":"北京北京市东城区"}]}})
- */
- public function my_address()
- {
- $page = input('page', 1);
- $user_id = $this->auth->id;
- $user_address_model = new UserAddress();
- $query = $user_address_model->where('user_id', $user_id)->order('default', 'desc');
- $list = $query->paginate(input('limit', 10), false, ['page' => $page]);
- foreach ($list as &$v) {
- $v['city'] = city_name($v['province_id']) . city_name($v['city_id']) . city_name($v['area_id']);
- }
- $this->success('用户地址列表', $list);
- }
- /**
- * 删除地址信息
- * @ApiMethod (Delete)
- * @ApiParams (name=address_id,type="int", required=true,description="地址id")
- */
- public function del_address()
- {
- $user_address_model = new UserAddress();
- $user_id = $this->auth->id;
- $input = input();
- Db::startTrans();
- try {
- $user_address_model->where(['id' => $input['address_id'], 'user_id' => $user_id])->delete();
- Db::commit();
- $this->success('地址刪除成功');
- } catch (ErrorException $e) {
- Db::rollback();
- $this->error('地址刪除失败');
- }
- }
- /**
- * 功能订阅
- * @ApiMethod (Get)
- * @ApiReturnParams (name="lua", type="int", required=true, description="路亚专区消息通知:0=关,1=开")
- * @ApiReturnParams (name="hand_bar", type="int", required=true, description="手杆专区消息通知:0=关,1=开")
- * @ApiReturn ({"code":1,"msg":"ok","time":"1672126518","data":{"lua":1,"hand_bar":1}})
- */
- public function get_subscribe_message()
- {
- $user_id = $this->auth->id;
- $model = new UserSubscribeMessage();
- $data = $model::where('user_id', $user_id)->find();
- if (!$data) {
- $data['lua'] = 1;
- $data['hand_bar'] = 1;
- $data['user_id'] = $user_id;
- $model->insert($data);
- }
- $this->success('ok', ['lua' => $data['lua'], 'hand_bar' => $data['hand_bar']]);
- }
- /**
- * 功能订阅-保存
- * @ApiMethod (POST)
- * @ApiParams (name=lua,type="int", required=true,description="路亚专区消息通知:0=关,1=开")
- * @ApiParams (name=hand_bar,type="int", required=true,description="手杆专区消息通知:0=关,1=开")
- */
- public function post_subscribe_message()
- {
- $lua = $this->request->post('lua', 0);
- $hand_bar = $this->request->post('hand_bar', 0);
- if (!in_array($lua, [0, 1]) || !in_array($hand_bar, [0, 1])) {
- $this->error(__('Invalid parameters'));
- }
- $model = new UserSubscribeMessage();
- $data = [
- 'lua' => $lua,
- 'hand_bar' => $hand_bar,
- ];
- $model->save($data, ['user_id' => $this->auth->id]);
- $this->success('成功');
- }
- /**
- * 账户注销-提交
- * @ApiMethod (POST)
- * @ApiParams (name=logout_reason,type="string", required=true,description="账户注销理由")
- */
- public function user_logout()
- {
- $logout_reason = $this->request->post('logout_reason');
- if ($logout_reason == "") {
- $this->error(__('Invalid parameters'));
- }
- $model = new ModelUser();
- $user = $model::get($this->auth->id);
- if (!$user) {
- $this->error(__('Invalid parameters'));
- }
- $user->logout = 1;
- $user->logout_reason = $logout_reason;
- $user->save();
- $this->success('成功');
- }
- /**
- * 子账户创建
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $password 密码
- * @param string $repassword 确认密码
- */
- public function son_register()
- {
- $password = $this->request->post('password');
- $repassword = $this->request->post('repassword');
- $mobile = $this->request->post('mobile');
- if ($mobile && !Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if (!$password || !$repassword) {
- $this->error(__('Invalid parameters'));
- }
- if ($password != $repassword) {
- $this->error('密码和确认密码不一致!');
- }
- $user_id = $this->auth->id;
- $count = ModelUser::where('pid', $user_id)->count();
- if ($count >= 5) {
- $this->error('子账户不能超过5个');
- }
- $ret = $this->auth->sonRegister($user_id, $mobile, $password);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
- /**
- * 子账户列表
- *
- * @ApiMethod (GET)
- * @ApiReturnParams (name="images", type="string", required=true, description="图片")
- * @ApiReturnParams (name="images", type="string", required=true, description="图片")
- * @ApiReturn ({"code":1,"msg":"ok","time":"1672652501","data":[{"id":4,"username":"15550493042","createtime":1672651491,"prevtime_text":"","logintime_text":"","jointime_text":""}]})
- */
- public function son_user()
- {
- $user_id = $this->auth->id;
- $list = ModelUser::where('pid', $user_id)->field('id,username,createtime')->select();
- $this->success('ok', $list);
- }
- }
|