Books.php 17 KB

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