| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace app\common\model\sharing;
- use think\Cache;
- use app\common\model\BaseModel;
- /**
- * 拼团商品分类模型
- * Class Category
- * @package app\common\model\sharing
- */
- class Category extends BaseModel
- {
- protected $name = 'sharing_category';
- /**
- * 所有分类
- * @return mixed
- */
- public static function getALL()
- {
- $model = new static;
- if (!Cache::get('sharing_category_' . $model::$wxapp_id)) {
- $data = $model->order(['sort' => 'asc', 'create_time' => 'asc'])->select();
- $all = !empty($data) ? $data->toArray() : [];
- $tree = [];
- foreach ($all as $first) {
- if ($first['parent_id'] != 0) continue;
- $twoTree = [];
- foreach ($all as $two) {
- if ($two['parent_id'] != $first['category_id']) continue;
- $threeTree = [];
- foreach ($all as $three)
- $three['parent_id'] == $two['category_id']
- && $threeTree[$three['category_id']] = $three;
- !empty($threeTree) && $two['child'] = $threeTree;
- $twoTree[$two['category_id']] = $two;
- }
- if (!empty($twoTree)) {
- array_multisort(array_column($twoTree, 'sort'), SORT_ASC, $twoTree);
- $first['child'] = $twoTree;
- }
- $tree[$first['category_id']] = $first;
- }
- Cache::tag('cache')->set('sharing_category_' . $model::$wxapp_id, compact('all', 'tree'));
- }
- return Cache::get('sharing_category_' . $model::$wxapp_id);
- }
- /**
- * 获取所有分类
- * @return mixed
- */
- public static function getCacheAll()
- {
- return self::getALL()['all'];
- }
- /**
- * 获取所有分类(树状结构)
- * @return mixed
- */
- public static function getCacheTree()
- {
- return self::getALL()['tree'];
- }
- /**
- * 获取所有分类(树状结构)
- * @return string
- */
- public static function getCacheTreeJson()
- {
- return json_encode(static::getCacheTree());
- }
- /**
- * 获取指定分类下的所有子分类id
- * @param $parent_id
- * @param array $all
- * @return array
- */
- public static function getSubCategoryId($parent_id, $all = [])
- {
- $arrIds = [$parent_id];
- empty($all) && $all = self::getCacheAll();
- foreach ($all as $key => $item) {
- if ($item['parent_id'] == $parent_id) {
- unset($all[$key]);
- $subIds = self::getSubCategoryId($item['category_id'], $all);
- !empty($subIds) && $arrIds = array_merge($arrIds, $subIds);
- }
- }
- return $arrIds;
- }
- }
|