Users.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use fast\Random;
  6. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  7. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  8. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  9. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  10. use think\Config;
  11. use think\Db;
  12. use think\exception\PDOException;
  13. use think\exception\ValidateException;
  14. /**
  15. * 用户信息管理
  16. *
  17. * @icon fa fa-users
  18. */
  19. class Users extends Backend
  20. {
  21. /**
  22. * Users模型对象
  23. * @var \app\admin\model\Users
  24. */
  25. protected $model = null;
  26. public function _initialize()
  27. {
  28. parent::_initialize();
  29. $this->model = new \app\admin\model\Users;
  30. }
  31. /**
  32. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  33. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  34. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  35. */
  36. /**
  37. * 添加
  38. */
  39. public function add()
  40. {
  41. if ($this->request->isPost()) {
  42. $params = $this->request->post("row/a");
  43. if ($params) {
  44. $params = $this->preExcludeFields($params);
  45. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  46. $params[$this->dataLimitField] = $this->auth->id;
  47. }
  48. $result = false;
  49. Db::startTrans();
  50. try {
  51. //是否采用模型验证
  52. if ($this->modelValidate) {
  53. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  54. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  55. $this->model->validateFailException(true)->validate($validate);
  56. }
  57. $result = $this->model->allowField(true)->save($params);
  58. Db::commit();
  59. } catch (ValidateException $e) {
  60. Db::rollback();
  61. $this->error($e->getMessage());
  62. } catch (PDOException $e) {
  63. Db::rollback();
  64. $this->error($e->getMessage());
  65. } catch (Exception $e) {
  66. Db::rollback();
  67. $this->error($e->getMessage());
  68. }
  69. if ($result !== false) {
  70. $this->success();
  71. } else {
  72. $this->error(__('No rows were inserted'));
  73. }
  74. }
  75. $this->error(__('Parameter %s can not be empty', ''));
  76. }
  77. return $this->view->fetch();
  78. }
  79. /**
  80. * 编辑
  81. */
  82. public function edit($ids = null)
  83. {
  84. $row = $this->model->get($ids);
  85. // 查出子单位数据
  86. $type = Db::name('type')->where('t_id',$row['user_type'])->find();
  87. // 查出父单位数据
  88. $f_type = Db::name('type')->where('t_id',$type['f_id'])->find();
  89. $row['type_fname'] = $f_type['name']; // 父单位名称
  90. $row['type_zname'] = $type['name']; // 子单位名称
  91. $row['f_id'] = $type['f_id']; // 父单位id
  92. if (!$row) {
  93. $this->error(__('No Results were found'));
  94. }
  95. $adminIds = $this->getDataLimitAdminIds();
  96. if (is_array($adminIds)) {
  97. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  98. $this->error(__('You have no permission'));
  99. }
  100. }
  101. if ($this->request->isPost()) {
  102. $params = $this->request->post("row/a");
  103. if ($params) {
  104. $params = $this->preExcludeFields($params);
  105. $result = false;
  106. Db::startTrans();
  107. try {
  108. //是否采用模型验证
  109. if ($this->modelValidate) {
  110. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  111. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  112. $row->validateFailException(true)->validate($validate);
  113. }
  114. $result = $row->allowField(true)->save($params);
  115. Db::commit();
  116. } catch (ValidateException $e) {
  117. Db::rollback();
  118. $this->error($e->getMessage());
  119. } catch (PDOException $e) {
  120. Db::rollback();
  121. $this->error($e->getMessage());
  122. } catch (Exception $e) {
  123. Db::rollback();
  124. $this->error($e->getMessage());
  125. }
  126. if ($result !== false) {
  127. $this->success();
  128. } else {
  129. $this->error(__('No rows were updated'));
  130. }
  131. }
  132. $this->error(__('Parameter %s can not be empty', ''));
  133. }
  134. $this->view->assign("row", $row);
  135. return $this->view->fetch();
  136. }
  137. /**
  138. * 简历修改或添加
  139. */
  140. public function resume($ids = NUll)
  141. {
  142. if ($this->request->isPost()) {
  143. $data = input('post.');
  144. if ($data['r_id'] == '') {
  145. // 添加简历
  146. $add = Db::name('resume')->insert($data);
  147. if ($add) {
  148. return $this->success('添加成功');
  149. } else {
  150. return $this->success('添加失败');
  151. }
  152. } else {
  153. $edit = Db::name('resume')->where('r_id',$data['r_id'])->update($data);
  154. if ($edit) {
  155. return $this->success('修改成功');
  156. } else {
  157. return $this->success('修改失败');
  158. }
  159. }
  160. }
  161. $id = input('ids');
  162. $data = Db::name('resume')->where('user_id',$id)->find();
  163. if ($data == NULL) {
  164. $data = array(
  165. 'user_id' => $id,
  166. 'r_resume' => '',
  167. 'r_rewards' => '',
  168. 'r_results' => '',
  169. 'r_id' => '',
  170. );
  171. }
  172. return $this->fetch('resume',['data' => $data]);
  173. }
  174. /**
  175. * 表格导入
  176. */
  177. public function import()
  178. {
  179. $file = $this->request->request('file');
  180. if (!$file) {
  181. $this->error(__('Parameter %s can not be empty', 'file'));
  182. }
  183. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  184. if (!is_file($filePath)) {
  185. $this->error(__('No results were found'));
  186. }
  187. //实例化reader
  188. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  189. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  190. $this->error(__('Unknown data format'));
  191. }
  192. if ($ext === 'csv') {
  193. $file = fopen($filePath, 'r');
  194. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  195. $fp = fopen($filePath, "w");
  196. $n = 0;
  197. while ($line = fgets($file)) {
  198. $line = rtrim($line, "\n\r\0");
  199. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  200. if ($encoding != 'utf-8') {
  201. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  202. }
  203. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  204. fwrite($fp, $line . "\n");
  205. } else {
  206. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  207. }
  208. $n++;
  209. }
  210. fclose($file) || fclose($fp);
  211. $reader = new Csv();
  212. } elseif ($ext === 'xls') {
  213. $reader = new Xls();
  214. } else {
  215. $reader = new Xlsx();
  216. }
  217. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  218. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  219. $table = $this->model->getQuery()->getTable();
  220. $database = \think\Config::get('database.database');
  221. $fieldArr = [];
  222. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  223. foreach ($list as $k => $v) {
  224. if ($importHeadType == 'comment') {
  225. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  226. } else {
  227. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  228. }
  229. }
  230. //加载文件
  231. $insert = [];
  232. try {
  233. if (!$PHPExcel = $reader->load($filePath)) {
  234. $this->error(__('Unknown data format'));
  235. }
  236. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  237. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  238. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  239. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  240. $data=$currentSheet->toArray();//该方法读取不到图片 图片需单独处理
  241. halt($data);
  242. /*************图片单独处理开始*****************/
  243. $imageFilePath=ROOT_PATH.'/public/uploads/images/' ;//图片保存目录
  244. if (!file_exists ( $imageFilePath )) {
  245. mkdir("$imageFilePath", 0777, true);
  246. }
  247. //处理图片
  248. foreach($currentSheet->getDrawingCollection() as $img) {
  249. list($startColumn,$startRow)= Coordinate::coordinateFromString($img->getCoordinates());//获取图片所在行和列
  250. $imageFileName = Random::uuid();
  251. switch($img->getMimeType()) {
  252. case 'image/jpg':
  253. case 'image/jpeg':
  254. $imageFileName.='.jpg';
  255. imagejpeg($img->getImageResource(),$imageFilePath.$imageFileName);
  256. break;
  257. case 'image/gif':
  258. $imageFileName.='.gif';
  259. imagegif($img->getImageResource(),$imageFilePath.$imageFileName);
  260. break;
  261. case 'image/png':
  262. $imageFileName.='.png';
  263. imagepng($img->getImageResource(),$imageFilePath.$imageFileName);
  264. break;
  265. }
  266. $startColumn = ABC2decimal($startColumn);//由于图片所在位置的列号为字母,转化为数字
  267. $data[$startRow-1][$startColumn]='/uploads/images/'.$imageFileName;//把图片插入到数组中
  268. }
  269. //前两行是备注,从A3第三行开始导入
  270. for ($currentRow = 3; $currentRow <= $allRow; $currentRow++) {
  271. $values = [];
  272. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  273. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  274. $values[] = is_null($val) ? '' : $val;
  275. }
  276. halt($values);
  277. $row = [];
  278. if (!empty($values['0'])){
  279. $row['title']=$values['0'];
  280. $row['answer_right']=$values['8'];
  281. $row['answer_analysis']=$values['9'];
  282. $row['type']=1;//单选题
  283. $row['answer_list']=[];
  284. }
  285. if (!empty($row)){
  286. $insert[]=$row;
  287. }
  288. }
  289. } catch (Exception $exception) {
  290. $this->error($exception->getMessage());
  291. }
  292. if (!$insert) {
  293. $this->error(__('No rows were updated'));
  294. }
  295. try {
  296. //是否包含admin_id字段
  297. $has_admin_id = false;
  298. foreach ($fieldArr as $name => $key) {
  299. if ($key == 'admin_id') {
  300. $has_admin_id = true;
  301. break;
  302. }
  303. }
  304. if ($has_admin_id) {
  305. $auth = Auth::instance();
  306. foreach ($insert as &$val) {
  307. if (!isset($val['admin_id']) || empty($val['admin_id'])) {
  308. $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
  309. }
  310. }
  311. }
  312. $this->model->saveAll($insert);
  313. } catch (PDOException $exception) {
  314. $msg = $exception->getMessage();
  315. if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
  316. $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
  317. };
  318. $this->error($msg);
  319. } catch (Exception $e) {
  320. $this->error($e->getMessage());
  321. }
  322. $this->success();
  323. }
  324. }