Нема описа
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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\api\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. /**
  17. * 小程序分类模板
  18. */
  19. class Category extends Base
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 获取所有分类
  29. * string $index_key 数组键名
  30. * @return mixed
  31. */
  32. public static function getProductCategory()
  33. {
  34. $data = [
  35. 'list' => [],
  36. 'arclist' => [],
  37. ];
  38. // 查询分类数据
  39. $where = [
  40. 'current_channel' => 2,
  41. 'status' => 1,
  42. 'is_hidden' => 0,
  43. 'is_del' => 0, // 回收站功能
  44. 'lang' => parent::$lang,
  45. ];
  46. $order = [
  47. 'sort_order' => 'asc',
  48. 'id' => 'asc'
  49. ];
  50. $ArctypeData = Db::name('arctype')->where($where)->order($order)->select();
  51. // 商品信息列表
  52. $ArchivesData = [];
  53. if (!empty($ArctypeData[0]['id'])) $ArchivesData = self::GetProductData($ArctypeData[0]['id']);
  54. // 返回结果
  55. $data['list'] = $ArctypeData;
  56. $data['arclist'] = $ArchivesData;
  57. return $data;
  58. }
  59. // 查询商品信息
  60. public static function GetProductData($InitialID = null, $limit = 0)
  61. {
  62. // 查询条件
  63. $where = [
  64. 'typeid' => ['IN', $InitialID],
  65. 'arcrank' => ['gt', -1],
  66. 'status' => 1,
  67. 'is_del' => 0,
  68. 'lang' => parent::$lang,
  69. ];
  70. // 数据排序
  71. $order = [
  72. 'sort_order' => 'asc',
  73. 'aid' => 'asc'
  74. ];
  75. // 分页处理
  76. $limit ='0, 20';
  77. // 查询数据
  78. $ArchivesData = Db::name('archives')->where($where)->order($order)->limit($limit)->select();
  79. if (!empty($ArchivesData)) {
  80. $diyminiproCmsBaseModel = model('v1.Base');
  81. foreach ($ArchivesData as $key => $value) {
  82. $ArchivesData[$key]['litpic'] = $diyminiproCmsBaseModel->get_default_pic($value['litpic'], true); // 默认封面图
  83. }
  84. } else {
  85. $ArchivesData = [];
  86. }
  87. // 返回结果
  88. return $ArchivesData;
  89. }
  90. /**
  91. * 所有分类
  92. * @param string $showAllTxt 显示“全部”字样
  93. * @return mixed
  94. */
  95. public static function getALL($type = '', $showAllTxt = 'off')
  96. {
  97. $cacheKey = 'api-'.md5(__CLASS__.__FUNCTION__.json_encode(func_get_args())."-".parent::$appId);
  98. $returnData = Cache::get($cacheKey);
  99. if (empty($returnData)) {
  100. $data = Db::name('arctype')->field('id,current_channel,parent_id,typename,grade,litpic,seo_title,seo_keywords,seo_description,sort_order, 0 as sub_level')->where([
  101. 'is_hidden' => 0,
  102. 'status' => 1,
  103. 'is_del' => 0, // 回收站功能
  104. 'lang' => parent::$lang,
  105. ])->order(['sort_order' => 'asc', 'id' => 'asc'])->select();
  106. $all = !empty($data) ? $data : [];
  107. $tree = [];
  108. $diyminiproCmsBaseModel = model('v1.Base');
  109. foreach ($all as $_k => $first) {
  110. // 过滤插件产生的栏目
  111. if (!empty($first['weapp_code'])) continue;
  112. $all[$_k]['typename'] = $first['typename'] = htmlspecialchars_decode($first['typename']);
  113. $all[$_k]['litpic'] = $first['litpic'] = $diyminiproCmsBaseModel->get_default_pic($first['litpic'], true);
  114. if ($first['parent_id'] != 0) continue;
  115. $twoTree = [];
  116. foreach ($all as $_k2 => $two) {
  117. $all[$_k2]['typename'] = $two['typename'] = htmlspecialchars_decode($two['typename']);
  118. $all[$_k2]['litpic'] = $two['litpic'] = $diyminiproCmsBaseModel->get_default_pic($two['litpic'], true);
  119. if ($two['parent_id'] != $first['id']) continue;
  120. $threeTree = [];
  121. foreach ($all as $_k3 => $three) {
  122. $all[$_k3]['typename'] = $three['typename'] = htmlspecialchars_decode($three['typename']);
  123. $all[$_k3]['litpic'] = $three['litpic'] = $diyminiproCmsBaseModel->get_default_pic($three['litpic'], true);
  124. $three['parent_id'] == $two['id'] && $threeTree[$three['id']] = $three;
  125. }
  126. if (!empty($threeTree)) {
  127. /*没有子栏目时,同级栏目是否有“全部”字样*/
  128. $currentData = current($threeTree);
  129. $two['sub_level'] = intval($currentData['sub_level']) + 1;
  130. if ('notSub' == $showAllTxt) {
  131. $tmp1 = $two;
  132. $tmp1['typename'] = '全部';
  133. $tmp1['sub_level'] = 0;
  134. $threeTree = array_merge([$tmp1], $threeTree);
  135. }
  136. /*end*/
  137. $two['children'] = $threeTree;
  138. }
  139. $twoTree[$two['id']] = $two;
  140. }
  141. if (!empty($twoTree)) {
  142. array_multisort(get_arr_column($twoTree, 'sort_order'), SORT_ASC, $twoTree);
  143. /*没有子栏目时,同级栏目是否有“全部”字样*/
  144. $currentData = current($twoTree);
  145. $first['sub_level'] = intval($currentData['sub_level']) + 1;
  146. if ('notSub' == $showAllTxt) {
  147. $tmp2 = $first;
  148. $tmp2['typename'] = '全部';
  149. $tmp2['sub_level'] = 0;
  150. $twoTree = array_merge([$tmp2], $twoTree);
  151. }
  152. /*end*/
  153. $first['children'] = $twoTree;
  154. }
  155. $tree[$first['id']] = $first;
  156. }
  157. $returnData = [
  158. 'all' => $all,
  159. 'tree' => $tree,
  160. ];
  161. Cache::tag('arctype')->set($cacheKey, $returnData);
  162. }
  163. if (!empty($type)) {
  164. isset($returnData[$type]) && $returnData = $returnData[$type];
  165. }
  166. return $returnData;
  167. }
  168. /**
  169. * 获取所有分类
  170. * string $index_key 数组键名
  171. * @return mixed
  172. */
  173. public static function getCacheAll($index_key = '')
  174. {
  175. $result = self::getALL('all');
  176. if (!empty($index_key)) {
  177. $result = convert_arr_key($result, $index_key);
  178. }
  179. return $result;
  180. }
  181. /**
  182. * 获取所有分类(只包含id和名称)
  183. * string $index_key 数组键名
  184. * @return mixed
  185. */
  186. public static function getCacheAllName()
  187. {
  188. $cacheKey = 'api-'.md5(__CLASS__.__FUNCTION__.parent::$appId);
  189. $result = Cache::get($cacheKey);
  190. if (empty($result)) {
  191. $arctypeAll = self::getALL('all');
  192. $result = [];
  193. foreach ($arctypeAll as $key => $val) {
  194. $result[$val['id']] = [
  195. 'id' => $val['id'],
  196. 'typename' => $val['typename'],
  197. ];
  198. }
  199. Cache::tag('arctype')->set($cacheKey, $result);
  200. }
  201. return $result;
  202. }
  203. /**
  204. * 获取单个分类
  205. * string $index_key 数组键名
  206. * @return mixed
  207. */
  208. public static function getCacheInfo($index_value = '', $index_key = 'id')
  209. {
  210. $result = [];
  211. if (!empty($index_key)) {
  212. $result = self::getALL('all');
  213. $result = convert_arr_key($result, $index_key);
  214. $result = empty($result[$index_value]) ? [] : $result[$index_value];
  215. }
  216. return $result;
  217. }
  218. /**
  219. * 获取树状结构分类
  220. * @param string $typeid 栏目ID
  221. * @param string $showAllTxt 显示“全部”字样
  222. * @return [type] [description]
  223. */
  224. public static function getCacheTree($typeid = '', $showAllTxt = 'off')
  225. {
  226. $treeData = self::getALL('tree', $showAllTxt);
  227. if (empty($typeid)) {
  228. $result = $treeData;
  229. } else {
  230. $cacheKey = 'api-'.md5(__CLASS__.__FUNCTION__.json_encode(func_get_args()));
  231. $result = Cache::get($cacheKey);
  232. if (empty($result)) {
  233. if (isset($treeData[$typeid])) {
  234. /*栏目显示“全部”*/
  235. if ('all' == $showAllTxt) {
  236. $allchildren = $treeData[$typeid];
  237. $allchildren['typename'] = '全部';
  238. $allchildren['children'] = [];
  239. $children = $treeData[$typeid]['children'];
  240. $children = array_merge([$allchildren], $children);
  241. $treeData[$typeid]['children'] = $children;
  242. }
  243. /*end*/
  244. $result = [$treeData[$typeid]];
  245. } else {
  246. $result = [];
  247. $arctypeInfo = Db::name('arctype')->field('id,parent_id,grade')->find($typeid);
  248. if (1 == $arctypeInfo['grade'] && !empty($treeData[$arctypeInfo['parent_id']]['children'])) {
  249. foreach ($treeData[$arctypeInfo['parent_id']]['children'] as $key => $val) {
  250. if ($typeid == $val['id']) {
  251. /*栏目显示“全部”*/
  252. if ('all' == $showAllTxt) {
  253. $allchildren = $val;
  254. $allchildren['typename'] = '全部';
  255. $allchildren['children'] = [];
  256. $children = !empty($val['children']) ? $val['children'] : [];
  257. $children = array_merge([$allchildren], $children);
  258. $val['children'] = $children;
  259. }
  260. /*end*/
  261. $result[] = $val;
  262. }
  263. }
  264. }
  265. }
  266. Cache::tag('arctype')->set($cacheKey, $result);
  267. }
  268. }
  269. return $result;
  270. }
  271. /**
  272. * 获取指定分类下的所有子分类id
  273. * @param $parent_id
  274. * @param array $all
  275. * @return array
  276. */
  277. public static function getSubCategoryId($parent_id, $all = [])
  278. {
  279. $arrIds = [$parent_id];
  280. empty($all) && $all = self::getCacheAll();
  281. foreach ($all as $key => $item) {
  282. if ($item['parent_id'] == $parent_id) {
  283. unset($all[$key]);
  284. $subIds = self::getSubCategoryId($item['id'], $all);
  285. !empty($subIds) && $arrIds = array_merge($arrIds, $subIds);
  286. }
  287. }
  288. return $arrIds;
  289. }
  290. /**
  291. * 指定的分类下是否存在子分类
  292. * @param $parentId
  293. * @return bool
  294. */
  295. protected static function hasSubCategory($parentId)
  296. {
  297. $all = self::getCacheAll();
  298. foreach ($all as $item) {
  299. if ($item['parent_id'] == $parentId) {
  300. return true;
  301. }
  302. }
  303. return false;
  304. }
  305. }