|
@@ -2,11 +2,16 @@
|
|
|
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
+use app\api\model\Address;
|
|
|
+use app\api\model\Foot;
|
|
|
+use app\api\model\Realname;
|
|
|
+use app\api\model\Record;
|
|
|
use app\api\model\UsersModel;
|
|
|
use app\common\controller\Api;
|
|
|
use app\common\library\Ems;
|
|
|
use app\common\library\Sms;
|
|
|
use fast\Random;
|
|
|
+use think\Cache;
|
|
|
use think\Db;
|
|
|
use think\Validate;
|
|
|
|
|
@@ -24,45 +29,494 @@ class User extends Api
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 用户显示
|
|
|
*
|
|
|
- * @param string $user_id 用户id
|
|
|
+ * @param string $user_id 用户id
|
|
|
*/
|
|
|
public function userInfo()
|
|
|
{
|
|
|
$user_id = $this->request->post('user_id');
|
|
|
if (!isset($user_id)) {
|
|
|
- return $this->result('网络错误',[],100);
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
}
|
|
|
- $data = UsersModel::where('user_id',$user_id)->find();
|
|
|
+ $data = UsersModel::where('user_id', $user_id)->find();
|
|
|
$data['daifahuo'] = 1;
|
|
|
$data['daishouhuo'] = 1;
|
|
|
if ($data) {
|
|
|
- return $this->result('',$data,200);
|
|
|
+ return $this->result('', $data, 200);
|
|
|
} else {
|
|
|
- return $this->result('未获取用户信息',[],100);
|
|
|
+ return $this->result('未获取用户信息', [], 100);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 修改昵称
|
|
|
*
|
|
|
- * @param string $user_id 用户id
|
|
|
- * @param string $user_nickname 用户昵称
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $user_nickname 用户昵称
|
|
|
*/
|
|
|
- public function updNickName () {
|
|
|
+ public function updNickName()
|
|
|
+ {
|
|
|
$params = $this->request->post();
|
|
|
if (!isset($params['user_id']) || !isset($params['user_nickname'])) {
|
|
|
- return $this->result('网络错误',[],100);
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
}
|
|
|
- $selNickName = UsersModel::where($params)->find();
|
|
|
+ $data['user_nickname'] = $params['user_nickname'];
|
|
|
+ $data['user_id'] = $params['user_id'];
|
|
|
+ $selNickName = UsersModel::where($data)->find();
|
|
|
if ($selNickName) {
|
|
|
- return $this->result('请输入新昵称',[],100);
|
|
|
+ return $this->result('请输入新昵称', [], 100);
|
|
|
}
|
|
|
- $updNickName = UsersModel::where('user_id',$params['user_id'])->allowField(true)->save($params);
|
|
|
+ $userModel = new UsersModel();
|
|
|
+ $updNickName = $userModel->allowField(true)->save($data, ['user_id' => $params['user_id']]);
|
|
|
if ($updNickName) {
|
|
|
+ return $this->result('修改成功', [], 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('修改失败', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改密码
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $user_pwd 用户密码
|
|
|
+ * @param string $user_qrpwd 重复 密码
|
|
|
+ */
|
|
|
+ public function updPwd()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $rules = [
|
|
|
+ 'user_id' => 'require|number',
|
|
|
+ 'user_pwd' => 'require|max:18|min:6',
|
|
|
+ 'user_qrpwd' => 'require',
|
|
|
+ ];
|
|
|
+ $msg = [
|
|
|
+ 'user_id.require' => '用户id不能为空',
|
|
|
+ 'user_id.number' => '用户i为整形',
|
|
|
+ 'user_pwd.require' => '密码不能为空',
|
|
|
+ 'user_pwd.max' => '密码最大18位',
|
|
|
+ 'user_pwd.min' => '密码最小6位',
|
|
|
+ 'user_qrpwd.require' => '重复密码不能为空',
|
|
|
+ ];
|
|
|
+ $validata = $this->validate($params, $rules, $msg);
|
|
|
+ if (is_string($validata)) {
|
|
|
+ return $this->result($validata, [], 100);
|
|
|
+ }
|
|
|
+ if ($params['user_pwd'] != $params['user_qrpwd']) {
|
|
|
+ return $this->result('两次密码输入不一致', [], 100);
|
|
|
+ }
|
|
|
+ $data = array(
|
|
|
+ 'user_id' => $params['user_id'],
|
|
|
+ 'user_pwd' => sha1(md5($params['user_pwd'])),
|
|
|
+ );
|
|
|
+ $model = new UsersModel();
|
|
|
+ $updPwd = $model->allowField(true)->save($data, ['user_id' => $data['user_id']]);
|
|
|
+ if ($updPwd) {
|
|
|
+ return $this->result('修改成功', [], 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('修改失败', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改支付密码
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $user_tel 手机号
|
|
|
+ * @param string $code 验证码
|
|
|
+ * @param string $user_paypwd 支付密码
|
|
|
+ * @param string $user_qrpaypwd 确认支付密码
|
|
|
+ */
|
|
|
+ public function updPayPwd()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $rules = [
|
|
|
+ 'user_tel' => "require|number",
|
|
|
+ 'user_id' => "require|number",
|
|
|
+ 'code' => "require",
|
|
|
+ 'user_paypwd' => "require|number",
|
|
|
+ 'user_qrpaypwd' => "require",
|
|
|
+ ];
|
|
|
+ $msg = [
|
|
|
+ 'user_tel.require' => '手机号不能为空',
|
|
|
+ 'user_id.require' => '网络错误',
|
|
|
+ 'user_code.require' => '验证码不能为空',
|
|
|
+ 'user_paypwd.require' => '支付密码不能为空',
|
|
|
+ 'user_qrpaypwd.require' => '支付密码不能为空',
|
|
|
+ 'user_paypwd.number' => '支付密码只支持数字',
|
|
|
+ 'user_code.number' => '验证码只支持数字',
|
|
|
+ 'user_id.number' => '网络错误',
|
|
|
+ 'user_tel.number' => '手机号不合法',
|
|
|
+ ];
|
|
|
+ $validata = $this->validate($params, $rules, $msg);
|
|
|
+ if (is_string($validata)) {
|
|
|
+ return $this->result($validata, [], 100);
|
|
|
+ }
|
|
|
+ if ($params['user_paypwd'] != $params['user_qrpaypwd']) {
|
|
|
+ return $this->result('两次密码输入不一致', [], 100);
|
|
|
+ }
|
|
|
+ $code = Cache::get($params['code']);
|
|
|
+ if (!$code) {
|
|
|
+ return $this->result('验证码错误', [], 100); // 验证验证码
|
|
|
+ }
|
|
|
+ $data = array(
|
|
|
+ 'user_id' => $params['user_id'],
|
|
|
+ 'user_paypwd' => $params['user_paypwd'],
|
|
|
+ );
|
|
|
+ $user = new UsersModel();
|
|
|
+ $validataTel = $user->where('user_id', $data['user_id'])->where('user_tel', $params['user_tel'])->find();
|
|
|
+ if (!$validataTel) {
|
|
|
+ return $this->result('请使用此账号手机号修改密码', [], 100);
|
|
|
+ }
|
|
|
+ $validataPayPwd = $user->where($data)->find();
|
|
|
+ if ($validataPayPwd) {
|
|
|
+ return $this->result('请输入新密码', [], 100);
|
|
|
+ }
|
|
|
+ $updPayPwd = $user->allowField(true)->save($data, ['user_id' => $data['user_id']]);
|
|
|
+ if ($updPayPwd) {
|
|
|
+ Cache::rm($params['code']); // 删除缓存验证码
|
|
|
+ return $this->result('修改成功', [], 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('修改失败', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实名认证
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $user_nickname 姓名
|
|
|
+ * @param string $idcard 身份证号
|
|
|
+ */
|
|
|
+ public function realName()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $rules = [
|
|
|
+ 'user_id' => 'require|number',
|
|
|
+ 'user_nickname' => 'require',
|
|
|
+ 'idcard' => 'require'
|
|
|
+ ];
|
|
|
+ $msg = [
|
|
|
+ 'user_id.require' => '网络错误',
|
|
|
+ 'user_nickname.require' => '姓名不能为空',
|
|
|
+ 'idcard.require' => '身份证号不能为空',
|
|
|
+ 'user_id.number' => '网络错误',
|
|
|
+ ];
|
|
|
+ $validata = $this->validate($params, $rules, $msg);
|
|
|
+ if (is_string($validata)) {
|
|
|
+ return $this->result($validata, [], 100);
|
|
|
+ }
|
|
|
+ $is_name = UsersModel::where('user_id', $params['user_id'])->where('is_realname', 1)->find();
|
|
|
+ if ($is_name) {
|
|
|
+ return $this->result('您已经实名认证过了', [], 100);
|
|
|
+ }
|
|
|
+ $realName = new Realname();
|
|
|
+ $res = $realName->realName($params);
|
|
|
+ return $res;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 常见问题
|
|
|
+ */
|
|
|
+ public function question()
|
|
|
+ {
|
|
|
+ $data = Db::name('question')->find();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('', $data, 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的团队
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function team()
|
|
|
+ {
|
|
|
+ $user_id = $this->request->post('user_id');
|
|
|
+ if (!$user_id) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $user = UsersModel::where('user_id', $user_id)->find();
|
|
|
+ if (!$user) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $data['syj'] = UsersModel::where('user_tel', $user['user_tjtel'])->find();
|
|
|
+ if (!$data['syj']) {
|
|
|
+ $data['syj'] = [];
|
|
|
+ }
|
|
|
+ $data['team'] = UsersModel::where('user_tjtel', $user['user_tel'])->select();
|
|
|
+ if (!$data['team']) {
|
|
|
+ $data['team'] = [];
|
|
|
+ }
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的地址
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function address()
|
|
|
+ {
|
|
|
+ $user_id = $this->request->post('user_id');
|
|
|
+ if (!isset($user_id)) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $data = Address::where('user_id', $user_id)->select();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('暂无数据', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址添加
|
|
|
+ *
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $a_name 姓名
|
|
|
+ * @param string $a_tel 手机号
|
|
|
+ * @param string $city 城市
|
|
|
+ * @param string $area 详细地址
|
|
|
+ * @param string $is_default 1默认0不默认
|
|
|
+ */
|
|
|
+ public function addressAdd()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $rules = [
|
|
|
+ 'user_id' => 'require|number',
|
|
|
+ 'a_name' => 'require',
|
|
|
+ 'city' => 'require',
|
|
|
+ 'area' => 'require',
|
|
|
+ 'is_default' => 'require|number|max:1',
|
|
|
+ ];
|
|
|
+ $msg = [
|
|
|
+ 'user_id.require' => '网络错误',
|
|
|
+ 'a_name.require' => '姓名不能为空',
|
|
|
+ 'city.require' => '地区不能为空',
|
|
|
+ 'area.require' => '详细地址不能为空',
|
|
|
+ 'is_default.require' => '网络错误',
|
|
|
+ 'is_default.number' => '网络错误',
|
|
|
+ 'is_default.max' => '网络错误',
|
|
|
+ 'user_id.number' => '网络错误',
|
|
|
+ ];
|
|
|
+ $validata = $this->validate($params, $rules, $msg);
|
|
|
+ if (is_string($validata)) {
|
|
|
+ return $this->result($validata, [], 100);
|
|
|
+ }
|
|
|
+ if (isset($params['a_tel'])) {
|
|
|
+ $check = '/^(1(([35789][0-9])|(47)))\d{8}$/';
|
|
|
+ if (!preg_match($check, $params['a_tel'])) {
|
|
|
+ return $this->result('手机号不合法', [], 100);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ return $this->result('手机号不能为空', [], 100);
|
|
|
+ }
|
|
|
+ $model = new Address();
|
|
|
+ $addressAdd = $model->allowField(true)->save($params);
|
|
|
+ if ($addressAdd) {
|
|
|
+ return $this->result('添加成功', '', 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('添加失败', '', 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址修改
|
|
|
+ * @param string $a_id 地址id
|
|
|
+ * @param string $a_name 姓名
|
|
|
+ * @param string $a_tel 手机号
|
|
|
+ * @param string $city 城市
|
|
|
+ * @param string $area 详细地址
|
|
|
+ * @param string $is_default 1默认0不默认
|
|
|
+ */
|
|
|
+ public function addressUpd()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $count = count($params);
|
|
|
+ if ($count < 2) {
|
|
|
+ return $this->result('请至少修改一项', [], 100);
|
|
|
+ }
|
|
|
+ if (!isset($params['a_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $model = new Address();
|
|
|
+ $addressUpd = $model->allowField(true)->save($params, ['a_id' => $params['a_id']]);
|
|
|
+ if ($addressUpd) {
|
|
|
+ return $this->result('修改成功', '', 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('修改失败', '', 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址删除
|
|
|
+ * @param string $a_id 地址id
|
|
|
+ */
|
|
|
+ public function addressDel()
|
|
|
+ {
|
|
|
+ $a_id = $this->request->post('a_id');
|
|
|
+ if (!isset($a_id)) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $model = new Address();
|
|
|
+ $addressDel = $model->where('a_id', $a_id)->delete();
|
|
|
+ if ($addressDel) {
|
|
|
+ return $this->result('修改成功', '', 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('修改失败', '', 100);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的客服
|
|
|
+ *
|
|
|
+ */
|
|
|
+ public function coursetomer()
|
|
|
+ {
|
|
|
+ $data = Db::name('coustomer')->select();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('暂无数据', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 我的红豆
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function redbean()
|
|
|
+ {
|
|
|
+ $user_id = $this->request->post('user_id');
|
|
|
+ if (!isset($user_id)) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $redbean = UsersModel::where('user_id', $user_id)->field('user_id, user_redbean')->find();
|
|
|
+ if ($redbean) {
|
|
|
+ return $this->result('', $redbean, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的红豆
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $user_redbean 兑换个数
|
|
|
+ */
|
|
|
+ public function useRedBean()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ if (!isset($params['user_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ if (!isset($params['user_redbean'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $redbean = UsersModel::where('user_id', $params['user_id'])->field('user_id, user_redbean')->find();
|
|
|
+ if ($params['user_redbean'] > $redbean['user_redbean'] || $params['user_redbean'] < 1) {
|
|
|
+ return $this->result('提现个数错误', [], 100);
|
|
|
+ }
|
|
|
+ Db::startTrans();
|
|
|
+ try {
|
|
|
+ $upd = UsersModel::where('user_id', $params['user_id'])->setDec('user_redbean', $params['user(redbean']);
|
|
|
+ Db::commit();
|
|
|
+ } catch (\Exception $e) {
|
|
|
+ Db::rollback();
|
|
|
+ $data = array(
|
|
|
+ 'user_id' => $params['user_id'],
|
|
|
+ 't_type' => 1,
|
|
|
+ 'state' => 2,
|
|
|
+ 'number' => '-' . $params['user_id'],
|
|
|
+ 'create_time' => date("Y-m-d H:i:s", time()),
|
|
|
+ );
|
|
|
+ $record = new Record();
|
|
|
+ $recordadd = $record->allowField(true)->save($data);
|
|
|
+ if ($recordadd) {
|
|
|
+ return $this->result('兑换失败', '', 100);
|
|
|
+ } else {
|
|
|
+ return $this->result('网络错误', '', 100);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ if ($upd) {
|
|
|
+ $data = array(
|
|
|
+ 'user_id' => $params['user_id'],
|
|
|
+ 't_type' => 1,
|
|
|
+ 'state' => 1,
|
|
|
+ 'number' => '-' . $params['user_id'],
|
|
|
+ 'create_time' => date("Y-m-d H:i:s", time()),
|
|
|
+ );
|
|
|
+ $record = new Record();
|
|
|
+ $recordadd = $record->allowField(true)->save($data);
|
|
|
+ if ($recordadd) {
|
|
|
+ return $this->result('兑换成功', '', 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('网络错误', '', 100);
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ return $this->result('网络错误', '', 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的红豆兑换记录
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function redbeanRecord()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ if (!isset($params['user_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $data = Record::where('user_id', $params['user_id'])->order('r_id desc')->select();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('暂无数据', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 我的足迹显示
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function footIndex()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ if (!isset($params['user_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $data = Foot::with('commodity')
|
|
|
+ ->where('user_id', $params['user_id'])
|
|
|
+ ->select();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('暂无数据', '', 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ * 我的足迹删除
|
|
|
+ * @param string $f_id 足迹id
|
|
|
+ */
|
|
|
+ public function footDel () {
|
|
|
+ $params = $this->request->post();
|
|
|
+ if (!isset($params['f_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $footDel = Foot::where('f_id',$params['f_id'])->delete();
|
|
|
+ if ($footDel) {
|
|
|
+ return $this->result('删除成功',[],200);
|
|
|
+ } else {
|
|
|
+ return $this->result('删除失败',[],100);
|
|
|
}
|
|
|
}
|
|
|
}
|