截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

File.php 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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\admin\controller;
  20. use app\admin\logic\FileLogic;
  21. use app\common\basics\AdminBase;
  22. use app\common\server\JsonServer;
  23. use app\common\server\FileServer;
  24. class File extends AdminBase
  25. {
  26. /**
  27. * NOTE: 图片列表
  28. * @author: 张无忌
  29. */
  30. public function lists()
  31. {
  32. if ($this->request->isAjax()) {
  33. $get = $this->request->get();
  34. $lists = FileLogic::getFile($get);
  35. return JsonServer::success('获取成功', $lists);
  36. }
  37. $get = $this->request->get();
  38. $get['type'] = $get['type'] ?? 10; // 10 图片
  39. $get['shop_id'] = $get['shop_id'] ?? 0; // 0 平台
  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'] ?? 0; // 0 平台
  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' => 0,
  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. */
  91. public function other()
  92. {
  93. if ($this->request->isPost()) {
  94. $local = $this->request->get('local',0);
  95. $sub_dir = $this->request->get('sub_dir','');
  96. $local = $local == 0 ? false : true;
  97. $save_path = 'uploads/other';
  98. if ($local && $local !== '') {
  99. $save_path = 'uploads/other/'.$sub_dir;
  100. }
  101. $result = FileServer::other($save_path, $local);
  102. return JsonServer::success('',$result);
  103. }
  104. return JsonServer::success();
  105. }
  106. /** ======================== 华丽的分割线, 下面是文件分类相关 ========================**/
  107. /**
  108. * NOTE: 新增分类
  109. * @author: 张无忌
  110. */
  111. public function addCate()
  112. {
  113. if ($this->request->isAjax()) {
  114. $post = $this->request->post();
  115. $res = FileLogic::addCate($post);
  116. $data = [
  117. 'type' => $post['type'],
  118. 'shop_id' => 0
  119. ];
  120. if ($res) {
  121. return JsonServer::success('新增成功', FileLogic::getCate($data));
  122. }
  123. $error = FileLogic::getError() ?: '新增失败';
  124. return JsonServer::error($error);
  125. }
  126. $get = $this->request->get();
  127. $get['type'] = $get['type'] ?? 10; // 10 图片
  128. $get['shop_id'] = $get['shop_id'] ?? 0; // 0 平台
  129. return view('addCate', [
  130. 'categoryTree' => FileLogic::categoryToSelect($get)
  131. ]);
  132. }
  133. /**
  134. * NOTE: 编辑分类
  135. * @author: 张无忌
  136. */
  137. public function editCate()
  138. {
  139. if ($this->request->isAjax()) {
  140. $post = $this->request->post();
  141. $res = FileLogic::editCate($post);
  142. if ($res) {
  143. $data = [
  144. 'type' => $post["type"],
  145. 'shop_id' => 0
  146. ];
  147. return JsonServer::success('编辑成功', FileLogic::getCate($data));
  148. }
  149. $error = FileLogic::getError() ?: '编辑失败';
  150. return JsonServer::error($error);
  151. }
  152. $get = $this->request->get();
  153. return view('editCate', [
  154. 'detail' => FileLogic::getCateById($get['id']),
  155. 'categoryTree' => FileLogic::categoryToSelect($get)
  156. ]);
  157. }
  158. /**
  159. * NOTE: 删除分类
  160. * @author: 张无忌
  161. */
  162. public function delCate()
  163. {
  164. if ($this->request->isAjax()) {
  165. $id = $this->request->post('id');
  166. $type = $this->request->post('type');
  167. $res = FileLogic::delCate($id);
  168. $data = [
  169. 'shop_id' => 0,
  170. 'type' => $type
  171. ];
  172. if ($res) {
  173. return JsonServer::success('删除成功', FileLogic::getCate($data));
  174. }
  175. $error = FileLogic::getError() ?: '删除失败';
  176. return JsonServer::error($error, FileLogic::getCate($data));
  177. }
  178. return JsonServer::error('请求异常');
  179. }
  180. }