No Description
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.

CitysiteLogic.php 9.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2021-7-18
  12. */
  13. namespace app\common\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 城市站点逻辑定义
  18. * @package common\Logic
  19. */
  20. class CitysiteLogic extends Model
  21. {
  22. /**
  23. * 析构函数
  24. */
  25. function __construct() {
  26. function_exists('set_time_limit') && set_time_limit(0);
  27. @ini_set('memory_limit','-1');
  28. }
  29. /**
  30. * 获得指定城市站点下的子城市站点的数组
  31. *
  32. * @access public
  33. * @param int $id 城市站点的ID
  34. * @param int $selected 当前选中城市站点的ID
  35. * @param boolean $re_type 返回的类型: 值为真时返回下拉列表,否则返回数组
  36. * @param int $grade 限定返回的级数。为0时返回所有级数
  37. * @param array $map 查询条件
  38. * @return mix
  39. */
  40. public function citysite_list($id = 0, $selected = 0, $re_type = true, $grade = 0, $map = array(), $is_cache = true)
  41. {
  42. static $res = NULL;
  43. if ($res === NULL)
  44. {
  45. $where = array(
  46. 'status' => 1,
  47. );
  48. if (!empty($map)) {
  49. $where = array_merge($where, $map);
  50. }
  51. foreach ($where as $key => $val) {
  52. $key_tmp = 'c.'.$key;
  53. $where[$key_tmp] = $val;
  54. unset($where[$key]);
  55. }
  56. $fields = "c.*, c.id as siteid, count(s.id) as has_children, '' as children";
  57. $args = [$fields, $where, $is_cache];
  58. $cacheKey = 'citysite-'.md5(__CLASS__.__FUNCTION__.json_encode($args));
  59. $res = cache($cacheKey);
  60. if (empty($res) || empty($is_cache)) {
  61. $res = Db::name('citysite')
  62. ->field($fields)
  63. ->alias('c')
  64. ->join('__CITYSITE__ s','s.parent_id = c.id','LEFT')
  65. ->where($where)
  66. ->group('c.id')
  67. ->order('c.parent_id asc, c.sort_order asc, c.id')
  68. ->cache($is_cache,EYOUCMS_CACHE_TIME,"citysite")
  69. ->select();
  70. cache($cacheKey, $res, null, 'citysite');
  71. }
  72. }
  73. if (empty($res) == true)
  74. {
  75. return $re_type ? '' : array();
  76. }
  77. $cacheKey = 'citysite-'.md5($id.json_encode($res));
  78. $options = cache($cacheKey);
  79. if (empty($options)) {
  80. $options = $this->citysite_options($id, $res); // 获得指定城市站点下的子城市站点的数组
  81. cache($cacheKey, $options, null, 'citysite');
  82. }
  83. /* 截取到指定的缩减级别 */
  84. $citysite_max_level = intval(config('global.citysite_max_level'));
  85. if ($grade > 0 && $grade < $citysite_max_level)
  86. {
  87. if ($id == 0)
  88. {
  89. $end_grade = $grade;
  90. }
  91. else
  92. {
  93. $first_item = reset($options); // 获取第一个元素
  94. $end_grade = $first_item['grade'] + $grade;
  95. }
  96. /* 保留grade小于end_grade的部分 */
  97. foreach ($options AS $key => $val)
  98. {
  99. if ($val['grade'] >= $end_grade)
  100. {
  101. unset($options[$key]);
  102. }
  103. }
  104. }
  105. $pre_key = 0;
  106. $select = '';
  107. foreach ($options AS $key => $value)
  108. {
  109. $options[$key]['has_children'] = 0;
  110. if ($pre_key > 0)
  111. {
  112. if ($options[$pre_key]['id'] == $options[$key]['parent_id'])
  113. {
  114. $options[$pre_key]['has_children'] = 1;
  115. }
  116. }
  117. $pre_key = $key;
  118. if ($re_type == true) {
  119. $select .= '<option value="' . $value['id'] . '" ';
  120. $select .= ($selected == $value['id']) ? "selected='true'" : '';
  121. $select .= '>';
  122. if ($value['grade'] > 0)
  123. {
  124. $select .= str_repeat('&nbsp;', $value['grade'] * 4);
  125. }
  126. $select .= htmlspecialchars_decode(addslashes($value['name'])) . '</option>';
  127. }
  128. }
  129. if ($re_type == true) {
  130. return $select;
  131. } else {
  132. return $options;
  133. }
  134. }
  135. /**
  136. * 过滤和排序所有城市站点,返回一个带有缩进级别的数组
  137. *
  138. * @access private
  139. * @param int $id 上级城市站点ID
  140. * @param array $arr 含有所有城市站点的数组
  141. * @param int $grade 级别
  142. * @return void
  143. */
  144. public function citysite_options($spec_id, $arr)
  145. {
  146. static $cat_options = array();
  147. if (isset($cat_options[$spec_id]))
  148. {
  149. return $cat_options[$spec_id];
  150. }
  151. if (!isset($cat_options[0]))
  152. {
  153. $grade = $last_id = 0;
  154. $options = $id_array = $grade_array = array();
  155. while (!empty($arr))
  156. {
  157. foreach ($arr AS $key => $value)
  158. {
  159. $id = $value['id'];
  160. if ($grade == 0 && $last_id == 0)
  161. {
  162. if ($value['parent_id'] > 0)
  163. {
  164. break;
  165. }
  166. $options[$id] = $value;
  167. $options[$id]['grade'] = $grade;
  168. $options[$id]['id'] = $id;
  169. $options[$id]['name'] = htmlspecialchars_decode($value['name']);
  170. unset($arr[$key]);
  171. if ($value['has_children'] == 0)
  172. {
  173. continue;
  174. }
  175. $last_id = $id;
  176. $id_array = array($id);
  177. $grade_array[$last_id] = ++$grade;
  178. continue;
  179. }
  180. if ($value['parent_id'] == $last_id)
  181. {
  182. $options[$id] = $value;
  183. $options[$id]['grade'] = $grade;
  184. $options[$id]['id'] = $id;
  185. $options[$id]['name'] = htmlspecialchars_decode($value['name']);
  186. unset($arr[$key]);
  187. if ($value['has_children'] > 0)
  188. {
  189. if (end($id_array) != $last_id)
  190. {
  191. $id_array[] = $last_id;
  192. }
  193. $last_id = $id;
  194. $id_array[] = $id;
  195. $grade_array[$last_id] = ++$grade;
  196. }
  197. }
  198. elseif ($value['parent_id'] > $last_id)
  199. {
  200. break;
  201. }
  202. }
  203. $count = count($id_array);
  204. if ($count > 1)
  205. {
  206. $last_id = array_pop($id_array);
  207. }
  208. elseif ($count == 1)
  209. {
  210. if ($last_id != end($id_array))
  211. {
  212. $last_id = end($id_array);
  213. }
  214. else
  215. {
  216. $grade = 0;
  217. $last_id = 0;
  218. $id_array = array();
  219. continue;
  220. }
  221. }
  222. if ($last_id && isset($grade_array[$last_id]))
  223. {
  224. $grade = $grade_array[$last_id];
  225. }
  226. else
  227. {
  228. $grade = 0;
  229. break;
  230. }
  231. }
  232. $cat_options[0] = $options;
  233. }
  234. else
  235. {
  236. $options = $cat_options[0];
  237. }
  238. if (!$spec_id)
  239. {
  240. return $options;
  241. }
  242. else
  243. {
  244. if (empty($options[$spec_id]))
  245. {
  246. return array();
  247. }
  248. $spec_id_grade = $options[$spec_id]['grade'];
  249. foreach ($options AS $key => $value)
  250. {
  251. if ($key != $spec_id)
  252. {
  253. unset($options[$key]);
  254. }
  255. else
  256. {
  257. break;
  258. }
  259. }
  260. $spec_id_array = array();
  261. foreach ($options AS $key => $value)
  262. {
  263. if (($spec_id_grade == $value['grade'] && $value['id'] != $spec_id) ||
  264. ($spec_id_grade > $value['grade']))
  265. {
  266. break;
  267. }
  268. else
  269. {
  270. $spec_id_array[$key] = $value;
  271. }
  272. }
  273. $cat_options[$spec_id] = $spec_id_array;
  274. return $spec_id_array;
  275. }
  276. }
  277. }