BooksSeries.php 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543
  1. <?php
  2. namespace app\admin\controller\books;
  3. use app\admin\library\Auth;
  4. use app\common\controller\Backend;
  5. use PhpOffice\PhpSpreadsheet\Cell\Coordinate;
  6. use PhpOffice\PhpSpreadsheet\Reader\Csv;
  7. use PhpOffice\PhpSpreadsheet\Reader\Xls;
  8. use PhpOffice\PhpSpreadsheet\Reader\Xlsx;
  9. use think\Db;
  10. use think\db\exception\BindParamException;
  11. use think\db\exception\DataNotFoundException;
  12. use think\db\exception\ModelNotFoundException;
  13. use think\exception\DbException;
  14. use think\exception\PDOException;
  15. use think\exception\ValidateException;
  16. use think\response\Json;
  17. /**
  18. * 教材系列管理
  19. *
  20. * @icon fa fa-circle-o
  21. */
  22. class BooksSeries extends Backend
  23. {
  24. /**
  25. * BooksSeries模型对象
  26. * @var \app\admin\model\books\BooksSeries
  27. */
  28. protected $model = null;
  29. public function _initialize()
  30. {
  31. parent::_initialize();
  32. $this->model = new \app\admin\model\books\BooksSeries;
  33. $this->view->assign("isDeletedList", $this->model->getIsDeletedList());
  34. $this->view->assign("statusList", $this->model->getStatusList());
  35. }
  36. /**
  37. * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
  38. * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
  39. * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
  40. */
  41. /**
  42. * 查看
  43. *
  44. * @return string|Json
  45. * @throws \think\Exception
  46. * @throws DbException
  47. */
  48. public function index()
  49. {
  50. //设置过滤方法
  51. $this->request->filter(['strip_tags', 'trim']);
  52. if (false === $this->request->isAjax()) {
  53. return $this->view->fetch();
  54. }
  55. //如果发送的来源是 Selectpage,则转发到 Selectpage
  56. if ($this->request->request('keyField')) {
  57. return $this->selectpage();
  58. }
  59. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  60. $list = $this->model
  61. ->where($where)
  62. ->where('is_deleted',1)
  63. ->order($sort, $order)
  64. ->paginate($limit);
  65. $result = ['total' => $list->total(), 'rows' => $list->items()];
  66. return json($result);
  67. }
  68. /**
  69. * 回收站
  70. *
  71. * @return string|Json
  72. * @throws \think\Exception
  73. */
  74. public function recyclebin()
  75. {
  76. //设置过滤方法
  77. $this->request->filter(['strip_tags', 'trim']);
  78. if (false === $this->request->isAjax()) {
  79. return $this->view->fetch();
  80. }
  81. [$where, $sort, $order, $offset, $limit] = $this->buildparams();
  82. $list = $this->model
  83. ->onlyTrashed()
  84. ->where($where)
  85. ->order($sort, $order)
  86. ->paginate($limit);
  87. $result = ['total' => $list->total(), 'rows' => $list->items()];
  88. return json($result);
  89. }
  90. /**
  91. * 添加
  92. *
  93. * @return string
  94. * @throws \think\Exception
  95. */
  96. public function add()
  97. {
  98. if (false === $this->request->isPost()) {
  99. return $this->view->fetch();
  100. }
  101. $params = $this->request->post('row/a');
  102. if (empty($params)) {
  103. $this->error(__('Parameter %s can not be empty', ''));
  104. }
  105. $params = $this->preExcludeFields($params);
  106. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  107. $params[$this->dataLimitField] = $this->auth->id;
  108. }
  109. $result = false;
  110. Db::startTrans();
  111. try {
  112. //是否采用模型验证
  113. if ($this->modelValidate) {
  114. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  115. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.add' : $name) : $this->modelValidate;
  116. $this->model->validateFailException()->validate($validate);
  117. }
  118. $result = $this->model->allowField(true)->save($params);
  119. Db::commit();
  120. } catch (ValidateException|PDOException|Exception $e) {
  121. Db::rollback();
  122. $this->error($e->getMessage());
  123. }
  124. if ($result === false) {
  125. $this->error(__('No rows were inserted'));
  126. }
  127. $this->success();
  128. }
  129. /**
  130. * 编辑
  131. *
  132. * @param $ids
  133. * @return string
  134. * @throws DbException
  135. * @throws \think\Exception
  136. */
  137. public function edit($ids = null)
  138. {
  139. $row = $this->model->get($ids);
  140. if (!$row) {
  141. $this->error(__('No Results were found'));
  142. }
  143. $adminIds = $this->getDataLimitAdminIds();
  144. if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
  145. $this->error(__('You have no permission'));
  146. }
  147. if (false === $this->request->isPost()) {
  148. $this->view->assign('row', $row);
  149. return $this->view->fetch();
  150. }
  151. $params = $this->request->post('row/a');
  152. if (empty($params)) {
  153. $this->error(__('Parameter %s can not be empty', ''));
  154. }
  155. $params = $this->preExcludeFields($params);
  156. $result = false;
  157. Db::startTrans();
  158. try {
  159. //是否采用模型验证
  160. if ($this->modelValidate) {
  161. $name = str_replace("\\model\\", "\\validate\\", get_class($this->model));
  162. $validate = is_bool($this->modelValidate) ? ($this->modelSceneValidate ? $name . '.edit' : $name) : $this->modelValidate;
  163. $row->validateFailException()->validate($validate);
  164. }
  165. $result = $row->allowField(true)->save($params);
  166. Db::commit();
  167. } catch (ValidateException|PDOException|Exception $e) {
  168. Db::rollback();
  169. $this->error($e->getMessage());
  170. }
  171. if (false === $result) {
  172. $this->error(__('No rows were updated'));
  173. }
  174. $this->success();
  175. }
  176. /**
  177. * 修改状态
  178. *
  179. * @param $ids
  180. * @return string
  181. * @throws DbException
  182. * @throws \think\Exception
  183. */
  184. public function update_status($ids = null){
  185. $row = $this->model->get($ids);
  186. if (!$row) {
  187. $this->error(__('No Results were found'));
  188. }
  189. $adminIds = $this->getDataLimitAdminIds();
  190. if (is_array($adminIds) && !in_array($row[$this->dataLimitField], $adminIds)) {
  191. $this->error(__('You have no permission'));
  192. }
  193. if (false === $this->request->isPost()) {
  194. $this->view->assign('row', $row);
  195. return $this->view->fetch();
  196. }
  197. $params = $this->request->post();
  198. if($params['status'] == 1){
  199. $books = \app\admin\model\books\Books::where('series_id','in',$ids)->find();
  200. if($books){
  201. $this->error('该系列下还有绑定的教材 请修改后操作');
  202. }
  203. }
  204. // $params = $this->request->post('row/a');
  205. // if (empty($params)) {
  206. // $this->error(__('Parameter %s can not be empty', ''));
  207. // }
  208. // $params = $this->preExcludeFields($params);
  209. $result = false;
  210. Db::startTrans();
  211. try {
  212. //是否采用模型验证
  213. $result = $row->allowField(true)->save($params);
  214. Db::commit();
  215. } catch (ValidateException|PDOException|Exception $e) {
  216. Db::rollback();
  217. $this->error($e->getMessage());
  218. }
  219. if (false === $result) {
  220. $this->error(__('No rows were updated'));
  221. }
  222. $this->success();
  223. }
  224. /**
  225. * 删除
  226. *
  227. * @param $ids
  228. * @return void
  229. * @throws DbException
  230. * @throws DataNotFoundException
  231. * @throws ModelNotFoundException
  232. */
  233. public function del($ids = null)
  234. {
  235. if (false === $this->request->isPost()) {
  236. $this->error(__("Invalid parameters"));
  237. }
  238. $ids = $ids ?: $this->request->post("ids");
  239. if (empty($ids)) {
  240. $this->error(__('Parameter %s can not be empty', 'ids'));
  241. }
  242. $pk = $this->model->getPk();
  243. $adminIds = $this->getDataLimitAdminIds();
  244. if (is_array($adminIds)) {
  245. $this->model->where($this->dataLimitField, 'in', $adminIds);
  246. }
  247. $list = $this->model->where($pk, 'in', $ids)->select();
  248. $count = 0;
  249. Db::startTrans();
  250. try {
  251. $arr = ['is_deleted' => 0];
  252. foreach ($list as $item) {
  253. $count += $item->where('id',$item['id'])->update($arr);
  254. }
  255. Db::commit();
  256. } catch (PDOException|Exception $e) {
  257. Db::rollback();
  258. $this->error($e->getMessage());
  259. }
  260. if ($count) {
  261. $this->success();
  262. }
  263. $this->error(__('No rows were deleted'));
  264. }
  265. /**
  266. * 真实删除
  267. *
  268. * @param $ids
  269. * @return void
  270. */
  271. public function destroy($ids = null)
  272. {
  273. if (false === $this->request->isPost()) {
  274. $this->error(__("Invalid parameters"));
  275. }
  276. $ids = $ids ?: $this->request->post('ids');
  277. $pk = $this->model->getPk();
  278. $adminIds = $this->getDataLimitAdminIds();
  279. if (is_array($adminIds)) {
  280. $this->model->where($this->dataLimitField, 'in', $adminIds);
  281. }
  282. if ($ids) {
  283. $this->model->where($pk, 'in', $ids);
  284. }
  285. $count = 0;
  286. Db::startTrans();
  287. try {
  288. $list = $this->model->onlyTrashed()->select();
  289. foreach ($list as $item) {
  290. $count += $item->delete(true);
  291. }
  292. Db::commit();
  293. } catch (PDOException|Exception $e) {
  294. Db::rollback();
  295. $this->error($e->getMessage());
  296. }
  297. if ($count) {
  298. $this->success();
  299. }
  300. $this->error(__('No rows were deleted'));
  301. }
  302. /**
  303. * 还原
  304. *
  305. * @param $ids
  306. * @return void
  307. */
  308. public function restore($ids = null)
  309. {
  310. if (false === $this->request->isPost()) {
  311. $this->error(__('Invalid parameters'));
  312. }
  313. $ids = $ids ?: $this->request->post('ids');
  314. $pk = $this->model->getPk();
  315. $adminIds = $this->getDataLimitAdminIds();
  316. if (is_array($adminIds)) {
  317. $this->model->where($this->dataLimitField, 'in', $adminIds);
  318. }
  319. if ($ids) {
  320. $this->model->where($pk, 'in', $ids);
  321. }
  322. $count = 0;
  323. Db::startTrans();
  324. try {
  325. $list = $this->model->onlyTrashed()->select();
  326. foreach ($list as $item) {
  327. $count += $item->restore();
  328. }
  329. Db::commit();
  330. } catch (PDOException|Exception $e) {
  331. Db::rollback();
  332. $this->error($e->getMessage());
  333. }
  334. if ($count) {
  335. $this->success();
  336. }
  337. $this->error(__('No rows were updated'));
  338. }
  339. /**
  340. * 批量更新
  341. *
  342. * @param $ids
  343. * @return void
  344. */
  345. public function multi($ids = null)
  346. {
  347. if (false === $this->request->isPost()) {
  348. $this->error(__('Invalid parameters'));
  349. }
  350. $ids = $ids ?: $this->request->post('ids');
  351. if (empty($ids)) {
  352. $this->error(__('Parameter %s can not be empty', 'ids'));
  353. }
  354. if (false === $this->request->has('params')) {
  355. $this->error(__('No rows were updated'));
  356. }
  357. parse_str($this->request->post('params'), $values);
  358. $values = $this->auth->isSuperAdmin() ? $values : array_intersect_key($values, array_flip(is_array($this->multiFields) ? $this->multiFields : explode(',', $this->multiFields)));
  359. if (empty($values)) {
  360. $this->error(__('You have no permission'));
  361. }
  362. $adminIds = $this->getDataLimitAdminIds();
  363. if (is_array($adminIds)) {
  364. $this->model->where($this->dataLimitField, 'in', $adminIds);
  365. }
  366. $count = 0;
  367. Db::startTrans();
  368. try {
  369. $list = $this->model->where($this->model->getPk(), 'in', $ids)->select();
  370. foreach ($list as $item) {
  371. $count += $item->allowField(true)->isUpdate(true)->save($values);
  372. }
  373. Db::commit();
  374. } catch (PDOException|Exception $e) {
  375. Db::rollback();
  376. $this->error($e->getMessage());
  377. }
  378. if ($count) {
  379. $this->success();
  380. }
  381. $this->error(__('No rows were updated'));
  382. }
  383. /**
  384. * 导入
  385. *
  386. * @return void
  387. * @throws PDOException
  388. * @throws BindParamException
  389. */
  390. protected function import()
  391. {
  392. $file = $this->request->request('file');
  393. if (!$file) {
  394. $this->error(__('Parameter %s can not be empty', 'file'));
  395. }
  396. $filePath = ROOT_PATH . DS . 'public' . DS . $file;
  397. if (!is_file($filePath)) {
  398. $this->error(__('No results were found'));
  399. }
  400. //实例化reader
  401. $ext = pathinfo($filePath, PATHINFO_EXTENSION);
  402. if (!in_array($ext, ['csv', 'xls', 'xlsx'])) {
  403. $this->error(__('Unknown data format'));
  404. }
  405. if ($ext === 'csv') {
  406. $file = fopen($filePath, 'r');
  407. $filePath = tempnam(sys_get_temp_dir(), 'import_csv');
  408. $fp = fopen($filePath, 'w');
  409. $n = 0;
  410. while ($line = fgets($file)) {
  411. $line = rtrim($line, "\n\r\0");
  412. $encoding = mb_detect_encoding($line, ['utf-8', 'gbk', 'latin1', 'big5']);
  413. if ($encoding !== 'utf-8') {
  414. $line = mb_convert_encoding($line, 'utf-8', $encoding);
  415. }
  416. if ($n == 0 || preg_match('/^".*"$/', $line)) {
  417. fwrite($fp, $line . "\n");
  418. } else {
  419. fwrite($fp, '"' . str_replace(['"', ','], ['""', '","'], $line) . "\"\n");
  420. }
  421. $n++;
  422. }
  423. fclose($file) || fclose($fp);
  424. $reader = new Csv();
  425. } elseif ($ext === 'xls') {
  426. $reader = new Xls();
  427. } else {
  428. $reader = new Xlsx();
  429. }
  430. //导入文件首行类型,默认是注释,如果需要使用字段名称请使用name
  431. $importHeadType = isset($this->importHeadType) ? $this->importHeadType : 'comment';
  432. $table = $this->model->getQuery()->getTable();
  433. $database = \think\Config::get('database.database');
  434. $fieldArr = [];
  435. $list = db()->query("SELECT COLUMN_NAME,COLUMN_COMMENT FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = ? AND TABLE_SCHEMA = ?", [$table, $database]);
  436. foreach ($list as $k => $v) {
  437. if ($importHeadType == 'comment') {
  438. $v['COLUMN_COMMENT'] = explode(':', $v['COLUMN_COMMENT'])[0]; //字段备注有:时截取
  439. $fieldArr[$v['COLUMN_COMMENT']] = $v['COLUMN_NAME'];
  440. } else {
  441. $fieldArr[$v['COLUMN_NAME']] = $v['COLUMN_NAME'];
  442. }
  443. }
  444. //加载文件
  445. $insert = [];
  446. try {
  447. if (!$PHPExcel = $reader->load($filePath)) {
  448. $this->error(__('Unknown data format'));
  449. }
  450. $currentSheet = $PHPExcel->getSheet(0); //读取文件中的第一个工作表
  451. $allColumn = $currentSheet->getHighestDataColumn(); //取得最大的列号
  452. $allRow = $currentSheet->getHighestRow(); //取得一共有多少行
  453. $maxColumnNumber = Coordinate::columnIndexFromString($allColumn);
  454. $fields = [];
  455. for ($currentRow = 1; $currentRow <= 1; $currentRow++) {
  456. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  457. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  458. $fields[] = $val;
  459. }
  460. }
  461. for ($currentRow = 2; $currentRow <= $allRow; $currentRow++) {
  462. $values = [];
  463. for ($currentColumn = 1; $currentColumn <= $maxColumnNumber; $currentColumn++) {
  464. $val = $currentSheet->getCellByColumnAndRow($currentColumn, $currentRow)->getValue();
  465. $values[] = is_null($val) ? '' : $val;
  466. }
  467. $row = [];
  468. $temp = array_combine($fields, $values);
  469. foreach ($temp as $k => $v) {
  470. if (isset($fieldArr[$k]) && $k !== '') {
  471. $row[$fieldArr[$k]] = $v;
  472. }
  473. }
  474. if ($row) {
  475. $insert[] = $row;
  476. }
  477. }
  478. } catch (Exception $exception) {
  479. $this->error($exception->getMessage());
  480. }
  481. if (!$insert) {
  482. $this->error(__('No rows were updated'));
  483. }
  484. try {
  485. //是否包含admin_id字段
  486. $has_admin_id = false;
  487. foreach ($fieldArr as $name => $key) {
  488. if ($key == 'admin_id') {
  489. $has_admin_id = true;
  490. break;
  491. }
  492. }
  493. if ($has_admin_id) {
  494. $auth = Auth::instance();
  495. foreach ($insert as &$val) {
  496. if (!isset($val['admin_id']) || empty($val['admin_id'])) {
  497. $val['admin_id'] = $auth->isLogin() ? $auth->id : 0;
  498. }
  499. }
  500. }
  501. $this->model->saveAll($insert);
  502. } catch (PDOException $exception) {
  503. $msg = $exception->getMessage();
  504. if (preg_match("/.+Integrity constraint violation: 1062 Duplicate entry '(.+)' for key '(.+)'/is", $msg, $matches)) {
  505. $msg = "导入失败,包含【{$matches[1]}】的记录已存在";
  506. };
  507. $this->error($msg);
  508. } catch (Exception $e) {
  509. $this->error($e->getMessage());
  510. }
  511. $this->success();
  512. }
  513. }