Contribute.php 16 KB

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