BooksFile.php 16 KB

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