1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300 |
- <?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 app\common\library\Token;
- use think\Db;
- use app\common\model\UserDeviceInfo;
- use onlogin\onlogin;
- use addons\epay\library\Service;
- use app\common\library\Wechat;
- use app\common\library\Tenim;
- class User extends Api
- {
- protected $noNeedLogin = ['emaillogin','emailregister','mobilelogin','resetpwd'];
- protected $noNeedRight = '*';
- public function _initialize()
- {
- parent::_initialize();
- }
-
- public function emaillogin()
- {
- $account = input('account');
- $password = input('password');
- if (!$account || !$password) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::is($account, 'email')) {
- $this->error(__('Email is incorrect'));
- }
- $ret = $this->auth->login($account, $password);
- if ($ret) {
- $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple());
- } else {
- $this->error($this->auth->getError());
- }
- }
-
- public function emailregister()
- {
- $account = input('account');
- $captcha = input('captcha');
- $password = input('password');
- if (!$account || !$captcha || !$password) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::is($account, 'email')) {
- $this->error(__('Email is incorrect'));
- }
- $ret = Ems::check($account, $captcha, 'register');
- if (!$ret) {
- $this->error(__('Captcha is incorrect'));
- }
- $extend = [
- 'register_from' => input('register_from',''),
- 'gender' => -1
- ];
- $ret = $this->auth->register('',$password,$account,'', $extend);
- if ($ret) {
- Ems::flush($account);
- $this->success('注册成功', $this->auth->getUserinfo_simple());
- } else {
- $this->error($this->auth->getError());
- }
- }
-
- public function mobilelogin()
- {
- $mobile = input('mobile');
- $captcha = input('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 == -1) {
- $this->error('账户已注销');
- }
- if (!in_array($user->status,[1,2])) {
- $this->error(__('Account is locked'));
- }
- if ($user->frozentime > time()) {
- $this->error('您的账号已被封禁至' . date('Y-m-d H:i'));
- }
-
- $ret = $this->auth->direct($user->id);
- } else {
- $extend = [
- 'register_from' => input('register_from',''),
- 'gender' => -1
- ];
- $ret = $this->auth->register('', '', '', $mobile, $extend);
- }
- if ($ret) {
- Sms::flush($mobile, 'mobilelogin');
- $this->success(__('Logged in successful'), $this->auth->getUserinfo_simple());
- } else {
- $this->error($this->auth->getError());
- }
- }
-
- public function setgender() {
- $user_id = $this->auth->id;
- $gender = input('gender', -1, 'intval');
- if (!in_array($gender, [1, 0])) {
- $this->error('性别错误');
- }
- $edit_data['gender'] = $gender;
- $edit_data['avatar'] = $gender == 1 ? config('avatar_boy') : config('avatar_girl');
- $rs = Db::name('user')->where(['id' => $user_id])->update($edit_data);
- if ($rs === false) {
- $this->error('您的网络开小差啦~');
- }
- $data['gender'] = $edit_data['gender'];
- $data['avatar'] = $edit_data['avatar'];
-
- $tenim = new Tenim();
- $tenim->useredit(''.$user_id,'',localpath_to_netpath($data['avatar']));
- $this->success('success', $data);
- }
-
- public function get_rand_nick_name(){
- $nickname = $this->auth->get_rand_nick_name();
- $this->success('success', $nickname);
- }
-
- public function perfect_info() {
- $avatar = input('avatar', '', 'trim');
- $nickname = input('nickname', '', 'trim');
- $birthday = input('birthday', '', 'strtotime');
- $hometown_cityid = input('hometown_cityid', '', 'trim');
- $bio = input('bio', '', 'trim');
- $hobby = input('hobby', '', 'trim');
- $marital = input('marital', '', 'trim');
- $introcode = input('introcode', '', 'trim');
- $data = [];
- if ($avatar) {
- $data['avatar'] = $avatar;
- }
- if ($nickname !== '') {
- if (iconv_strlen($nickname, 'utf-8') > 10) {
- $this->error('昵称最多10个字~');
- }
- $data['nickname'] = $nickname;
- }
- if ($birthday) {
- $data['birthday'] = $birthday;
- }
- if ($hometown_cityid) {
- $count = Db::name('area')->where('id', $hometown_cityid)->count('id');
- if (!$count) {
- $this->error('城市不存在');
- }
- $data['hometown_cityid'] = $hometown_cityid;
- }
- if ($bio) {
- $data['bio'] = $bio;
- }
- if ($hobby) {
- $data['hobby'] = $hobby;
- }
- if ($marital) {
- $data['marital'] = $marital;
- }
- if ($introcode && !$this->auth->intro_uid) {
- $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $introcode)->find();
- if ($intro_user && $intro_user['id'] != $this->auth->id && $intro_user['intro_uid'] != $this->auth->id) {
- $data['intro_uid'] = $intro_user['id'];
- $data['invite_time'] = time();
- }
- }
-
- Db::startTrans();
- $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
- if($update_rs === false){
- Db::rollback();
- $this->error('修改失败');
- }
-
- if(isset($data['intro_uid'])){
- $intro_gold = config('site.new_user_intro_gold');
- if($intro_gold > 0){
- $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'money',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励');
- if($rs_wallet['status'] === false){
- Db::rollback();
- $this->error('邀请新人奖励赠送失败');
- }
- }
- }
-
- if(isset($data['avatar'])){
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
- if (isset($data['birthday'])) {
-
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
- Db::commit();
- $this->success('修改成功');
- }
-
- public function userInfo($type = 1){
- $info = $this->auth->getUserinfo();
- $info['is_vip'] = $this->is_vip($info['vip_endtime'],$info['vip_level']);
- if($type == 'return'){
- return $info;
- }
- $this->success(__('success'),$info);
- }
-
- public function profile()
- {
- $field_array = ['nickname','introcode','birthday','height','weight','bio','audio_bio','avatar','photo_images','education','hobby','job','marital','tag','wages','hometown_cityid','hide_is_finishinfo','character','constellation','stature','is_appointment', 'greet_voice', 'greet_chat', 'is_cohabit', 'live', 'is_house', 'car', 'chest', 'waist'];
- $data = [];
- foreach($field_array as $key => $field){
- if(!input('?'.$field)){
- continue;
- }
- $newone = input($field);
- if($field == 'avatar'){
-
-
-
-
- $newone = input('avatar', '', 'trim,strip_tags,htmlspecialchars');
- }
- if($field == 'photo_images'){
- $newone = input('photo_images', '', 'trim,strip_tags,htmlspecialchars');
- }
- $data[$field] = $newone;
- }
- if(isset($data['birthday'])){
- $data['birthday'] = strtotime($data['birthday']);
- }
- if(isset($data['avatar'])){
-
- }
- if(isset($data['introcode'])){
- if ($this->auth->intro_uid != 0) {
- $this->error('邀请人不可修改~');
- }
- $intro_user = Db::name('user')->field('id, intro_uid')->where('introcode', $data['introcode'])->find();
- if(!$intro_user){
- $this->error('不存在的邀请人');
- }
- if ($intro_user['id'] == $this->auth->id) {
- $this->error('不能填写自己邀请码');
- }
- if ($intro_user['intro_uid'] == $this->auth->id) {
- $this->error('不能填写下级邀请码');
- }
- unset($data['introcode']);
- $data['intro_uid'] = $intro_user['id'];
- $data['invite_time'] = time();
- }
-
- if(empty($data)){
- $this->error('没有任何改变');
- }
- Db::startTrans();
- $userData = Db::name('user')->field('avatar,gender,status')->where('id',$this->auth->id)->find();
- if (isset($data['avatar']) && !empty($data['avatar']) && $userData['status'] == 2) {
- $boyAvatar = config('avatar_boy');
- $girlAvatar = config('avatar_girl');
- if ($userData['gender'] == 1 && $data['avatar'] != $boyAvatar) {
- $data['status'] = 1;
- } elseif ($userData['gender'] == 0 && $data['avatar'] != $girlAvatar) {
- $data['status'] = 1;
- }
- }
- $update_rs = Db::name('user')->where('id',$this->auth->id)->update($data);
- if($update_rs === false){
- Db::rollback();
- $this->error('修改资料失败');
- }
-
- if(isset($data['intro_uid'])){
- $intro_gold = config('site.new_user_intro_gold');
- if($intro_gold > 0){
- $rs_wallet = model('wallet')->lockChangeAccountRemain($data['intro_uid'], 0,'money',$intro_gold,34,'邀请'.$this->auth->username.'注册奖励');
- if($rs_wallet['status'] === false){
- Db::rollback();
- $this->error('邀请新人奖励赠送失败');
- }
- }
- }
-
-
- if(isset($data['avatar'])){
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,19);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
-
- if (isset($data['birthday'])) {
-
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,1);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
-
- if(isset($data['bio'])){
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,2);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
-
- if(isset($data['audio_bio'])){
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,21);
- if($task_rs === false){
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
-
- if(isset($data['photo_images'])){
- $photo_images_num = count(explode(',',$data['photo_images'])) + count(explode(',',$this->auth->photo_images));
- if ($photo_images_num >= 5) {
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id, 5);
- if ($task_rs === false) {
- Db::rollback();
- $this->error('完成任务赠送奖励失败');
- }
- }
- }
- Db::commit();
- $this->success();
- }
-
- public function logout()
- {
- if (!$this->request->isPost()) {
- $this->error(__('Invalid parameters'));
- }
-
- $tenIm = new Tenim();
- $tenIm->loginoutim($this->auth->id);
-
- Db::name('user')->where('id',$this->auth->id)->update(['is_active' => 0]);
- $this->auth->logout();
- $this->success(__('Logout successful'));
- }
-
- public function resetpwd()
- {
-
- $type = 'email';
- $mobile = input("mobile");
- $email = input("email");
- $newpassword = input("newpassword");
- $captcha = input("captcha");
- if (!$newpassword || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- 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());
- }
- }
-
- public function bindmobile()
- {
- $user = $this->auth->getUser();
- $mobile = $this->request->request('mobile');
- $captcha = $this->request->request('captcha');
- if(!empty($this->auth->mobile)){
- $this->error('已经绑定了手机号');
- }
- 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)->find()) {
- $this->error('该手机号已被其他用户绑定');
- }
- $result = Sms::check($mobile, $captcha, 'changemobile');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
- $user->mobile = $mobile;
- $user->save();
- Sms::flush($mobile, 'changemobile');
-
- $task_rs = \app\common\model\TaskLog::tofinish($this->auth->id,18);
- if($task_rs === false){
- Db::rollback();
- return false;
- }
- $this->success('success',$this->userInfo('return'));
- }
-
- public function cancleconfig(){
- $rs = [
- 'rule' => config('site.user_cancle_rules'),
- 'reason' => [
- '想换个新账号',
- '没有聊得来的',
- '不想玩了',
- '其他原因',
- ],
- ];
- $this->success(1,$rs);
- }
-
- public function cancleUser(){
- if (!$this->request->isPost()) {
- $this->error(__('Invalid parameters'));
- }
-
- $tenIm = new Tenim();
- $tenIm->loginoutim($this->auth->id);
- $data = [
- 'status' => -1,
- 'mobile' => 'close_'.$this->auth->mobile,
- 'wechat_openid' => 'close_'.$this->auth->wechat_openid,
- ];
- Db::name('user')->where('id',$this->auth->id)->update($data);
- $this->auth->logout();
- $this->success('注销成功');
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public function change_longlat(){
- $longitude = input_post('longitude');
- $latitude = input_post('latitude');
- $cityname = input_post('cityname');
- if(empty($longitude) || empty($latitude) || empty($cityname)){
- $this->error();
- }
- $data = [
- 'longitude' => $longitude,
- 'latitude' => $latitude,
- 'cityname' => $cityname,
- ];
- Db::name('user')->where('id',$this->auth->id)->update($data);
- $this->success();
- }
-
- public function changemobile()
- {
- $user = $this->auth->getUser();
- $oldcaptcha = $this->request->request('oldcaptcha');
- $mobile = $this->request->request('mobile');
- $captcha = $this->request->request('captcha');
- if (!$oldcaptcha || !$mobile || !$captcha) {
- $this->error(__('Invalid parameters'));
- }
- if (!Validate::regex($mobile, "^1\d{10}$")) {
- $this->error(__('Mobile is incorrect'));
- }
- if($user->mobile == $mobile){
- $this->error('新手机号不能与旧手机号相同');
- }
- if (\app\common\model\User::where('mobile', $mobile)->find()) {
- $this->error(__('Mobile already exist'));
- }
- $result = Sms::check($user->mobile, $oldcaptcha, 'changemobile');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
- $result = Sms::check($mobile, $captcha, 'changemobile');
- if (!$result) {
- $this->error(__('Captcha is incorrect'));
- }
-
- $user->mobile = $mobile;
- $user->save();
- Sms::flush($user->mobile, 'changemobile');
- Sms::flush($mobile, 'changemobile');
- $this->success();
- }
-
-
-
- public function changepwd(){
- $newpassword = input('newpassword');
- $oldpassword = input('oldpassword','');
- if (!$newpassword) {
- $this->error(__('Invalid parameters'));
- }
- if($this->auth->password && empty($oldpassword)){
- $this->error('原密码必填');
- }
- if(empty($this->auth->password)){
- $ret = $this->auth->changepwd($newpassword, '', true);
- }else{
- $ret = $this->auth->changepwd($newpassword,$oldpassword,false);
- }
- if ($ret) {
- $this->success(__('Reset password successful'));
- } else {
- $this->error($this->auth->getError());
- }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public function kefu() {
- $type = input('type', 0, 'intval');
- if (!in_array($type, [0, 1])) {
- $this->error('您的网络开小差啦~');
- }
- if ($type == 0) {
- $user_id = config('site.customer_service_id') ? : 0;
- } else {
- $user_id = config('site.pay_customer_service_id') ? : 0;
- }
- $list = Db::name('user')->field('id')->where(['status' => 1, 'is_kefu' => 1, 'id' => $user_id])->select();
- if (!$list) {
- $this->success('success', $list);
- }
- foreach ($list as $k => &$v) {
- $v['nickname'] = '客服' . ($k + 1);
- $v['avatar'] = config('avatar_girl');
- }
- $this->success('success', $list);
- }
-
- public function editcity() {
- $name = input('name', '', 'trim');
- if ($name === '') {
- $this->error('参数缺失');
- }
- $hometown_cityid = Db::name('area')->where(['name' => $name])->value('id');
- if (!$hometown_cityid) {
- $this->success('修改成功');
- }
- Db::name('user')->where(['id' => $this->auth->id])->setField('hometown_cityid', $hometown_cityid);
- $this->success('修改成功');
- }
-
- public function searchuser() {
- $keyword = input('keyword', '', 'trim');
- if ($keyword === '') {
- $this->error('请输入关键字');
- }
- $id = Db::name('user')->where(['nickname|username' => $keyword])->value('id');
- $id = $id ? : 0;
- $this->success('用户', $id);
- }
-
- }
|