截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

FileLogic.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  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\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\FileEnum;
  22. use app\common\model\File;
  23. use app\common\model\FileCate;
  24. use Exception;
  25. class FileLogic extends Logic
  26. {
  27. /**
  28. * NOTE: 获取文件列表
  29. * @author: 张无忌
  30. * @param $get
  31. * @return array|\think\Paginator
  32. */
  33. public static function getFile($get)
  34. {
  35. try {
  36. $where = [
  37. ['del', '=', 0],
  38. ['type', '=', $get['type'] ?? FileEnum::IMAGE_TYPE],
  39. ['shop_id', '=', $get['shop_id']]
  40. ];
  41. if (!empty($get['cid']) and $get['cid'] > 0) {
  42. $lists = FileCate::where(['del'=>0 ])->select();
  43. $lists = !empty($lists) ? $lists->toArray() : [];
  44. $childs = self::getChildCid($lists, $get['cid'], true);
  45. array_push($childs, $get['cid']);
  46. $where[] = ['cid', 'in', $childs];
  47. }
  48. $model = new File();
  49. return $model->field(true)
  50. ->where($where)
  51. ->order('id', 'desc')
  52. ->paginate([
  53. 'page' => $get['page'] ?? 1,
  54. 'list_rows' => $get['limit'] ?? 20,
  55. 'var_page' => 'page'
  56. ])->toArray();
  57. } catch (Exception $e) {
  58. return [];
  59. }
  60. }
  61. /**
  62. * NOTE: 获取后代分类
  63. * @author: 张无忌
  64. * @param $cid
  65. * @param array $ids
  66. */
  67. public static function getChildCid($lists, $cid, $clear)
  68. {
  69. static $temp = [];
  70. if($clear) {
  71. $temp = [];
  72. }
  73. foreach($lists as $item) {
  74. if($item['pid'] == $cid) {
  75. $temp[] = $item['id'];
  76. self::getChildCid($lists, $item['id'], false);
  77. }
  78. }
  79. return $temp;
  80. }
  81. /**
  82. * NOTE: 移动文件
  83. * @param $post
  84. * @return bool
  85. * @author: 张无忌
  86. */
  87. public static function move($post)
  88. {
  89. try {
  90. $model = new File();
  91. // $file = $model->field(true)->findOrEmpty($post['file_ids'][0])->toArray();
  92. // if ($file['cid'] == $post['cid'] and $post['cid'] != 0) {
  93. // static::$error = '文件已在当前目录,无需移动';
  94. // return false;
  95. // }
  96. $model->whereIn('id', $post['file_ids'])
  97. ->update(['cid' => $post['cid']]);
  98. return true;
  99. } catch (Exception $e) {
  100. static::$error = $e->getMessage();
  101. return false;
  102. }
  103. }
  104. /**
  105. * NOTE: 删除文件
  106. * @param $post
  107. * @return bool
  108. * @author: 张无忌
  109. */
  110. public static function del($post)
  111. {
  112. try {
  113. $model = new File();
  114. $model->whereIn('id', $post['file_ids'])
  115. ->update(['del' => 1]);
  116. return true;
  117. } catch (Exception $e) {
  118. static::$error = $e->getMessage();
  119. return false;
  120. }
  121. }
  122. /** ======================== 华丽的分割线, 下面是文件分类相关 ========================**/
  123. /**
  124. * NOTE: 获取分类列表
  125. * @param $type (类型: 10=图片, 20=视频, 30=文件)
  126. * @return array
  127. * @author: 张无忌
  128. */
  129. public static function getCate($get)
  130. {
  131. try {
  132. $lists = FileCate::where([
  133. ['del', '=', 0],
  134. ['type', '=', $get['type']],
  135. ['shop_id', '=', $get['shop_id']],
  136. ])->order('id', 'asc')->order('sort', 'desc')->select();
  137. $tree = self::cateListToTree($lists, 0);
  138. $all = [
  139. 'id' => 0,
  140. 'field' => 'all',
  141. 'title' => '全部',
  142. 'children' => [],
  143. ];
  144. array_unshift($tree, $all);
  145. return $tree;
  146. } catch (Exception $e) {
  147. return [];
  148. }
  149. }
  150. /**
  151. * NOTE: 分类列表转树形结构
  152. * @author: 张无忌
  153. * @param $lists
  154. * @param int $pid
  155. * @return array
  156. */
  157. public static function cateListToTree($lists, $pid = 0)
  158. {
  159. $tree = [];
  160. foreach ($lists as $k => $v) {
  161. if ($v['pid'] == $pid) {
  162. $temp['id'] = $v['id'];
  163. $temp['field'] = 'id';
  164. $temp['title'] = $v['name'];
  165. $temp['children'] = self::cateListToTree($lists, $v['id']);
  166. $temp['spread'] = true;
  167. $tree[] = $temp;
  168. }
  169. }
  170. return $tree;
  171. }
  172. /**
  173. * NOTE: 分类详细
  174. * @author: 张无忌
  175. * @param $id
  176. * @return array
  177. */
  178. public static function getCateById($id)
  179. {
  180. $model = new FileCate();
  181. return $model->field(true)
  182. ->findOrEmpty($id)->toArray();
  183. }
  184. /**
  185. * NOTE: 新增分类
  186. * @author: 张无忌
  187. * @param $post
  188. * @return bool
  189. */
  190. public static function addCate($post)
  191. {
  192. try {
  193. if($post['pid'] == 0) {
  194. $level = 1;
  195. }else{
  196. $parent = FileCate::find($post['pid']);
  197. $level = $parent['level'] + 1;
  198. }
  199. if($post['sort'] < 0) {
  200. throw new \think\Exception('排序值不能为负数');
  201. }
  202. FileCate::create([
  203. 'name' => $post['name'],
  204. 'pid' => $post['pid'],
  205. 'sort' => $post['sort'],
  206. 'shop_id' => $post['shop_id'],
  207. 'level' => $level,
  208. 'type' => $post['type']
  209. ]);
  210. return true;
  211. } catch (Exception $e) {
  212. static::$error = $e->getMessage();
  213. return false;
  214. }
  215. }
  216. /**
  217. * NOTE: 编辑分类
  218. * @author: 张无忌
  219. * @param $post
  220. * @return bool
  221. */
  222. public static function editCate($post)
  223. {
  224. try {
  225. self::checkEdit($post);
  226. FileCate::update([
  227. 'name' => $post['name'],
  228. 'pid' => $post['cid'],
  229. 'sort' => $post['sort'],
  230. 'update_time' => time()
  231. ], ['id'=>$post['id']]);
  232. self::updateLevel($post['id']);
  233. return true;
  234. } catch (Exception $e) {
  235. static::$error = $e->getMessage();
  236. return false;
  237. }
  238. }
  239. /**
  240. * NOTE: 删除分类
  241. * @author: 张无忌
  242. * @param $id
  243. * @return bool
  244. */
  245. public static function delCate($id)
  246. {
  247. try {
  248. self::checkDel($id);
  249. FileCate::update([
  250. 'del' => 1,
  251. 'update_time' => time()
  252. ], ['id'=>$id]);
  253. return true;
  254. } catch (Exception $e) {
  255. static::$error = $e->getMessage();
  256. return false;
  257. }
  258. }
  259. /**
  260. * NOTE: 下拉框树状结构
  261. * @param $type
  262. * @return array
  263. * @author: 张无忌
  264. */
  265. public static function categoryToSelect($get)
  266. {
  267. try {
  268. $model = new FileCate();
  269. $lists = $model->field(true)
  270. ->where('del', '=', 0)
  271. ->where('type', '=', $get['type'])
  272. ->where('shop_id', '=', $get['shop_id'])
  273. ->order('id', 'asc')
  274. ->select();
  275. $tree = [];
  276. foreach ($lists as $val) {
  277. if ($val['pid'] != 0) {
  278. continue;
  279. }
  280. $tree[$val['id']] = "|----" . $val['name'];
  281. foreach ($lists as $val2) {
  282. if ($val2['pid'] == $val['id']) {
  283. $tree[$val2['id']] = "|--------" . $val2['name'];
  284. }
  285. }
  286. }
  287. return $tree;
  288. } catch (Exception $e) {
  289. return [];
  290. }
  291. }
  292. public static function categoryToSelectThree($get)
  293. {
  294. try {
  295. $model = new FileCate();
  296. $lists = $model->field(true)
  297. ->where('del', '=', 0)
  298. ->where('type', '=', $get['type'])
  299. ->where('shop_id', '=', $get['shop_id'])
  300. ->order('id', 'asc')
  301. ->select();
  302. $tree = [];
  303. foreach ($lists as $val) {
  304. if ($val['pid'] != 0) {
  305. continue;
  306. }
  307. $tree[$val['id']] = "|----" . $val['name'];
  308. foreach ($lists as $val2) {
  309. if ($val2['pid'] == $val['id']) {
  310. $tree[$val2['id']] = "|--------" . $val2['name'];
  311. foreach($lists as $val3) {
  312. if($val3['pid'] == $val2['id']) {
  313. $tree[$val3['id']] = "|------------" . $val3['name'];
  314. }
  315. }
  316. }
  317. }
  318. }
  319. return $tree;
  320. } catch (Exception $e) {
  321. return [];
  322. }
  323. }
  324. /**
  325. * 编辑验证
  326. */
  327. public static function checkEdit($post)
  328. {
  329. if(empty(trim($post['name']))) {
  330. throw new \think\Exception('分类名称不能为空');
  331. }
  332. if($post['id'] == $post['cid']) {
  333. throw new \think\Exception('上级不能是自己');
  334. }
  335. if($post['sort'] < 0) {
  336. throw new \think\Exception('排序值不能为负数');
  337. }
  338. // 获取后代分类
  339. $lists = FileCate::where(['del'=>0 ])->select();
  340. $lists = !empty($lists) ? $lists->toArray() : [];
  341. $childs = self::getChildCid($lists, $post['id'], true);
  342. if(in_array($post['cid'], $childs)) {
  343. throw new \think\Exception('上级不能自己的后代分类');
  344. }
  345. //层次结构不能超过三层
  346. $level = self::calcLevel($post['id']);
  347. $parent = FileCate::find($post['cid']);
  348. if($level + $parent['level'] > 3) {
  349. throw new \think\Exception('分类不允许超过三级');
  350. }
  351. }
  352. /**
  353. * 计算当前分类下共有多少层分类
  354. * @param $lists
  355. * @param $pid
  356. * @return int
  357. */
  358. public static function calcLevel($id)
  359. {
  360. $level = 1;
  361. $two_ids = FileCate::where(['pid' => $id, 'del' => 0])->column('id');
  362. if ($two_ids) {
  363. $level = 2;
  364. $three_ids = FileCate::where([
  365. ['del', '=', 0],
  366. ['pid', 'in', $two_ids]
  367. ])->column('id');
  368. if ($three_ids) $level = 3;
  369. }
  370. return $level;
  371. }
  372. /**
  373. * 更新自己及后代分类的level
  374. */
  375. public static function updateLevel($id)
  376. {
  377. $me = FileCate::find($id);
  378. if($me['pid'] == 0) { // 上级为顶级分类
  379. FileCate::update([
  380. 'id' => $id,
  381. 'level' => 1,
  382. 'update_time' => time()
  383. ]);
  384. $two_ids = FileCate::where([
  385. 'pid' => $id,
  386. 'del' => 0
  387. ])->column('id');
  388. if($two_ids) {
  389. FileCate::where('id', 'in', $two_ids)->update([
  390. 'level' => 2,
  391. 'update_time' => time()
  392. ]);
  393. $three_ids = FileCate::where([
  394. ['pid', 'in', $two_ids],
  395. ['del', '=', 0]
  396. ])->column('id');
  397. if($three_ids) {
  398. FileCate::where('id', 'in', $three_ids)->update([
  399. 'level' => 3,
  400. 'update_time' => time()
  401. ]);
  402. }
  403. }
  404. }else{
  405. $parent = FileCate::find($me['pid']);
  406. if($parent['level'] == 1) {
  407. FileCate::update([
  408. 'id' => $id,
  409. 'level' => 2,
  410. 'update_time' => time()
  411. ]);
  412. $three_ids = FileCate::where([
  413. 'pid' => $id,
  414. 'del' => 0
  415. ])->column('id');
  416. if($three_ids) {
  417. FileCate::where('id', 'in', $three_ids)->update([
  418. 'level' => 3,
  419. 'update_time' => time()
  420. ]);
  421. }
  422. }else if($parent['level'] == 2){
  423. FileCate::update([
  424. 'id' => $id,
  425. 'level' => 3,
  426. 'update_time' => time()
  427. ]);
  428. }
  429. }
  430. }
  431. /**
  432. * 删除验证
  433. */
  434. public static function checkDel($id)
  435. {
  436. $file = File::where([
  437. 'cid' => $id,
  438. 'del' => 0
  439. ])->findOrEmpty();
  440. if(!$file->isEmpty()) {
  441. throw new \think\Exception('有文件正在使用当前分类,不允许删除');
  442. }
  443. $son = FileCate::where([
  444. 'del' => 0,
  445. 'pid' => $id
  446. ])->findOrEmpty();
  447. if(!$son->isEmpty()){
  448. throw new \think\Exception('分类下还有子分类,不允许删除');
  449. }
  450. }
  451. }