Decorate.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535
  1. <?php
  2. namespace app\admin\controller\shopro;
  3. use app\common\controller\Backend;
  4. use app\admin\model\shopro\DecorateContent;
  5. use think\Db;
  6. use fast\Http;
  7. use think\exception\PDOException;
  8. use think\exception\ValidateException;
  9. use Exception;
  10. /**
  11. * 店铺装修
  12. *
  13. * @icon fa fa-circle-o
  14. */
  15. class Decorate extends Backend
  16. {
  17. /**
  18. * Decorate模型对象
  19. * @var \app\admin\model\shopro\Decorate
  20. */
  21. protected $model = null;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = new \app\admin\model\shopro\Decorate;
  26. $this->assignconfig('shoproConfig', $this->getShoproConfig());
  27. }
  28. public function lists($type = '')
  29. {
  30. if ($this->request->isAjax()) {
  31. $data = $this->model->where('type', $type)->order('id', 'desc')->select();
  32. $this->success('模板列表', null, $data);
  33. }
  34. return $this->view->fetch();
  35. }
  36. /**
  37. * 添加
  38. */
  39. public function add()
  40. {
  41. if ($this->request->isPost()) {
  42. $params = $this->request->post();
  43. if ($params) {
  44. $params = $this->preExcludeFields($params);
  45. $result = false;
  46. Db::startTrans();
  47. try {
  48. $result = $this->model->allowField(true)->save($params);
  49. //添加默认数据
  50. if ($params['type'] === 'shop') {
  51. DecorateContent::create([
  52. 'type' => 'banner',
  53. 'category' => 'home',
  54. 'name' => '轮播图',
  55. 'content' => '{"name":"","style":1,"height":530,"radius":0,"x":0,"y":0,"list":[]}',
  56. 'decorate_id' => $this->model->id
  57. ]);
  58. DecorateContent::create([
  59. 'type' => 'user',
  60. 'category' => 'user',
  61. 'name' => '用户卡片',
  62. 'content' => '{"name":"用户卡片","image":"","style":1,"color":"#eeeeee"}',
  63. 'decorate_id' => $this->model->id
  64. ]);
  65. }
  66. Db::commit();
  67. } catch (ValidateException $e) {
  68. Db::rollback();
  69. $this->error($e->getMessage());
  70. } catch (PDOException $e) {
  71. Db::rollback();
  72. $this->error($e->getMessage());
  73. } catch (Exception $e) {
  74. Db::rollback();
  75. $this->error($e->getMessage());
  76. }
  77. if ($result !== false) {
  78. //添加默认模板数据
  79. $this->success();
  80. } else {
  81. $this->error(__('No rows were inserted'));
  82. }
  83. }
  84. $this->error(__('Parameter %s can not be empty', ''));
  85. }
  86. return $this->view->fetch();
  87. }
  88. /**
  89. * 编辑
  90. */
  91. public function edit($id = null)
  92. {
  93. $row = $this->model->get($id);
  94. if (!$row) {
  95. $this->error(__('No Results were found'));
  96. }
  97. if ($this->request->isPost()) {
  98. $params = $this->request->post();
  99. if ($params) {
  100. $params = $this->preExcludeFields($params);
  101. //检查是否有同平台冲突的已发布模板
  102. if ($row->status === 'normal' && $row['type'] === 'shop') {
  103. $platformArray = explode(',', $params['platform']);
  104. $where = ['deletetime' => null, 'status' => 'normal', 'type' => 'shop', 'id' => ['neq', $id]];
  105. foreach ($platformArray as $v) {
  106. $publishDecorate = $this->model->where('find_in_set(:platform,platform)', ['platform' => $v])->where($where)->find();
  107. if ($publishDecorate) {
  108. $this->error(__($v) . ' 已经被使用');
  109. }
  110. }
  111. }
  112. $result = false;
  113. Db::startTrans();
  114. try {
  115. $result = $row->allowField(true)->save($params);
  116. Db::commit();
  117. } catch (ValidateException $e) {
  118. Db::rollback();
  119. $this->error($e->getMessage());
  120. } catch (PDOException $e) {
  121. Db::rollback();
  122. $this->error($e->getMessage());
  123. } catch (Exception $e) {
  124. Db::rollback();
  125. $this->error($e->getMessage());
  126. }
  127. if ($result !== false) {
  128. $this->success();
  129. } else {
  130. $this->error(__('No rows were updated'));
  131. }
  132. }
  133. $this->error(__('Parameter %s can not be empty', ''));
  134. }
  135. $this->view->assign("row", $row);
  136. return $this->view->fetch();
  137. }
  138. /**
  139. * 模板管理 发布
  140. * @param string $id
  141. * @param int $force
  142. */
  143. public function publish($id, $force = 0)
  144. {
  145. $row = $this->model->get($id);
  146. if (!$row) {
  147. $this->error(__('No Results were found'));
  148. }
  149. if (empty($row->platform)) {
  150. $this->error('请勾选发布平台', null, 0);
  151. }
  152. $platformArray = explode(',', $row->platform);
  153. $where = ['deletetime' => null, 'status' => 'normal', 'type' => 'shop'];
  154. $existPublish = [];
  155. foreach ($platformArray as $v) {
  156. $publishDecorate = $this->model->where('find_in_set(:platform,platform)', ['platform' => $v])->where($where)->find();
  157. if ($publishDecorate) {
  158. if ($force == 1) {
  159. $platform = array_diff(explode(',', $publishDecorate->platform), [$v]);
  160. $publishDecorate->platform = implode(',', $platform);
  161. if ($publishDecorate->platform == '') {
  162. $publishDecorate->status = 'hidden';
  163. }
  164. $publishDecorate->save();
  165. } else {
  166. $existPublish[$publishDecorate->name][] = __($v);
  167. }
  168. }
  169. }
  170. if ($existPublish !== [] && $force == 0) {
  171. $str = '';
  172. foreach ($existPublish as $k => $e) {
  173. $str .= $k . ',';
  174. }
  175. $this->error("${str} 已存在相同的支持平台,确定替换吗?");
  176. }
  177. $row->status = 'normal';
  178. $row->save();
  179. $this->success('发布成功');
  180. }
  181. /**
  182. * 模板管理 下架
  183. * @param string $id
  184. */
  185. public function down($id)
  186. {
  187. $row = $this->model->get($id);
  188. if (!$row) {
  189. $this->error(__('No Results were found'));
  190. }
  191. $where = ['deletetime' => null, 'status' => 'normal', 'type' => 'shop'];
  192. $publishDecorate = $this->model->where($where)->select();
  193. if (count($publishDecorate) == 1) {
  194. $this->error('需要至少保留一个发布模板~');
  195. }
  196. $row->status = 'hidden';
  197. $row->save();
  198. $this->success('下架成功');
  199. }
  200. /**
  201. * 模板管理 复制
  202. * @param string $id
  203. */
  204. public function copy($id)
  205. {
  206. $row = $this->model->get($id);
  207. if (!$row) {
  208. $this->error(__('No Results were found'));
  209. }
  210. $this->model->save([
  211. 'name' => "复制 {$row->name}",
  212. 'type' => $row->type,
  213. 'memo' => $row->memo,
  214. 'image' => $row->image,
  215. 'status' => 'hidden',
  216. 'platform' => $row->platform,
  217. ]);
  218. $id = $this->model->id;
  219. $content = collection(DecorateContent::where('decorate_id', $row->id)
  220. ->order('id asc')
  221. ->field("type, category, content, name, $id as decorate_id")
  222. ->select())->toArray();
  223. $decorateContent = new DecorateContent();
  224. $decorateContent->saveAll($content);
  225. $this->success('复制成功');
  226. }
  227. /**
  228. * 自定义页面
  229. */
  230. public function custom()
  231. {
  232. return $this->view->fetch();
  233. }
  234. /**
  235. * 页面装修
  236. * @param string $id
  237. */
  238. public function dodecorate($id)
  239. {
  240. $content = new DecorateContent();
  241. $query = $content->where(['decorate_id' => $id]);
  242. if ($this->request->isPost()) {
  243. $params = $this->request->post("templateData");
  244. if ($params) {
  245. $params = json_decode($params, true);
  246. $result = false;
  247. Db::startTrans();
  248. try {
  249. $decorateArray = [];
  250. foreach ($params as $p => $a) {
  251. foreach ($a as $c => &$o) {
  252. if (isset($o['id'])) {
  253. unset($o['id']);
  254. }
  255. $decorateArray[] = [
  256. 'category' => $p,
  257. 'content' => json_encode($o['content'], JSON_UNESCAPED_UNICODE),
  258. 'decorate_id' => $id,
  259. 'name' => $o['name'],
  260. 'type' => $o['type']
  261. ];
  262. }
  263. }
  264. $query->delete();
  265. $result = new \app\admin\model\shopro\DecorateContent;
  266. $result->saveAll($decorateArray);
  267. Db::commit();
  268. } catch (ValidateException $e) {
  269. Db::rollback();
  270. $this->error($e->getMessage());
  271. } catch (PDOException $e) {
  272. Db::rollback();
  273. $this->error($e->getMessage());
  274. } catch (Exception $e) {
  275. Db::rollback();
  276. $this->error($e->getMessage());
  277. }
  278. if ($result !== false) {
  279. $this->success();
  280. } else {
  281. $this->error(__('No rows were updated'));
  282. }
  283. }
  284. $this->error('请完善装修页面');
  285. }
  286. $template = $query->select();
  287. if ($template) {
  288. foreach ($template as &$t) {
  289. $t['content'] = json_decode($t['content'], true);
  290. }
  291. } else {
  292. $template = [];
  293. }
  294. $categoryArray = array_column($template, 'category');
  295. $templateData = [];
  296. foreach ($categoryArray as $categoryKey => $category) {
  297. $templateData[$category][] = $template[$categoryKey];
  298. }
  299. $this->assignconfig('templateData', $templateData);
  300. return $this->view->fetch();
  301. }
  302. /**
  303. * 页面装修 保存
  304. * @param string $id
  305. */
  306. public function dodecorate_save($id)
  307. {
  308. if ($this->request->isPost()) {
  309. $decorate = $this->model->get($id);
  310. if (!$decorate) {
  311. $this->error(__('No Results were found'));
  312. }
  313. $params = $this->request->post("templateData");
  314. $result = $this->updateDecorateContent($id, $params);
  315. if ($result) {
  316. $this->success('保存成功', '', $decorate);
  317. } else {
  318. $this->error('保存失败');
  319. }
  320. }
  321. }
  322. private function updateDecorateContent($id, $params)
  323. {
  324. $result = false;
  325. if ($params) {
  326. $params = json_decode($params, true);
  327. Db::startTrans();
  328. try {
  329. $decorateArray = [];
  330. foreach ($params as $p => $a) {
  331. foreach ($a as &$o) {
  332. if (isset($o['id'])) {
  333. unset($o['id']);
  334. }
  335. $decorateArray[] = [
  336. 'category' => $p,
  337. 'content' => json_encode($o['content'], JSON_UNESCAPED_UNICODE),
  338. 'decorate_id' => $id,
  339. 'name' => $o['name'],
  340. 'type' => $o['type']
  341. ];
  342. }
  343. }
  344. DecorateContent::where(['decorate_id' => $id])->delete();
  345. $result = new DecorateContent();
  346. $result->saveAll($decorateArray);
  347. Db::commit();
  348. return $result;
  349. } catch (ValidateException $e) {
  350. Db::rollback();
  351. $this->error($e->getMessage());
  352. } catch (PDOException $e) {
  353. Db::rollback();
  354. $this->error($e->getMessage());
  355. } catch (Exception $e) {
  356. Db::rollback();
  357. $this->error($e->getMessage());
  358. }
  359. }
  360. return $result;
  361. }
  362. //店铺装修 保存首页截图
  363. public function saveDecorateImage($id)
  364. {
  365. $row = $this->model->get($id);
  366. if (!$row) {
  367. $this->error(__('No Results were found'));
  368. }
  369. $image = $this->request->post('image');
  370. if ($image) {
  371. $row->image = $image;
  372. $row->save();
  373. }
  374. $this->success("更新成功");
  375. }
  376. /**
  377. * 页面装修 预览
  378. */
  379. public function preview($id)
  380. {
  381. //装修数据
  382. $decorate = $this->model->get($id);
  383. if(!$decorate) {
  384. $this->error('未找到该装修页面');
  385. }
  386. //临时预览数据
  387. $row = [
  388. 'name' => "临时预览 {$decorate->name}",
  389. 'type' => 'preview',
  390. 'memo' => date("Y年m月d日 H:i:s", time()) . ' 创建',
  391. 'status' => 'normal',
  392. 'platform' => $decorate->platform
  393. ];
  394. $preview = $this->model->where('type', 'preview')->find();
  395. if ($preview) {
  396. DecorateContent::where('decorate_id', $preview->id)->delete();
  397. $preview->delete(true);
  398. }
  399. $this->model->save($row);
  400. $id = $this->model->id;
  401. $decorate = $this->model->getData();
  402. $params = $this->request->post("templateData");
  403. $this->updateDecorateContent($id, $params);
  404. $this->success($row['name'], null, $decorate);
  405. }
  406. //设计师模板
  407. public function designer()
  408. {
  409. $designerTemplate = Http::get('http://style.shopro.top/api/decorate/designer');
  410. $res = json_decode($designerTemplate, true);
  411. if (isset($res['code']) && $res['code'] === 1) {
  412. $this->assignconfig('designerData', $res['data']);
  413. }
  414. return $this->view->fetch();
  415. }
  416. //使用设计师模板
  417. public function use_designer_template($id)
  418. {
  419. $decorate = Http::get('http://style.shopro.top/api/decorate/copy?id=' . $id);
  420. $res = json_decode($decorate, true);
  421. if (isset($res['code']) && $res['code'] === 1) {
  422. Db::startTrans();
  423. try {
  424. $this->model->save([
  425. 'type' => 'shop',
  426. 'status' => 'hidden',
  427. 'image' => $res['data']['image'],
  428. 'memo' => $res['data']['memo'],
  429. 'name' => $res['data']['name'],
  430. 'platform' => $res['data']['platform']
  431. ]);
  432. foreach ($res['data']['content'] as &$v) {
  433. $v['decorate_id'] = $this->model->id;
  434. unset($v['id']);
  435. }
  436. DecorateContent::insertAll($res['data']['content']);
  437. Db::commit();
  438. } catch (ValidateException $e) {
  439. Db::rollback();
  440. $this->error($e->getMessage());
  441. } catch (PDOException $e) {
  442. Db::rollback();
  443. $this->error($e->getMessage());
  444. } catch (Exception $e) {
  445. Db::rollback();
  446. $this->error($e->getMessage());
  447. }
  448. } else {
  449. $this->error('模板选择错误');
  450. }
  451. $this->success('模板使用成功');
  452. }
  453. /**
  454. * 真实删除
  455. */
  456. public function destroy($ids = "")
  457. {
  458. $pk = $this->model->getPk();
  459. if ($ids) {
  460. $this->model->where($pk, 'in', $ids);
  461. }
  462. $count = 0;
  463. Db::startTrans();
  464. try {
  465. $list = $this->model->onlyTrashed()->select();
  466. foreach ($list as $k => $v) {
  467. DecorateContent::where('decorate_id', $v->id)->delete();
  468. $count += $v->delete(true);
  469. }
  470. Db::commit();
  471. } catch (PDOException $e) {
  472. Db::rollback();
  473. $this->error($e->getMessage());
  474. } catch (Exception $e) {
  475. Db::rollback();
  476. $this->error($e->getMessage());
  477. }
  478. if ($count) {
  479. $this->success();
  480. } else {
  481. $this->error(__('No rows were deleted'));
  482. }
  483. $this->error(__('Parameter %s can not be empty', 'ids'));
  484. }
  485. public function select()
  486. {
  487. if ($this->request->isAjax()) {
  488. return $this->index();
  489. }
  490. return $this->view->fetch();
  491. }
  492. // 获取shopro 配置
  493. private function getShoproConfig()
  494. {
  495. return json_decode(\app\admin\model\shopro\Config::get(['name' => 'shopro'])->value, true);
  496. }
  497. }