123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342 |
- <?php
- namespace app\admin\controller;
- use app\admin\library\Auth;
- use app\common\controller\Backend;
- use fast\Random;
- use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
- use PhpOffice\PhpSpreadsheet\Reader\Csv;
- use PhpOffice\PhpSpreadsheet\Reader\Xls;
- use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
- use think\Config;
- use think\Db;
- use think\exception\PDOException;
- use think\exception\ValidateException;
- /**
- * 用户信息管理
- *
- * @icon fa fa-users
- */
- class Users extends Backend
- {
-
- /**
- * Users模型对象
- * @var \app\admin\model\Users
- */
- protected $model = null;
- public function _initialize()
- {
- parent::_initialize();
- $this->model = new \app\admin\model\Users;
- }
-
- /**
- * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
- * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
- * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
- */
- /**
- * 添加
- */
- public function add()
- {
- if ($this->request->isPost()) {
- $params = $this->request->post("row/a");
- if ($params) {
- $params = $this->preExcludeFields($params);
- if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
- $params[$this->dataLimitField] = $this->auth->id;
- }
- $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 . '.add' : $name) : $this->modelValidate;
- $this->model->validateFailException(true)->validate($validate);
- }
- $result = $this->model->allowField(true)->save($params);
- Db::commit();
- } catch (ValidateException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($result !== false) {
- $this->success();
- } else {
- $this->error(__('No rows were inserted'));
- }
- }
- $this->error(__('Parameter %s can not be empty', ''));
- }
- return $this->view->fetch();
- }
- /**
- * 编辑
- */
- public function edit($ids = null)
- {
- $row = $this->model->get($ids);
- // 查出子单位数据
- $type = Db::name('type')->where('t_id',$row['user_type'])->find();
- // 查出父单位数据
- $f_type = Db::name('type')->where('t_id',$type['f_id'])->find();
- $row['type_fname'] = $f_type['name']; // 父单位名称
- $row['type_zname'] = $type['name']; // 子单位名称
- $row['f_id'] = $type['f_id']; // 父单位id
- if (!$row) {
- $this->error(__('No Results were found'));
- }
- $adminIds = $this->getDataLimitAdminIds();
- if (is_array($adminIds)) {
- if (!in_array($row[$this->dataLimitField], $adminIds)) {
- $this->error(__('You have no permission'));
- }
- }
- if ($this->request->isPost()) {
- $params = $this->request->post("row/a");
- if ($params) {
- $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(true)->validate($validate);
- }
- $result = $row->allowField(true)->save($params);
- Db::commit();
- } catch (ValidateException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (PDOException $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- }
- if ($result !== false) {
- $this->success();
- } else {
- $this->error(__('No rows were updated'));
- }
- }
- $this->error(__('Parameter %s can not be empty', ''));
- }
- $this->view->assign("row", $row);
- return $this->view->fetch();
- }
- /**
- * 简历修改或添加
- */
- public function resume($ids = NUll)
- {
- if ($this->request->isPost()) {
- $data = input('post.');
- if ($data['r_id'] == '') {
- // 添加简历
- $add = Db::name('resume')->insert($data);
- if ($add) {
- return $this->success('添加成功');
- } else {
- return $this->success('添加失败');
- }
- } else {
- $edit = Db::name('resume')->where('r_id',$data['r_id'])->update($data);
- if ($edit) {
- return $this->success('修改成功');
- } else {
- return $this->success('修改失败');
- }
- }
- }
- $id = input('ids');
- $data = Db::name('resume')->where('user_id',$id)->find();
- if ($data == NULL) {
- $data = array(
- 'user_id' => $id,
- 'r_resume' => '',
- 'r_rewards' => '',
- 'r_results' => '',
- 'r_id' => '',
- );
- }
- return $this->fetch('resume',['data' => $data]);
- }
- /**
- * 表格导入
- */
- public function import()
- {
- $file = $this->request->request('file');
- if (!$file) {
- $this->error(__('Parameter %s can not be empty', 'file'));
- }
- $filePath = ROOT_PATH . DS . 'public' . DS . $file;
- if (!is_file($filePath)) {
- $this->error(__('No results were found'));
- }
- //实例化reader
- $ext = pathinfo($filePath, PATHINFO_EXTENSION);
- if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
- $this->error(__('Unknown data format'));
- }
- if ($ext === 'csv') {
- $file = fopen($filePath, 'r');
- $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
- $fp = fopen($filePath, "w");
- $n = 0;
- while ($line = fgets($file)) {
- $line = rtrim($line, "\n\r\0");
- $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
- if ($encoding != 'utf-8') {
- $line = mb_convert_encoding($line, 'utf-8', $encoding);
- }
- if ($n == 0 || preg_match('/^".*"$/', $line)) {
- fwrite($fp, $line . "\n");
- } else {
- fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
- }
- $n++;
- }
- fclose($file) || fclose($fp);
- $reader = new Csv();
- } elseif ($ext === 'xls') {
- $reader = new Xls();
- } else {
- $reader = new Xlsx();
- }
- //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
- $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
- $table = $this->model->getQuery()->getTable();
- $database = \think\Config::get('database.database');
- $fieldArr = [];
- $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
- foreach ($list as $k => $v) {
- if ($importHeadType == 'comment') {
- $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
- } else {
- $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
- }
- }
- //加载文件
- $insert = [];
- try {
- if (!$PHPExcel = $reader->load($filePath)) {
- $this->error(__('Unknown data format'));
- }
- $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
- $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
- $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
- $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
- $data=$currentSheet->toArray();//该方法读取不到图片 图片需单独处理
- halt($data);
- /*************图片单独处理开始*****************/
- $imageFilePath=ROOT_PATH.'/public/uploads/images/' ;//图片保存目录
- if (!file_exists ( $imageFilePath )) {
- mkdir("$imageFilePath", 0777, true);
- }
- //处理图片
- foreach($currentSheet->getDrawingCollection() as $img) {
- list($startColumn,$startRow)= Coordinate::coordinateFromString($img->getCoordinates());//获取图片所在行和列
- $imageFileName = Random::uuid();
- switch($img->getMimeType()) {
- case 'image/jpg':
- case 'image/jpeg':
- $imageFileName.='.jpg';
- imagejpeg($img->getImageResource(),$imageFilePath.$imageFileName);
- break;
- case 'image/gif':
- $imageFileName.='.gif';
- imagegif($img->getImageResource(),$imageFilePath.$imageFileName);
- break;
- case 'image/png':
- $imageFileName.='.png';
- imagepng($img->getImageResource(),$imageFilePath.$imageFileName);
- break;
- }
- $startColumn = ABC2decimal($startColumn);//由于图片所在位置的列号为字母,转化为数字
- $data[$startRow-1][$startColumn]='/uploads/images/'.$imageFileName;//把图片插入到数组中
- }
- //前两行是备注,从A3第三行开始导入
- for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
- $values = [];
- for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
- $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
- $values[] = is_null($val) ? '' : $val;
- }
- halt($values);
- $row = [];
- if (!empty($values['0'])){
- $row['title']=$values['0'];
- $row['answer_right']=$values['8'];
- $row['answer_analysis']=$values['9'];
- $row['type']=1;//单选题
- $row['answer_list']=[];
- }
- if (!empty($row)){
- $insert[]=$row;
- }
- }
- } catch (Exception $exception) {
- $this->error($exception->getMessage());
- }
- if (!$insert) {
- $this->error(__('No rows were updated'));
- }
- try {
- //是否包含admin_id字段
- $has_admin_id = false;
- foreach ($fieldArr as $name => $key) {
- if ($key == 'admin_id') {
- $has_admin_id = true;
- break;
- }
- }
- if ($has_admin_id) {
- $auth = Auth::instance();
- foreach ($insert as &$val) {
- if (!isset($val['admin_id']) || empty($val['admin_id'])) {
- $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
- }
- }
- }
- $this->model->saveAll($insert);
- } catch (PDOException $exception) {
- $msg = $exception->getMessage();
- if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
- $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
- };
- $this->error($msg);
- } catch (Exception $e) {
- $this->error($e->getMessage());
- }
- $this->success();
- }
- }
|