截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

FileLogic.php 14KB

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