Banner.php 17 KB

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