商城更新用户信息获取,统一调整为商城用户,剔除无用表

This commit is contained in:
monanxiao 2023-03-18 16:31:08 +08:00
parent 43413c5778
commit 56d80852ff
5 changed files with 168 additions and 88 deletions

View File

@ -44,8 +44,16 @@ class Index extends BaseController
public function main()
{
$street_id=Db::table('fa_szxc_information_useraddress')->where('admin_id',$this->adminInfo['id'])->value('street_id');
$street_name=Db::table('fa_geo_street')->where('street_code',$street_id)->value('street_name');
// return json($this->adminInfo);
$street_id = Db::table('fa_szxc_information_useraddress')
->where('admin_id',$this->adminInfo['id'])
->value('street_id');
// return $street_id;
$street_name = Db::table('fa_geo_street')
->where('street_code',$street_id)
->value('street_name');
if ($this->adminInfo['group_access']==4){
$urls="http://zhen.lihaink.cn/#/?street_id=$street_id"."&street_name=".$street_name;
View::assign('urls',$urls);

View File

@ -653,6 +653,7 @@ class Article extends BaseController
$where[] = ['a.user_id','=',$this->request->uid];
$where[] = ['b.is_read','=','0'];
$which = [];
//根据个人村id进行查询
if ($this->request->uid) {
$find = Db::table('fa_szxc_information_useraddress')->where('user_id', $this->request->uid)->find();

View File

@ -11,6 +11,8 @@ use app\api\BaseController;
use app\api\middleware\Auth;
use think\facade\Db;
use Firebase\JWT\Key;
use app\admin\model\ShopUser;
/**
* 会员接口.
*/
@ -30,14 +32,20 @@ class User extends BaseController
*/
public function index()
{
$user = Db::table('fa_user')->where('id', $this->request->uid)->find();
$user_msg = Db::table('fa_szxc_information_usermsg')->where('user_id', $this->request->uid)->field('id,name,address_name,phone')->find();
$user = ShopUser::find($this->request->uid); // 获取用户信息
// 获取用户关联信息
$user_msg = Db::table('fa_szxc_information_usermsg')
->where('user_id', $this->request->uid)
->field('id,name,address_name,phone')
->find();
$this->apiSuccess('', [
'nickname' => $user['nickname'],
'phone'=>$user_msg['phone'],
'avatar'=>$user['avatar'],
'address_name'=>$user_msg['address_name'],
'name'=>$user_msg['name']
'phone' => $user['phone'],
'avatar' => $user['avatar'],
'address_name' => $user_msg['address_name'],
'name' => $user_msg['name']
]);
}

View File

@ -9,6 +9,7 @@ use think\Exception;
use think\facade\Db;
use think\exception\ValidateException;
use think\facade\Request;
use app\admin\model\ShopUser;
/**
* 用户信息相关接口.
@ -101,36 +102,35 @@ class Userinfo extends BaseController
$this->apiError('手机号错误');
}
$where['id'] = $this->request->uid;
// $where['id'] = $this->request->uid; // 废弃
$post['user_id'] = $this->request->uid;
$user = Db::table('fa_user')->where($where)->field('id,nickname,group_id,mobile,avatar,username,createtime,score')->find();
// 已绑定
if ($user) {
Db::startTrans();
$user = ShopUser::where('phone', $post['phone'])->find(); // 通过唯一手机号获取商城用户信息
// $user = Db::table('fa_user')->where($where)->field('id,nickname,group_id,mobile,avatar,username,createtime,score')->find(); // 农科user表废弃
// 已绑定
if ($user) { // 如果用户存在
Db::startTrans(); // 开启事务
try {
// 判断手机号是否已经注册
// $is_mobile = Db::table('fa_user')->getByMobile($post['phone']);
// if ($is_mobile) {
// $this->apiError('手机号已被使用');
// }
//判断身份证号是否已被使用
$InformationUsermsg = Db::table('fa_szxc_information_usermsg')->where('idcard',$post['idcard'])->field('idcard')->find();
$InformationUsermsg = Db::table('fa_szxc_information_usermsg')
->where('idcard',$post['idcard']) // 身份证号
->field('idcard')
->find();
// 假如身份证号被使用,则报错
if ($InformationUsermsg) {
$this->apiError('身份证号已被使用');
}
// $validateIDCard = $this->validateIDCard($post['idcard']);
// if($validateIDCard == false){
// $this->apiError('身份证号错误');
// }
// $ip = request()->ip();
// $time =
// $salt = Random::alnum(); //随机字符串
// 获取用户user_id
$userid = $user['uid'];
// $userid = $post['user_id']; // 原user_id 废弃
$userid = $post['user_id'];
// 组装地址名
// 组装地址名
if ($post['area_id'] != '') {
$area_name = Db::table('fa_geo_area')->where('area_code', $post['area_id'])->value('area_name');
}
@ -143,17 +143,13 @@ class Userinfo extends BaseController
if ($post['brigade_id'] != '') {
$brigade_name = Db::table('fa_geo_brigade')->where('id', $post['brigade_id'])->value('brigade_name');
}
$post['address_name'] = $area_name.$street_name.$village.$brigade_name;
$address_name = $area_name.$street_name.$village.$brigade_name;
// 更新用户表
$u_up['nickname'] = $post['name'];
Db::table('fa_user')->where($where)->update($u_up);
// $header = Request::header('x-Token');
// if(isset($header['x-token']) && !empty($header['x-token'])){
$u_up['nickname'] = $post['name']; // 真实姓名-- 待处理
// }else{
// $post['phone'] = $user['mobile']??'';
// }
// Db::table('fa_user')->where($where)->update($u_up); // 废弃的农科user表
//写入用户信息表
$data['user_id'] = $userid;
@ -164,21 +160,26 @@ class Userinfo extends BaseController
$data['marital_status'] = $post['marital_status'];
$data['phone'] = $post['phone']??'';
$data['idcard'] = $post['idcard'];
$data['address_name'] = $post['address_name'];
$data['address_name'] = $address_name;
$data['createtime'] = time();
$data['street_id'] = $post['street_id'];
$data['village_id'] = $post['village_id_id'];
$data['brigade_id'] = $post['brigade_id'];
$msg=Db::table('fa_szxc_information_usermsg')->where('user_id',$post['user_id'])->find();
if (!$msg){
Db::table('fa_szxc_information_usermsg')->strict(false)->insert($data);
// 写入用户关联信息表
$msgExists = Db::table('fa_szxc_information_usermsg')
->where('user_id', $userid)
->find();
// 录入信息
// 判断写入状态
if (!$msgExists){
// 假如没写如果,则增加一条记录
Db::table('fa_szxc_information_usermsg')
->strict(false)
->insert($data);
}
$fa_user['mobile'] = $post['phone']??'';
$fa_user['nickname'] = $post['name']??'';
Db::table('fa_user')->where($where)->update($fa_user);
// else{
// $this->apiError('请勿重新提交');
// }
//写入用户地区表
$address_data['user_id'] = $userid;
$address_data['area_id'] = $post['area_id'];
@ -187,57 +188,112 @@ class Userinfo extends BaseController
$address_data['village_code'] = $post['village_id'];
$address_data['brigade_id'] = $post['brigade_id'];
$address_data['createtime'] = date('Y-m-d H:i:s');
$add=Db::table('fa_szxc_information_useraddress')->where('user_id',$post['user_id'])->find();
$add = Db::table('fa_szxc_information_useraddress')
->where('user_id', $userid)
->find();
// 判断用户地区写入状态
if (!$add){
Db::table('fa_szxc_information_useraddress')->strict(false)->insert($address_data);
$eb_nk_user=Db::connect('shop')->table('eb_nk_user')->where('n_user_id',$post['user_id'])->find();
if ($eb_nk_user){
Db::connect('shop')->table('eb_nk_user')->where('id',$eb_nk_user['id'])
->update(['area_id'=>$post['area_id'],'street_id'=>$post['street_id'],'village_id'=>$post['village_id_id'],'village_code'=>$post['village_id']]);
if ($fa_user['nickname']){
Db::connect('shop')->table('eb_user')->where('uid',$eb_nk_user['user_id'])->update(['nickname'=>$fa_user['nickname']]);
}
}
// 商城农科user表被废弃
// $eb_nk_user = Db::connect('shop')
// ->table('eb_nk_user')
// ->where('n_user_id',$post['user_id'])
// ->find();
// if ($eb_nk_user){
// 废弃同步更新商城用户表
// Db::connect('shop')->table('eb_nk_user')->where('id',$eb_nk_user['id'])
// ->update(['area_id'=>$post['area_id'],'street_id'=>$post['street_id'],'village_id'=>$post['village_id_id'],'village_code'=>$post['village_id']]);
// 无需更新用户昵称 废弃
// if ($fa_user['nickname']){
// Db::connect('shop')->table('eb_user')->where('uid',$eb_nk_user['user_id'])->update(['nickname'=>$fa_user['nickname']]);
// }
// }
}
// 新增修改用户推广员id spread_uid
// 先获取当前村推官员
$s_where[] = ['b.village_id','=',$post['village_id_id']];
$s_where[] = ['a.is_promoter','=',1];
$spread_uid = Db::connect('shop')->table('eb_user')->alias('a')->join('eb_nk_user b','a.uid = b.user_id')->where($s_where)->value('a.uid');
// 新增修改用户推广员id spread_uid
// $spread_uid = $userid;
// 先获取当前村推官员
$s_where[] = ['b.village_id', '=', $post['village_id_id']];
$s_where[] = ['a.is_promoter', '=', 1];
// 废弃复杂查询uid上一步已获取到
$spread_uid = Db::connect('shop')
->table('eb_user')
->alias('a')
->join('eb_nk_user b','a.uid = b.user_id')
->where($s_where)
->value('a.uid');
// 推广员uid
if($spread_uid){
$eb_nk_user=Db::connect('shop')->table('eb_nk_user')->where('n_user_id',$post['user_id'])->find();
if ($eb_nk_user){
Db::connect('shop')->table('eb_user')->where('uid',$eb_nk_user['user_id'])->update(['spread_uid'=>$spread_uid,'promoter_time'=>date('Y-m-d H:i:s')]);
Db::connect('shop')->table('eb_user')->where('uid',$spread_uid)->inc('spread_count','1')->update();
}
// 更新本用户推广人UID
ShopUser::where('uid', $spread_uid)
->update([
'spread_uid' => $spread_uid,
'promoter_time'=>date('Y-m-d H:i:s')
]);
// 推广员邀请人数增加
ShopUser::where('uid', $spread_uid)
->inc('spread_count','1')
->update();
// -- 废弃复杂更新推荐用户uid
// if ($eb_nk_user){
// Db::connect('shop')->table('eb_user')->where('uid',$eb_nk_user['user_id'])->update(['spread_uid'=>$spread_uid,'promoter_time'=>date('Y-m-d H:i:s')]);
// Db::connect('shop')->table('eb_user')->where('uid',$spread_uid)->inc('spread_count','1')->update();
// }
}
$Userinfo = $user;
$Userinfo['user_id'] = $post['user_id'];
$userinfo_data['userinfo'] = $Userinfo;
$Userinfo = $user;
$Userinfo['user_id'] = $userid;
// $Userinfo['user_id'] = $post['user_id']; // 临时废弃
$userinfo_data['userinfo'] = $Userinfo;
$find = Db::table('fa_szxc_information_usermsg')
->where('user_id', $userid)
->find();
// $group = Db::connect('shop')->table('eb_user_group')
// ->where('id',$userinfo_data['userinfo']['group_id'])
// ->find();
// $userinfo_data['userinfo']['group_name'] = $group['name'];
if ($find){
$userinfo_data['userinfo']['name'] = $find['name'];
$userinfo_data['userinfo']['no_update'] = 0;
$userinfo_data['userinfo']['address_name'] = $find['address_name'];
}else{
$userinfo_data['userinfo']['no_update'] = 1;
$userinfo_data['userinfo']['address_name'] = '';
}
\think\facade\Log::info($userinfo_data);
Db::commit();
$this->apiSuccess('已完善,登录成功', $userinfo_data);
// } else {
// $this->apiError($this->auth->getError());
// }
$find=Db::table('fa_szxc_information_usermsg')->where('user_id',$post['user_id'])->find();
$group=Db::table('fa_user_group')->where('id',$userinfo_data['userinfo']['group_id'])->find();
$userinfo_data['userinfo']['group_name']=$group['name'];
if ($find){
$userinfo_data['userinfo']['name']=$find['name'];
$userinfo_data['userinfo']['no_update']=0;
$userinfo_data['userinfo']['address_name']=$find['address_name'];
}else{
$userinfo_data['userinfo']['no_update']=1;
$userinfo_data['userinfo']['address_name']='';
}
Db::commit();
$this->apiSuccess('已完善,登录成功', $userinfo_data);
// } else {
// $this->apiError($this->auth->getError());
// }
} catch (ValidateException | PDOException | Exception $e) {
Db::rollback();
$this->apiError($e->getMessage());
}
} else {
$this->apiError('未注册不能绑定');
}
}

View File

@ -13,6 +13,7 @@ use think\Config;
use think\facade\Db;
use think\facade\Request;
use think\Response;
use app\admin\model\ShopUser;
class Auth
{
@ -20,7 +21,9 @@ class Auth
{
$token = Request::header('x-Token');
if ($token) {
if (strpos($token, 'Bearer') === 0){
$token = trim(substr($token, 6));
}
@ -29,11 +32,15 @@ class Auth
}
try {
JWT::$leeway = 60;//当前时间减去60把时间留点余地
$decoded = JWT::decode($token, new Key('ae47e94a7dcd1fdfacb499b60e361a8d', 'HS256')); //HS256方式这里要和签发的时候对应
$user=Db::connect('shop')->name('nk_user')->where('user_id',$decoded->jti[0])->find();
if ($user && $user['n_user_id']!=0){
$request->uid=$user['n_user_id'];
// $user=Db::connect('shop')->name('nk_user')->where('user_id',$decoded->jti[0])->find();
$user= ShopUser::where('uid',$decoded->jti[0])->find();
if ($user && $user['uid']!=0){
$request->uid = $user['uid'];
}else{
$request->uid=$this->addUser($decoded->jti[0],$user);
}