123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- <?php
- namespace app\admin\controller\user;
- use AlibabaCloud\Client\Request\UserAgent;
- use AlibabaCloud\Ecs\V20140526\UnassignIpv6Addresses;
- use app\admin\model\UserRemarks;
- use app\common\controller\Backend;
- use app\common\library\Auth;
- use fast\Random;
- use think\Db;
- use think\exception\PDOException;
- use think\exception\ValidateException;
- use think\Validate;
- /**
- * 会员管理
- *
- * @icon fa fa-user
- */
- class User extends Backend
- {
- protected $relationSearch = true;
- protected $searchFields = 'id,username,nickname';
- /**
- * @var \app\admin\model\User
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = model('User');
- $this->view->assign("levelList", $this->model->getLevelList());
- $this->view->assign("bindRemarksList", $this->model->bindRemarksList());
- }
- /**
- * 查看
- */
- public function index()
- {
- //设置过滤方法
- $this->request->filter(['strip_tags', 'trim']);
- if ($this->request->isAjax()) {
- //如果发送的来源是Selectpage,则转发到Selectpage
- if ($this->request->request('keyField')) {
- return $this->selectpage();
- }
- list($where, $sort, $order, $offset, $limit) = $this->buildparams();
- $list = $this->model
- // ->with('group')
- ->with(['joinremarks1','joinremarks2','joinremarks3'])
- ->where($where)
- ->order($sort, $order)
- ->paginate($limit);
- // // 备注数据-- 不需要查询时
- // $remark_ids = [];
- // $user_remarks_list = UserRemarks::select();
- // foreach ($user_remarks_list as $vurl) {
- // $remark_ids[$vurl['id']] = $vurl['value'];
- // }
- foreach ($list as $k => $v) {
- $v->avatar = $v->avatar ? cdnurl($v->avatar, true) : letter_avatar($v->nickname);
- $v->hidden(['password', 'salt']);
- // for ($i = 1; $i <= 3; $i++) {
- // $column_remarks = "remarks" . $i;
- // if ($v->$column_remarks != 0 && $v->$column_remarks != "") {
- // $list[$k]->$column_remarks = $remark_ids[$v->$column_remarks];
- // }
- // }
- }
- $result = array("total" => $list->total(), "rows" => $list->items());
- return json($result);
- }
- return $this->view->fetch();
- }
- /**
- * 添加
- */
- public function add()
- {
- if ($this->request->isPost()) {
- $this->token();
- $params = $this->request->post("row/a");
- if ($params) {
- Db::startTrans();
- try {
- if (!Validate::is($params['password'], '\S{6,30}')) {
- exception(__("Please input correct password"));
- }
- $params['salt'] = Random::alnum();
- $params['password'] = md5(md5($params['password']) . $params['salt']);
- $params['avatar'] = '/assets/img/avatar.png'; //设置新管理员默认头像。
- $params['jointime'] = time();
- $params['status'] = 'normal';
- if ($params['level'] == 1) {
- $params['type'] = 1;
- } else if ($params['level'] == 2 || $params['level'] == 3) {
- $params['type'] = 2;
- }
- // 复制数据
- // if (isset($params['c_user_id'])){
- // $c_user_ids = explode(',', $params['c_user_id']);
- // unset($params['c_user_id']);
- // }
- //添加备注信息
- if ($params['type'] == 1) {
- // 商家备注:1=回收备注,2=餐具备注,3=商城备注
- for ($i = 1; $i <= 3; $i++) {
- $has_add_relations[$i] = false;
- $param_remarks = "remarks" . $i;
- if ($params[$param_remarks]) {
- $user_remarks = UserRemarks::where('value', $params[$param_remarks])->where('type', $i)->find();
- if (!empty($user_remarks)) {
- $params[$param_remarks] = $user_remarks->id;
- $has_add_relations[$i] = true; //原有备注,要查看B端账号,绑定
- } else {
- $user_remarks_insert = new UserRemarks;
- $user_remarks_insert->type = $i;
- $user_remarks_insert->value = $params[$param_remarks];
- $user_remarks_insert->save();
- // 获取自增ID
- $params[$param_remarks] = $user_remarks_insert->id;
- }
- }
- }
- }
- if ($params['type'] == 2 && $params['type_remarks'] != "" && $params['bind_remarks'] != "") {
- //查询绑定过商户 list 当前备注的商户
- $column_remarks = 'remarks' . $params['type_remarks'];
- $remarks_list_user = $this->model->where($column_remarks, $params['bind_remarks'])->select();
- //$remarks_list_user = $this->model->where(['type_remarks' => $params['type_remarks'], 'bind_remarks' => $params['bind_remarks']])->select();
- if (count($remarks_list_user) > 0) {
- foreach ($remarks_list_user as $v) {
- $c_user_ids[] = $v['id'];
- }
- }
- }
- $insert_user_id = model('user')->insert($params, false, true);
- // 添加关联关系 -- 添加回收员or配送员时
- if ($params['type'] == 2 && $params['type_remarks'] != "" && $params['bind_remarks'] != "") {
- // todo 服务关系是否之前存在过 ,状态:0=未服务,1=已服务,2=已注销
- // 直接绑定商户时
- if (count($c_user_ids) > 0) {
- foreach ($c_user_ids as $v) {
- $user_relations[] = [
- 'c_user_id' => $v,
- 'b_user_id' => $insert_user_id,
- 'b_level' => $params['level'],
- ];
- }
- model('user_relations')->insertAll($user_relations);
- }
- } elseif ($params['type'] == 1) {
- for ($i = 1; $i <= 3; $i++) {
- if ($has_add_relations[$i]) {
- $param_remarks = "remarks" . $i;
- // 添加商家时,查看回收员or配送员是否已绑定过该备注,绑定会员关系
- $user_b_list = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $params[$param_remarks]])->order('id', 'desc')->select();
- if (count($user_b_list) > 0) {
- foreach ($user_b_list as $user_b) {
- $user_relations[] = [
- 'c_user_id' => $insert_user_id,
- 'b_user_id' => $user_b['id'],
- 'b_level' => $user_b['level'],
- ];
- }
- model('user_relations')->insertAll($user_relations);
- }
- }
- }
- }
- Db::commit();
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- $this->success();
- }
- $this->error(__('Parameter %s can not be empty', ''));
- }
- return $this->view->fetch();
- }
- /**
- * 编辑
- */
- public function edit($ids = null)
- {
- if ($this->request->isPost()) {
- $this->token();
- }
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $adminIds = $this->getDataLimitAdminIds();
- if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
- $this->error(__('You have no permission'));
- }
- if (false === $this->request->isPost()) {
- $row['c_user_id'] = '';
- // 查询和商家的关联数据显示
- if ($row['type'] == 1) {
- // 商家备注:1=回收备注,2=餐具备注,3=商城备注
- for ($i = 1; $i <= 3; $i++) {
- $param_remarks = "remarks" . $i;
- if ($row[$param_remarks]) {
- $user_remarks = UserRemarks::where('id', $row[$param_remarks])->where('type', $i)->find();
- if (!empty($user_remarks)) {
- $row[$param_remarks] = $user_remarks->value;
- } else {
- $row[$param_remarks] = "";
- }
- }
- }
- }
- $row['user_remarks'] = [];
- if ($row['type'] == 2) {
- // 直接绑定时
- // $user_relations_list = model('user_relations')
- // ->field('c_user_id')
- // ->where(['b_user_id' => $row['id'], 'b_level' => $row['level']])
- // ->select();
- // $ids = [];
- // foreach ($user_relations_list as $v) {
- // $ids[] = $v['c_user_id'];
- // }
- //
- // $row['c_user_id'] = implode(',', $ids);
- // 绑定过商户的备注
- if ($row['type_remarks']) {
- $user_remarks_model = new UserRemarks();
- $row['user_remarks'] = $user_remarks_model->alias('remarks')->join('user u ', 'u.remarks' . $row['type_remarks'] . '=remarks.id')
- ->where(['remarks.type' => $row['type_remarks'], 'u.type' => 1])
- ->field('remarks.id,remarks.value,remarks.type')
- ->group('remarks.id')
- ->select();
- }
- }
- $this->view->assign('row', $row);
- return $this->view->fetch();
- }
- // 摘自 parent::edit($ids);
- $params = $this->request->post('row/a');
- if (empty($params)) {
- $this->error(__('Parameter %s can not be empty', ''));
- }
- $params = $this->preExcludeFields($params);
- $result = false;
- Db::startTrans();
- try {
- //是否采用模型验证
- if ($this->modelValidate) {
- $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
- $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
- $row->validateFailException()->validate($validate);
- }
- $params_c_user_ids = $db_c_user_ids = [];
- if ($row['type'] == 2) {
- // 处理 c_user_id
- // $params_c_user_ids = explode(',', $params['c_user_id']);
- // unset($params['c_user_id']);
- //查询商户 list // 绑定过 当前备注的商户
- $column_remarks = 'remarks' . $params['type_remarks'];
- $remarks_list_user = $this->model->where($column_remarks, $params['bind_remarks'])->select();
- foreach ($remarks_list_user as $vrlu) {
- $params_c_user_ids[] = $vrlu['id'];
- }
- }
- //添加备注信息
- if ($row['type'] == 1) {
- // 商家备注:1=回收备注,2=餐具备注,3=商城备注
- for ($i = 1; $i <= 3; $i++) {
- $param_remarks = "remarks" . $i;
- $del_relations = false;
- if ($params[$param_remarks]) {
- $user_remarks = UserRemarks::where('value', $params[$param_remarks])->where('type', $i)->find();
- if (!empty($user_remarks)) {
- $params[$param_remarks] = $user_remarks->id;
- if ($params[$param_remarks] != $row[$param_remarks]) {
- // 原有绑定id变化--需要删除旧的C-B关系 && 绑定新关系
- $del_relations = true;
- // 绑定新关系
- $user_b_list = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $params[$param_remarks]])->order('id', 'desc')->select();
- if (count($user_b_list) > 0) {
- foreach ($user_b_list as $user_b) {
- $user_relation[] = [
- 'c_user_id' => $row['id'],
- 'b_user_id' => $user_b['id'],
- 'b_level' => $user_b['level'],
- ];
- }
- model('user_relations')->insertAll($user_relation);
- }
- }
- } else {
- $user_remarks_insert = new UserRemarks;
- $user_remarks_insert->type = $i;
- $user_remarks_insert->value = $params[$param_remarks];
- $user_remarks_insert->save();
- // 获取自增ID
- $params[$param_remarks] = $user_remarks_insert->id;
- $del_relations = true;
- }
- }
- //删除旧关系
- $user_b_ids=[];
- if ($row[$param_remarks] != 0 && $del_relations) {
- $user_b = $this->model->where(['type_remarks' => $i, 'bind_remarks' => $row[$param_remarks]])->order('id', 'desc')->select();
- foreach ($user_b as $vub) {
- $user_b_ids[] = $vub['id'];
- }
- model('user_relations')->where('c_user_id', $row['id'])->whereIn('b_user_id', $user_b_ids)->delete();
- }
- }
- }
- $result = $row->allowField(true)->save($params);
- // 处理关系 b 端
- if ($row['type'] == 2) {
- // todo 服务关系是否之前存在过 ,状态:0=未服务,1=已服务,2=已注销
- // 查询当前关系
- $user_relations_list = model('user_relations')
- ->where(['b_user_id' => $row['id'], 'b_level' => $row['level']])
- ->select();
- foreach ($user_relations_list as $v) {
- $db_c_user_ids[] = $v['c_user_id'];
- }
- // 需要添加的关系
- $insert_c_user_ids = array_diff($params_c_user_ids, $db_c_user_ids);
- if (count($insert_c_user_ids) > 0) {
- foreach ($insert_c_user_ids as $v) {
- $user_relations[] = [
- 'c_user_id' => $v,
- 'b_user_id' => $row['id'],
- 'b_level' => $row['level'],
- ];
- }
- model('user_relations')->insertAll($user_relations);
- }
- // 需要删除的关系
- $delete_c_user_ids = array_diff($db_c_user_ids, $params_c_user_ids);
- if (count($delete_c_user_ids) > 0) {
- model('user_relations')
- ->where('c_user_id', 'in', $delete_c_user_ids)
- ->where('b_user_id', '=', $row['id'])
- ->where('b_level', '=', $row['level'])
- ->delete();
- }
- }
- Db::commit();
- } catch (ValidateException | PDOException | Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if (false === $result) {
- $this->error(__('No rows were updated'));
- }
- $this->success();
- // return parent::edit($ids);
- }
- /**
- * 删除
- */
- public function del($ids = "")
- {
- if (!$this->request->isPost()) {
- $this->error(__("Invalid parameters"));
- }
- $ids = $ids ? $ids : $this->request->post("ids");
- $row = $this->model->get($ids);
- $this->modelValidate = true;
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- Auth::instance()->delete($row['id']);
- $this->success();
- }
- public function reset_password()
- {
- $ids = $this->request->get("ids");
- $row = $this->model->get($ids);
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- Db::startTrans();
- try {
- $password = $this->getEncryptPassword('123456', $row['salt']);
- Db::name('user')->where('id', $ids)->update(['password' => $password]);
- Db::commit();
- } catch (\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- $this->success("重置成功");
- }
- public function getEncryptPassword($password, $salt = '')
- {
- return md5(md5($password) . $salt);
- }
- }
|