1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267 |
- <?php
- namespace app\api\controller;
- use app\common\controller\Api;
- use app\common\library\Ems;
- use app\common\library\Sms;
- use fast\Random;
- use think\Config;
- use think\Validate;
- use think\Db;
- /**
- * 会员接口
- */
- class User extends Api
- {
- protected $noNeedLogin = ['login', 'mobilelogin', 'register', 'registercheck', 'resetpwd', 'changeemail', 'changemobile', 'third', 'getopenid', 'getagreement', 'wxlogin'];
- 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) {
- $this->error('用户尚未注册');
- }
- if ($user['status'] != 1) {
- $this->error(__('Account is locked'));
- }
- // 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, []);
- // }
- $ret = $this->auth->direct($user->id);
- 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()
- {
- $mobile = $this->request->post('mobile', '', 'trim'); //手机号
- $code = $this->request->post('code', '', 'trim'); //验证码
- $password = $this->request->post('password', '' , 'trim'); //密码
- $repassword = $this->request->post('repassword', '' , 'trim'); //确认密码
- $nickname = $this->request->post('nickname', '', 'trim'); //姓名
- $idcard = $this->request->post('idcard', '', 'trim,strip_tags,htmlspecialchars'); //身份证号
- $province = $this->request->post('province', '', 'trim'); //省
- $city = $this->request->post('city', '', 'trim'); //市
- $area = $this->request->post('area', '', 'trim'); //区
- $address = $this->request->post('address', '', 'trim'); //详细地址
- $recommender = $this->request->post('recommender', '', 'trim'); //推荐人姓名
- $recommender_mobile = $this->request->post('recommender_mobile', '', 'trim'); //推荐人手机号
- $zimage = $this->request->post('zimage', '', 'trim,strip_tags,htmlspecialchars'); //身份证正面照
- $fimage = $this->request->post('fimage', '', 'trim,strip_tags,htmlspecialchars'); //身份证反面照
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $count = Db::name('user')->where(['mobile' => $mobile])->count('id');
- if ($count) {
- $this->error('手机号已被注册');
- }
- if (iconv_strlen($code, 'utf-8') != config('alisms.length')) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if (!$password) {
- $this->error('请输入新密码');
- }
- //验证新密码
- if (!Validate::make()->check(['newpassword' => $password], ['newpassword' => 'require|regex:\S{6,30}'])) {
- $this->error(__('Password must be 6 to 30 characters'));
- }
- if (!$repassword) {
- $this->error('请再次输入密码');
- }
- if ($repassword != $password) {
- $this->error('两次密码不一致');
- }
- if (!$nickname) {
- $this->error('请输入姓名');
- }
- if (iconv_strlen($nickname, 'utf-8') > 30) {
- $this->error('姓名最多30位');
- }
- if (!$idcard) {
- $this->error('请输入身份证号');
- }
- if (iconv_strlen($idcard, 'utf-8') != 18) {
- $this->error('身份证号错误');
- }
- if (!$province || !$city || !$area) {
- $this->error('请选择养殖场地址');
- }
- if (!$address) {
- $this->error('请输入详细地址');
- }
- if (iconv_strlen($address, 'utf-8') > 255) {
- $this->error('详细地址最多255位');
- }
- if (!$recommender) {
- $this->error('请输入推荐人姓名');
- }
- if (iconv_strlen($recommender, 'utf-8') > 30) {
- $this->error('推荐人姓名最多30位');
- }
- if (!$recommender_mobile || !is_mobile($recommender_mobile)) {
- $this->error('请输入正确推荐人手机号');
- }
- if (!$zimage || !$fimage) {
- $this->error('请上传身份证相关照片');
- }
- $ip = request()->ip();
- $time = time();
- $data = [
- 'nickname' => $nickname,
- 'province' => $province,
- 'city' => $city,
- 'area' => $area,
- 'address' => $address,
- 'createtime' => $time
- ];
- $params = array_merge($data, [
- 'mobile' => $mobile,
- 'password' => $password,
- 'avatar' => '/assets/img/avatar.png',
- 'salt' => Random::alnum(),
- 'jointime' => $time,
- 'joinip' => $ip,
- 'logintime' => $time,
- 'loginip' => $ip,
- 'prevtime' => $time,
- 'is_auth' => 1
- ]);
- $params['password'] = md5(md5($password) . $params['salt']);
- //开启事务
- Db::startTrans();
- $rs = Db::name('user')->insertGetId($params);
- if (!$rs) {
- Db::rollback();
- $this->error('注册失败');
- }
- $data['user_id'] = $rs;
- $data['idcard'] = $idcard;
- $data['zimage'] = $zimage;
- $data['fimage'] = $fimage;
- $data['recommender'] = $recommender;
- $data['recommender_mobile'] = $recommender_mobile;
- $rt = Db::name('user_auth')->insertGetId($data);
- if (!$rt) {
- Db::rollback();
- $this->error('注册失败');
- }
- Db::commit();
- $ret = $this->auth->login($mobile, $password);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }*/
- //注册第一步验证
- public function registercheck()
- {
- $mobile = $this->request->post('mobile'); //手机号
- $code = $this->request->post('code'); //验证码
- $password = $this->request->post('password'); //密码
- $repassword = $this->request->post('repassword', '' , 'trim'); //确认密码
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $count = Db::name('user')->where(['mobile' => $mobile])->count('id');
- if (!$count) {
- $this->error('手机号已被注册');
- }
- if (iconv_strlen($code, 'utf-8') != config('alisms.length')) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if (!$password) {
- $this->error('请输入新密码');
- }
- //验证新密码
- if (!Validate::make()->check(['newpassword' => $password], ['newpassword' => 'require|regex:\S{6,30}'])) {
- $this->error(__('Password must be 6 to 30 characters'));
- }
- if (!$repassword) {
- $this->error('请再次输入密码');
- }
- if ($repassword != $password) {
- $this->error('两次密码不一致');
- }
- $this->success('验证通过');
- }
- /**
- * 退出登录
- * @ApiMethod (POST)
- */
- public function logout()
- {
- if (!$this->request->isPost()) {
- $this->error(__('Invalid parameters'));
- }
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
- //查询会员信息
- public function getinfo()
- {
- $data['nickname'] = $this->auth->nickname; //姓名
- $data['avatar'] = one_domain_image($this->auth->avatar); //头像
- $data['mobile'] = $this->auth->mobile; //手机号
- $data['province'] = $this->auth->province; //省
- $data['city'] = $this->auth->city; //市
- $data['area'] = $this->auth->area; //区
- $data['address'] = $this->auth->address; //详细地址
- $data['is_auth'] = $this->auth->is_auth; //认证状态:0=未申请,1=待审核,2=已通过,3=拒绝
- $data['auth_info'] = [];
- $auth_info = Db::name('user_auth')->field('nickname, idcard, zimage, fimage, province, city, area, address, recommender, recommender_mobile')
- ->where(['user_id' => $this->auth->id])->find();
- $data['auth_info'] = info_domain_image($auth_info, ['zimage', 'fimage']);
- $this->success('会员信息', $data);
- }
- /**
- * 修改会员个人信息
- *
- * @ApiMethod (POST)
- * @param string $avatar 头像地址
- * @param string $username 用户名
- * @param string $nickname 昵称
- * @param string $bio 个人简介
- */
- public function profile()
- {
- if ($this->auth->is_auth == 1) {
- $this->error('认证正在审核,不能修改');
- }
- if ($this->auth->is_auth == 2) {
- $this->error('认证已通过审核,不能修改');
- }
- $nickname = $this->request->post('nickname', '', 'trim'); //姓名
- $idcard = $this->request->post('idcard', '', 'trim,strip_tags,htmlspecialchars'); //身份证号
- $province = $this->request->post('province', '', 'trim'); //省
- $city = $this->request->post('city', '', 'trim'); //市
- $area = $this->request->post('area', '', 'trim'); //区
- $address = $this->request->post('address', '', 'trim'); //详细地址
- $recommender = $this->request->post('recommender', '', 'trim'); //推荐人姓名
- $recommender_mobile = $this->request->post('recommender_mobile', '', 'trim'); //推荐人手机号
- $zimage = $this->request->post('zimage', '', 'trim,strip_tags,htmlspecialchars'); //身份证正面照
- $fimage = $this->request->post('fimage', '', 'trim,strip_tags,htmlspecialchars'); //身份证反面照
- if (!$nickname) {
- $this->error('请输入姓名');
- }
- if (iconv_strlen($nickname, 'utf-8') > 30) {
- $this->error('姓名最多30位');
- }
- if (!$idcard) {
- $this->error('请输入身份证号');
- }
- if (iconv_strlen($idcard, 'utf-8') != 18) {
- $this->error('身份证号错误');
- }
- if (!$province || !$city || !$area) {
- $this->error('请选择养殖场地址');
- }
- if (!$address) {
- $this->error('请输入详细地址');
- }
- if (iconv_strlen($address, 'utf-8') > 255) {
- $this->error('详细地址最多255位');
- }
- if (!$recommender) {
- $this->error('请输入推荐人姓名');
- }
- if (iconv_strlen($recommender, 'utf-8') > 30) {
- $this->error('推荐人姓名最多30位');
- }
- if (!$recommender_mobile || !is_mobile($recommender_mobile)) {
- $this->error('请输入正确推荐人手机号');
- }
- if (!$zimage || !$fimage) {
- $this->error('请上传身份证相关照片');
- }
- // $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->avatar = $avatar;
- $data = [
- 'nickname' => $nickname,
- 'province' => $province,
- 'city' => $city,
- 'area' => $area,
- 'address' => $address,
- 'updatetime' => time()
- ];
- //开启事务
- Db::startTrans();
- //修改用户表
- $data['is_auth'] = 1;
- $rt = Db::name('user')->where(['id' => $this->auth->id])->setField($data);
- if ($rt === false) {
- Db::rollback();
- $this->error('修改失败');
- }
- //修改认证表
- unset($data['is_auth']);
- $data['idcard'] = $idcard;
- $data['zimage'] = $zimage;
- $data['fimage'] = $fimage;
- $data['recommender'] = $recommender;
- $data['recommender_mobile'] = $recommender_mobile;
- $data['status'] = 0;
- $rs = Db::name('user_auth')->where(['user_id' => $this->auth->id])->setField($data);
- if (!$rs) {
- Db::rollback();
- $this->error('修改失败');
- }
- Db::commit();
- $this->success('修改成功');
- }
-
- //修改头像
- public function changeavatar()
- {
- $avatar = input('avatar', '', 'trim'); //头像
- if (!$avatar) {
- $this->error('请上传头像');
- }
- if (iconv_strlen($avatar, 'utf-8') > 255) {
- $this->error('头像长度超出限制');
- }
- $rs = Db::name('user')->where(['id' => $this->auth->id])->setField('avatar', $avatar);
- if (!$rs) {
- $this->error('修改失败');
- }
- $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");
- $config = get_addon_config('third');
- if (!$config || !isset($config[$platform])) {
- $this->error(__('Invalid parameters'));
- }
- $app = new \addons\third\library\Application($config);
- //通过code换access_token和绑定会员
- $result = $app->{$platform}->getUserInfo(['code' => $code]);
- if ($result) {
- $loginret = \addons\third\library\Service::connect($platform, $result);
- if ($loginret) {
- $data = [
- 'userinfo' => $this->auth->getUserinfo(),
- 'thirdinfo' => $result
- ];
- $this->success(__('Logged in successful'), $data);
- }
- }
- $this->error(__('Operation failed'), $url);
- }
- /**
- * 重置密码
- *
- * @ApiMethod (POST)
- * @param string $mobile 手机号
- * @param string $newpassword 新密码
- * @param string $captcha 验证码
- */
- public function resetpwd()
- {
- $type = 'mobile';//$this->request->post("type");
- $mobile = $this->request->post("mobile");
- $email = $this->request->post("email");
- $newpassword = $this->request->post("newpassword");
- $repassword = $this->request->post('repassword', '' , 'trim'); //确认密码
- $captcha = $this->request->post("captcha");
- if (!$newpassword || !$captcha || !$repassword) {
- $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 ($repassword != $newpassword) {
- $this->error('两次密码不一致');
- }
- 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)
- * @param string $captcha 验证码
- * @param string $newpassword 新密码
- * @param string $repassword 确认密码
- */
- public function editpwd()
- {
- $captcha = $this->request->post("captcha", '', 'trim'); //验证码
- $newpassword = $this->request->post("newpassword", '' , 'trim'); //新密码
- $repassword = $this->request->post('repassword', '' , 'trim'); //确认密码
- if (iconv_strlen($captcha, 'utf-8') != config('alisms.length')) {
- $this->error(__('Captcha is incorrect'));
- }
- if (!$newpassword) {
- $this->error('请输入新密码');
- }
- //验证新密码
- if (!Validate::make()->check(['newpassword' => $newpassword], ['newpassword' => 'require|regex:\S{6,30}'])) {
- $this->error(__('Password must be 6 to 30 characters'));
- }
- if (!$repassword) {
- $this->error('请再次输入密码');
- }
- if ($repassword != $newpassword) {
- $this->error('两次密码不一致');
- }
- // $user = \app\common\model\User::getById($this->auth->id);
- // if (!$user) {
- // $this->error(__('User not found'));
- // }
- $ret = Sms::check($this->auth->mobile, $captcha, 'changepwd');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- //模拟一次登录
- $this->auth->direct($this->auth->id);
- $ret = $this->auth->changepwd($newpassword, '', true);
- if ($ret) {
- Sms::flush($this->auth->mobile, 'changepwd');
- $this->success(__('Reset password successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
-
- //查询经营信息
- public function get_businessinfo()
- {
- $data = Db::name('user_business_info')->field('manage, mobile, province, city, area, distribution_channel')
- ->where(['user_id' => $this->auth->id])->find();
- $this->success('经营信息', $data);
- }
- //修改经营信息
- public function editbusinessinfo()
- {
- $manage = $this->request->post('manage', '', 'trim'); //采购负责人
- $mobile = $this->request->post('mobile', '', 'trim'); //联系方式
- $province = $this->request->post('province', '', 'trim'); //省
- $city = $this->request->post('city', '', 'trim'); //市
- $area = $this->request->post('area', '', 'trim'); //区
- $distribution_channel = $this->request->post('distribution_channel', '', 'trim'); //销售渠道
- $data = [];
- if ($manage) {
- if (iconv_strlen($manage, 'utf-8') > 50) {
- $this->error('采购负责人最多50字');
- }
- $data['manage'] = $manage;
- }
- if ($mobile) {
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $data['mobile'] = $mobile;
- }
- if ($province && $city && $area) {
- $data['province'] = $province;
- $data['city'] = $city;
- $data['area'] = $area;
- }
- if ($distribution_channel) {
- if (iconv_strlen($distribution_channel, 'utf-8') > 255) {
- $this->error('销售渠道说明最多50字');
- }
- $data['distribution_channel'] = $distribution_channel;
- }
- if (!$data) {
- $this->error('暂无修改内容');
- }
- $count = Db::name('user_business_info')->where(['user_id' => $this->auth->id])->count();
- if ($count) {
- $data['updatetime'] = time();
- $rs = Db::name('user_business_info')->where(['user_id' => $this->auth->id])->setField($data);
- } else {
- $data['user_id'] = $this->auth->id;
- $data['createtime'] = time();
- $rs = Db::name('user_business_info')->insertGetId($data);
- }
- if (!$rs) {
- $this->error('修改失败');
- }
- $this->success('修改成功');
- }
- //查询猪车信息
- public function getpigcar()
- {
- $data = Db::name('user_pig_car')->where(['user_id' => $this->auth->id])->select();
- $data = list_domain_image($data, ['images']);
- $this->success('查询猪车信息', $data);
- }
- /**
- * 添加猪车信息
- *
- *$data = [
- [
- 'carnumber' => '123',
- 'carframenumber' => '344',
- 'images' => '123.jpg,234.jpg,345.jpg'
- ],
- [
- 'carnumber' => '123',
- 'carframenumber' => '344',
- 'images' => '123.jpg,234.jpg,345.jpg'
- ],
- [
- 'carnumber' => '123',
- 'carframenumber' => '344',
- 'images' => '123.jpg,234.jpg,345.jpg'
- ]
- ];
- *
- */
- public function addpigcar()
- {
- $pig_car = input('pig_car', '', 'trim'); //猪车信息json串: carnumber车牌号 carframenumber车架号 images车辆照片
- if (!$pig_car) {
- $this->error('请添加猪车信息');
- }
- $pig_car = json_decode($pig_car, true);
- if (!$pig_car) {
- $this->error('请添加猪车信息');
- }
- if (count($pig_car) > 9) {
- $this->error('一次最多添加9条记录');
- }
- $_data = [];
- foreach ($pig_car as &$v) {
- $data = [];
- if (!$v['carnumber']) {
- $this->error('请输入车牌号');
- break;
- }
- if (iconv_strlen($v['carnumber'], 'utf-8') > 50) {
- $this->error('车牌号最多50字');
- break;
- }
- if (!$v['carframenumber']) {
- $this->error('请输入车架号');
- break;
- }
- if (iconv_strlen($v['carframenumber'], 'utf-8') > 50) {
- $this->error('车架号最多50字');
- break;
- }
- if ($v['images']) {
- $image_arr = explode(',', $v['images']);
- if (count($image_arr) > 9) {
- $this->error('每辆车照片最多9张');
- break;
- }
- $data['images'] = $v['images'];
- }
- $data['user_id'] = $this->auth->id;
- $data['carnumber'] = $v['carnumber'];
- $data['carframenumber'] = $v['carframenumber'];
- $data['createtime'] = time();
- array_push($_data, $data);
- }
- $rs = Db::name('user_pig_car')->insertAll($_data);
- if (!$rs) {
- $this->error('添加失败');
- }
- $this->success('添加成功');
- }
- //删除猪车信息
- public function delpigcar()
- {
- $id = input('id', 0, 'intval'); //猪车id
- if (!$id) {
- $this->error('请选择要删除的猪车');
- }
- $info = Db::name('user_pig_car')->where(['id' => $id, 'user_id' => $this->auth->id])->find();
- if (!$info) {
- $this->error('这不是您的车');
- }
- $rs = Db::name('user_pig_car')->where(['id' => $id, 'user_id' => $this->auth->id])->delete();
- if (!$rs) {
- $this->error('删除失败');
- }
- $this->success('删除成功');
- }
- //平台介绍
- public function getabout()
- {
- $info = Db::name('platform_info')->field('title, content')->where(['type' => 1])->find();
- $this->success('平台介绍', $info);
- }
- //常见问题
- public function problem()
- {
- $list = Db::name('problem')->field('id, title, content')
- ->page($this->page, config('paginate.list_rows'))->order('weigh', 'desc')->select();
- $this->success('常见问题', $list);
- }
- //投诉举报类型
- public function complainttype()
- {
- $list = Db::name('complaint_type')->field('id, name')->where(['pid' => 0])->order('weigh', 'desc')->select();
- $list = $this->getchildtype($list);
- $this->success('常见问题', $list);
- }
- //无限级投诉举报类型
- public function getchildtype($list = [])
- {
- $complaint_type = Db::name('complaint_type');
- foreach ($list as &$v) {
- $child = $complaint_type->field('id, name')->where(['pid' => $v['id']])->order('weigh', 'desc')->select();
- if ($child) {
- $child = $this->getchildtype($child);
- }
- $v['child'] = $child;
- }
- return $list;
- }
- //投诉举报
- public function complaint()
- {
- $complaint_type = input('complaint_type', '', 'trim'); //投诉类型
- $order_sn = input('order_sn', '', 'trim'); //订单号
- $be_complaint_user = input('be_complaint_user', '', 'trim'); //被投诉人/单位
- $complaint_user = input('complaint_user', '', 'trim'); //投诉人
- $mobile = input('mobile', '', 'trim'); //联系电话
- $code = input('code', '', 'trim'); //验证码
- $content = input('content', '', 'trim'); //情况说明
- $images = input('images', '', 'trim'); //附件材料
- $data = [];
- if (!$complaint_type) {
- $this->error('请选择投诉类型');
- }
- if ($order_sn) {
- if (iconv_strlen($order_sn, 'utf-8') > 255) {
- $this->error('订单号最多255位');
- }
- //查询订单
- $count = Db::name('mark_bid')->where(['user_id' => $this->auth->id, 'order_sn' => $order_sn, 'status' => 1])->count();
- if (!$count) {
- $this->error('请输入正确中标订单号');
- }
- }
- if (!$be_complaint_user) {
- $this->error('请输入被投诉人/单位');
- }
- if (iconv_strlen($be_complaint_user, 'utf-8') > 50) {
- $this->error('被投诉人/单位最多50字');
- }
- if (!$complaint_user) {
- $this->error('请输入投诉人');
- }
- if (iconv_strlen($complaint_user, 'utf-8') > 50) {
- $this->error('投诉人最多50字');
- }
- if (!is_mobile($mobile)) {
- $this->error('请输入正确联系电话');
- }
- if (iconv_strlen($code, 'utf-8') != config('alisms.length')) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'complaint');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if (!$content) {
- $this->error('请输入情况说明');
- }
- if (iconv_strlen($content, 'utf-8') > 3000) {
- $this->error('情况说明最多3000字');
- }
- if ($images) {
- $image_arr = explode(',', $images);
- if (count($image_arr) > 9) {
- $this->error('附件照片最多9张');
- }
- $data['images'] = $images;
- }
- $data['user_id'] = $this->auth->id;
- $data['complaint_type'] = $complaint_type;
- $data['order_sn'] = $order_sn;
- $data['be_complaint_user'] = $be_complaint_user;
- $data['complaint_user'] = $complaint_user;
- $data['mobile'] = $mobile;
- $data['content'] = $content;
- $data['images'] = $images;
- $data['createtime'] = time();
- $rs = Db::name('complaint')->insertGetId($data);
- if (!$rs) {
- $this->error('投诉失败');
- }
- Sms::flush($this->auth->mobile, 'complaint');
- $this->success('投诉成功');
- }
- //评价列表
- public function getmarkcomment()
- {
- $list = Db::name('mark_bid_comment')->where(['user_id' => $this->auth->id])
- ->page($this->page, config('paginate.list_rows'))->order('createtime', 'desc')->select();
- $list = list_domain_image($list, ['images']);
- $mark = Db::name('mark');
- $mark_bid = Db::name('mark_bid');
- foreach ($list as &$v) {
- $v['mark'] = $mark->find($v['mark_id']);
- $v['mark'] = info_domain_image($v['mark'], ['image', 'video', 'defective_images', 'road_images', 'pig_out_images']);
- $v['order_sn'] = $mark_bid->where(['id' => $v['mark_bid_id']])->value('order_sn');
- }
- $this->success('评论列表', $list);
- }
- //评价
- public function markcomment()
- {
- $mark_id = input('mark_id', 0, 'intval'); //招标id
- $content = input('content', '', 'trim'); //情况说明
- $images = input('images', '', 'trim'); //附件材料
- $data = [];
- if (!$mark_id) {
- $this->error('请选择要评价的数据');
- }
- $info = Db::name('mark')->find($mark_id);
- if (!$info) {
- $this->error('招标信息不存在');
- }
- $bid_id = Db::name('mark_bid')->where(['user_id' => $this->auth->id, 'mark_id' => $mark_id, 'status' => 1])->value('id');
- if (!$bid_id) {
- $this->error('您未中标,暂不能评价');
- }
- if (!$content) {
- $this->error('请输入评价内容');
- }
- if (iconv_strlen($content, 'utf-8') > 3000) {
- $this->error('评价内容最多3000字');
- }
- if ($images) {
- $image_arr = explode(',', $images);
- if (count($image_arr) > 9) {
- $this->error('照片最多9张');
- }
- $data['images'] = $images;
- }
- $data['user_id'] = $this->auth->id;
- $data['mark_id'] = $mark_id;
- $data['mark_bid_id'] = $bid_id;
- $data['content'] = $content;
- $data['images'] = $images;
- $data['createtime'] = time();
- $rs = Db::name('mark_bid_comment')->insertGetId($data);
- if (!$rs) {
- $this->error('评价失败');
- }
- $this->success('评价成功');
- }
- //个人账单列表
- public function getcompanymoney()
- {
- $list = Db::name('company')->field('id, name')->page($this->page, config('paginate.list_rows'))->select();
- $company_money_log = Db::name('company_money_log');
- foreach ($list as &$v) {
- $log = $company_money_log->where(['company_id' => $v['id'], 'user_id' => $this->auth->id])->order('id', 'desc')->find();
- if ($log) {
- $v['money'] = $log['after'];
- $v['can_money'] = $log['after'];
- } else {
- $v['money'] = '0';
- $v['can_money'] = '0';
- }
- }
- $this->success('个人账单列表', $list);
- }
- //个人账单明细
- public function getcompanymoneydetail()
- {
- $company_id = input('company_id', 0, 'intval'); //公司id
- $start_time = input('start_time', 0, 'strtotime'); //开始时间
- $end_time = input('end_time', 0, 'strtotime'); //结束时间
- if (!$company_id) {
- $this->error('参数缺失');
- }
- $where['company_id'] = $company_id;
- $where['user_id'] = $this->auth->id;
- if ($start_time && $end_time) {
- $where['createtime'] = ['between', [$start_time, $end_time]];
- }
- $list = Db::name('company_money_log')->field('id, money, memo, createtime')
- ->where($where)->page($this->page, config('paginate.list_rows'))->order('id', 'desc')->select();
- foreach ($list as &$v) {
- $v['createtime'] = date('Y-m-d H:i:s', $v['createtime']);
- }
- $data['income'] = Db::name('company_money_log')->where($where)->where(['money' => ['gt', 0]])->sum('money');
- $data['expend'] = Db::name('company_money_log')->where($where)->where(['money' => ['lt', 0]])->sum('money');
- $data['list'] = $list;
- $this->success('个人账单明细', $data);
- }
- //关于我们/免责协议/用户协议/隐私政策
- public function getagreement()
- {
- $type = input('type', 0, 'intval');
- if (!in_array($type, [1, 2, 3, 4])) {
- $this->error('参数错误');
- }
- $info = Db::name('platform_info')->field('title, content')->where(['type' => $type])->find();
- $this->success('协议', $info);
- }
- //获取openid
- public function getopenid() {
- //code
- $code = $this->request->param('code', '', 'trim');// code值
- if (!$code) {
- $this->error(__('Invalid parameters'));
- }
- $config = config('wxchatpay');
- $getopenid_url = 'https://api.weixin.qq.com/sns/jscode2session?appid='.$config['app_id'].'&secret='.$config['app_secret'].'&js_code='.$code.'&grant_type=authorization_code';
- $openidInfo = httpRequest($getopenid_url, 'GET');//$this->getJson($getopenid_url);
- $openidInfo = json_decode($openidInfo,true);
- if(!isset($openidInfo['openid'])) {
- $this->error('用户openid获取失败', $openidInfo);
- }
- $this->success('success', $openidInfo);
- }
- //微信登录
- public function wxlogin() {
- $openid = input('openid', '', 'trim');
- if (!$openid) {
- $this->error('参数缺失');
- }
- $user = \app\common\model\User::getByOpenid($openid);
- if (!$user) {
- $this->error('用户尚未注册', [], 5);
- }
- if ($user['status'] != 1) {
- $this->error(__('Account is locked'));
- }
- $ret = $this->auth->direct($user->id);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Logged in successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- //注册
- public function register()
- {
- $mobile = $this->request->post('mobile', '', 'trim'); //手机号
- $code = $this->request->post('code', '', 'trim'); //验证码
- $birthday = $this->request->post('birthday', '', 'strtotime'); //生日
- $gender = $this->request->post('gender', 0, 'intval'); //性别:1=男,2=女
- $invite_no = $this->request->post('invite_no', '', 'trim'); //邀请码
- $openid = $this->request->post('openid', '', 'trim'); //微信openid
- $nickname = $this->request->post('nickname', '', 'trim'); //微信昵称
- $avatar = $this->request->post('avatar', '', 'trim,strip_tags,htmlspecialchars'); //微信头像
- $openidcount = Db::name('user')->where(['openid' => $openid])->count('id');
- if ($openidcount) {
- $this->error('微信已经注册,请直接登录');
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- $count = Db::name('user')->where(['mobile' => $mobile])->count('id');
- if ($count) {
- $this->error('手机号已被注册');
- }
- if (iconv_strlen($code, 'utf-8') != config('alisms.length')) {
- $this->error(__('Captcha is incorrect'));
- }
- $ret = Sms::check($mobile, $code, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- if (!$birthday || $birthday >= time()) {
- $this->error('请选择正确生日');
- }
- if (!in_array($gender, [1, 2])) {
- $this->error('请选择性别');
- }
- $invitecount = Db::name('user')->where(['invite_no' => $invite_no])->count('id');
- if (!$invitecount) {
- $this->error('邀请码不存在');
- }
- if (!$nickname || !$avatar) {
- $this->error('参数缺失');
- }
- if (iconv_strlen($nickname, 'utf-8') > 30 || iconv_strlen($avatar, 'utf-8') > 255) {
- $this->error('参数错误');
- }
- $ip = request()->ip();
- $time = time();
- $data = [
- 'nickname' => $nickname,
- 'province' => $province,
- 'city' => $city,
- 'area' => $area,
- 'address' => $address,
- 'createtime' => $time
- ];
- $params = array_merge($data, [
- 'mobile' => $mobile,
- 'password' => $password,
- 'avatar' => '/assets/img/avatar.png',
- 'salt' => Random::alnum(),
- 'jointime' => $time,
- 'joinip' => $ip,
- 'logintime' => $time,
- 'loginip' => $ip,
- 'prevtime' => $time,
- 'is_auth' => 1
- ]);
- $params['password'] = md5(md5($password) . $params['salt']);
- //开启事务
- Db::startTrans();
- $rs = Db::name('user')->insertGetId($params);
- if (!$rs) {
- Db::rollback();
- $this->error('注册失败');
- }
- $data['user_id'] = $rs;
- $data['idcard'] = $idcard;
- $data['zimage'] = $zimage;
- $data['fimage'] = $fimage;
- $data['recommender'] = $recommender;
- $data['recommender_mobile'] = $recommender_mobile;
- $rt = Db::name('user_auth')->insertGetId($data);
- if (!$rt) {
- Db::rollback();
- $this->error('注册失败');
- }
- Db::commit();
- $ret = $this->auth->login($mobile, $password);
- if ($ret) {
- $data = ['userinfo' => $this->auth->getUserinfo()];
- $this->success(__('Sign up successful'), $data);
- } else {
- $this->error($this->auth->getError());
- }
- }
- }
|