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.

Citysite.php 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  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\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 多城市站点
  18. */
  19. class Citysite extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. public function setCitysiteOpen()
  28. {
  29. $web_citysite_open = tpCache('web.web_citysite_open');
  30. $web_citysite_open = intval($web_citysite_open);
  31. $tfile = DATA_PATH.'conf'.DS.'citysite.txt';
  32. $fp = @fopen($tfile,'w');
  33. if(!$fp) {
  34. @file_put_contents($tfile, $web_citysite_open);
  35. }
  36. else {
  37. fwrite($fp, $web_citysite_open);
  38. fclose($fp);
  39. }
  40. }
  41. /**
  42. * 获取单条地区
  43. * @author wengxianhu by 2017-7-26
  44. */
  45. public function getInfo($id, $field = '*')
  46. {
  47. $result = Db::name('citysite')->field($field)->find($id);
  48. return $result;
  49. }
  50. /**
  51. * 获取多个地区
  52. * @author wengxianhu by 2017-7-26
  53. */
  54. public function getListByIds($ids = array(), $field = '*', $index_key = '')
  55. {
  56. $args = [$ids, $field, $index_key];
  57. $cacheKey = 'citysite-'.md5(__CLASS__.__FUNCTION__.json_encode($args));
  58. $result = cache($cacheKey);
  59. if (empty($result)) {
  60. $map = array(
  61. 'id' => array('IN', $ids),
  62. );
  63. $result = Db::name('citysite')->field($field)
  64. ->where($map)
  65. ->select();
  66. if (!empty($index_key)) {
  67. $result = convert_arr_key($result, $index_key);
  68. }
  69. cache($cacheKey, $result, null, "citysite");
  70. }
  71. return $result;
  72. }
  73. /**
  74. * 获取子地区
  75. * @author wengxianhu by 2017-7-26
  76. */
  77. public function getList($parent_id = 0, $field = '*', $index_key = '',$level = 0)
  78. {
  79. $result = $this->getAll($parent_id, $field, $index_key,$level);
  80. return $result;
  81. }
  82. /**
  83. * 获取全部地区
  84. * @author wengxianhu by 2017-7-26
  85. */
  86. public function getAll($parent_id = false, $field = '*', $index_key = '',$level = 0)
  87. {
  88. $args = [$parent_id, $field, $index_key, $level];
  89. $cacheKey = 'citysite-'.md5(__CLASS__.__FUNCTION__.json_encode($args));
  90. $result = cache($cacheKey);
  91. if (empty($result)) {
  92. $map['status'] = 1;
  93. if (false !== $parent_id) {
  94. $map['parent_id'] = $parent_id;
  95. }
  96. if (0 !== $level) {
  97. $map['level'] = $level;
  98. }
  99. $result = Db::name('citysite')->field($field)
  100. ->where($map)
  101. ->select();
  102. if (!empty($index_key)) {
  103. $result = convert_arr_key($result, $index_key);
  104. }
  105. cache($cacheKey, $result, null, "citysite");
  106. }
  107. return $result;
  108. }
  109. /**
  110. * 获取级别的地区
  111. * @author wengxianhu by 2017-7-26
  112. */
  113. public function getListByLevel($level = 1, $field = '*', $index_key = '')
  114. {
  115. $map = array(
  116. 'level' => $level,
  117. );
  118. $result = Db::name('citysite')->field($field)
  119. ->where($map)
  120. ->select();
  121. if (!empty($index_key)) {
  122. $result = convert_arr_key($result, $index_key);
  123. }
  124. return $result;
  125. }
  126. /**
  127. * 获取当前城市站点的所有父级
  128. * @author wengxianhu by 2018-4-26
  129. */
  130. public function getAllPid($id)
  131. {
  132. $args = [THEME_STYLE, $id];
  133. $cacheKey = 'citysite-'.md5(__CLASS__.__FUNCTION__.json_encode($args));
  134. $data = cache($cacheKey);
  135. if (empty($data)) {
  136. $data = array();
  137. $siteid = $id;
  138. $map = [
  139. 'status' => 1,
  140. ];
  141. $citysite_list = Db::name('citysite')->field('*, id as siteid')
  142. ->where($map)
  143. ->getAllWithIndex('id');
  144. if (isset($citysite_list[$siteid])) {
  145. // 第一个先装起来
  146. $citysite_list[$siteid]['siteurl'] = $this->getSiteUrl($citysite_list[$siteid]);
  147. $data[$siteid] = $citysite_list[$siteid];
  148. } else {
  149. return $data;
  150. }
  151. while (true)
  152. {
  153. $siteid = $citysite_list[$siteid]['parent_id'];
  154. if($siteid > 0){
  155. if (isset($citysite_list[$siteid])) {
  156. $citysite_list[$siteid]['siteurl'] = $this->getSiteUrl($citysite_list[$siteid]);
  157. $data[$siteid] = $citysite_list[$siteid];
  158. }
  159. } else {
  160. break;
  161. }
  162. }
  163. $data = array_reverse($data, true);
  164. cache($cacheKey, $data, null, "citysite");
  165. }
  166. return $data;
  167. }
  168. /**
  169. * 获取城市站点的URL
  170. */
  171. public function getSiteUrl($res)
  172. {
  173. $siteurl = siteurl($res);
  174. return $siteurl;
  175. }
  176. /**
  177. * 当后台使用分站域名访问,在发布文档时自动定位所属区域
  178. * @return [type] [description]
  179. */
  180. public function auto_location_select(&$assign_data = [])
  181. {
  182. if (config('city_switch_on')) {
  183. $subDomain = request()->subDomain();
  184. if (!empty($subDomain) && 'www' != $subDomain) {
  185. $siteinfo = Db::name('citysite')->where(['domain'=>$subDomain, 'is_open'=>1])->find();
  186. if (!empty($siteinfo)) {
  187. if (1 == $siteinfo['level']) {
  188. $assign_data['site_province_id'] = $siteinfo['id'];
  189. } else if (2 == $siteinfo['level']) {
  190. $assign_data['site_province_id'] = $siteinfo['topid'];
  191. $assign_data['site_city_id'] = $siteinfo['id'];
  192. } else if (3 == $siteinfo['level']) {
  193. $assign_data['site_province_id'] = $siteinfo['topid'];
  194. $assign_data['site_city_id'] = $siteinfo['parent_id'];
  195. $assign_data['site_area_id'] = $siteinfo['id'];
  196. }
  197. }
  198. }
  199. }
  200. }
  201. }