截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

File.php 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller;
  20. use app\shop\logic\FileLogic;
  21. use app\common\basics\ShopBase;
  22. use app\common\server\JsonServer;
  23. class File extends ShopBase
  24. {
  25. /**
  26. * NOTE: 图片列表
  27. * @author: 张无忌
  28. */
  29. public function lists()
  30. {
  31. if ($this->request->isAjax()) {
  32. $get = $this->request->get();
  33. $get['shop_id'] = $this->shop_id;
  34. $lists = FileLogic::getFile($get);
  35. return JsonServer::success('获取成功', $lists);
  36. }
  37. $get = $this->request->get();
  38. $get['type'] = $get['type'] ?? 10;
  39. $get['shop_id'] = $get['shop_id'] ?? $this->shop_id;
  40. return view('', [
  41. 'type' => $get['type'],
  42. 'category' => json_encode(FileLogic::getCate($get))
  43. ]);
  44. }
  45. /**
  46. * NOTE: 移动文件
  47. * @author: 张无忌
  48. */
  49. public function move()
  50. {
  51. if ($this->request->isAjax()) {
  52. $post = $this->request->post();
  53. $res = FileLogic::move($post);
  54. if ($res) {
  55. return JsonServer::success('移动成功', FileLogic::getCate($post["type"]));
  56. }
  57. $error = FileLogic::getError() ?: '移动失败';
  58. return JsonServer::error($error);
  59. }
  60. $get = $this->request->get();
  61. $get['type'] = $get['type'] ?? 10; // 10 图片
  62. $get['shop_id'] = $get['shop_id'] ?? $this->shop_id;
  63. return view('', [
  64. 'categoryTree' => FileLogic::categoryToSelectThree($get)
  65. ]);
  66. }
  67. /**
  68. * NOTE: 删除文件
  69. * @author: 张无忌
  70. */
  71. public function del()
  72. {
  73. if ($this->request->isAjax()) {
  74. $post = $this->request->post();
  75. $res = FileLogic::del($post);
  76. $data = [
  77. 'shop_id' => $this->shop_id,
  78. 'type' => $post['type']
  79. ];
  80. if ($res) {
  81. return JsonServer::success('删除成功', FileLogic::getCate($data));
  82. }
  83. $error = FileLogic::getError() ?: '删除失败';
  84. return JsonServer::error($error);
  85. }
  86. return JsonServer::error("请求异常");
  87. }
  88. /** ======================== 华丽的分割线, 下面是文件分类相关 ========================**/
  89. /**
  90. * NOTE: 新增分类
  91. * @author: 张无忌
  92. */
  93. public function addCate()
  94. {
  95. if ($this->request->isAjax()) {
  96. $post = $this->request->post();
  97. $post['shop_id'] = $this->shop_id;
  98. $res = FileLogic::addCate($post);
  99. $data = [
  100. 'type' => $post['type'],
  101. 'shop_id' => $this->shop_id
  102. ];
  103. if ($res) {
  104. return JsonServer::success('新增成功', FileLogic::getCate($data));
  105. }
  106. $error = FileLogic::getError() ?: '新增失败';
  107. return JsonServer::error($error);
  108. }
  109. $get = $this->request->get();
  110. $get['type'] = $get['type'] ?? 10; // 10 图片
  111. $get['shop_id'] = $get['shop_id'] ?? $this->shop_id;
  112. return view('addCate', [
  113. 'categoryTree' => FileLogic::categoryToSelect($get)
  114. ]);
  115. }
  116. /**
  117. * NOTE: 编辑分类
  118. * @author: 张无忌
  119. */
  120. public function editCate()
  121. {
  122. if ($this->request->isAjax()) {
  123. $post = $this->request->post();
  124. $res = FileLogic::editCate($post);
  125. if ($res) {
  126. $data = [
  127. 'type' => $post["type"],
  128. 'shop_id' => $this->shop_id
  129. ];
  130. return JsonServer::success('编辑成功', FileLogic::getCate($data));
  131. }
  132. $error = FileLogic::getError() ?: '编辑失败';
  133. return JsonServer::error($error);
  134. }
  135. $get = $this->request->get();
  136. $get['shop_id'] = $this->shop_id;
  137. return view('editCate', [
  138. 'detail' => FileLogic::getCateById($get['id']),
  139. 'categoryTree' => FileLogic::categoryToSelect($get)
  140. ]);
  141. }
  142. /**
  143. * NOTE: 删除分类
  144. * @author: 张无忌
  145. */
  146. public function delCate()
  147. {
  148. if ($this->request->isAjax()) {
  149. $id = $this->request->post('id');
  150. $type = $this->request->post('type');
  151. $res = FileLogic::delCate($id);
  152. $data = [
  153. 'shop_id' => $this->shop_id,
  154. 'type' => $type
  155. ];
  156. if ($res) {
  157. return JsonServer::success('删除成功', FileLogic::getCate($data));
  158. }
  159. $error = FileLogic::getError() ?: '删除失败';
  160. return JsonServer::error($error, FileLogic::getCate($data));
  161. }
  162. return JsonServer::error('请求异常');
  163. }
  164. /**
  165. * 上传视频列表
  166. */
  167. public function videoList()
  168. {
  169. $get = [
  170. 'type' => 20,
  171. 'shop_id' => $this->shop_id
  172. ];
  173. return view('', [
  174. 'type' => $get['type'], // 视频
  175. 'category' => json_encode(FileLogic::getCate($get))
  176. ]);
  177. }
  178. }