Area.php
4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php
namespace app\common\model;
use think\Cache;
use think\Model;
/**
* 地区数据模型
*/
class Area extends Model
{
/**
* 根据经纬度获取当前地区信息
*
* @param string $lng 经度
* @param string $lat 纬度
* @return Area 城市信息
*/
public static function getAreaFromLngLat($lng, $lat, $level = 3)
{
$namearr = [1 => 'geo:province', 2 => 'geo:city', 3 => 'geo:district'];
$rangearr = [1 => 15000, 2 => 1000, 3 => 200];
$geoname = isset($namearr[$level]) ? $namearr[$level] : $namearr[3];
$georange = isset($rangearr[$level]) ? $rangearr[$level] : $rangearr[3];
// 读取范围内的ID
$redis = Cache::store('redis')->handler();
$georadiuslist = [];
if (method_exists($redis, 'georadius')) {
$georadiuslist = $redis->georadius($geoname, $lng, $lat, $georange, 'km', ['WITHDIST', 'COUNT' => 5, 'ASC']);
}
if ($georadiuslist) {
list($id, $distance) = $georadiuslist[0];
}
$id = isset($id) && $id ? $id : 3;
return self::get($id);
}
/**
* 根据经纬度获取省份
*
* @param string $lng 经度
* @param string $lat 纬度
* @return Area
*/
public static function getProvinceFromLngLat($lng, $lat)
{
$provincedata = null;
$citydata = self::getCityFromLngLat($lng, $lat);
if ($citydata) {
$provincedata = self::get($citydata['pid']);
}
return $provincedata;
}
/**
* 根据经纬度获取城市
*
* @param string $lng 经度
* @param string $lat 纬度
* @return Area
*/
public static function getCityFromLngLat($lng, $lat)
{
$citydata = null;
$districtdata = self::getDistrictFromLngLat($lng, $lat);
if ($districtdata) {
$citydata = self::get($districtdata['pid']);
}
return $citydata;
}
/**
* 根据经纬度获取地区
*
* @param string $lng 经度
* @param string $lat 纬度
* @return Area
*/
public static function getDistrictFromLngLat($lng, $lat)
{
$districtdata = self::getAreaFromLngLat($lng, $lat, 3);
return $districtdata;
}
/**
* 根据id获取地区名称
* @param $id
* @return string
*/
public static function getNameById($id)
{
$area = self::getCacheAll();
return $area[$id]['name'];
}
/**
* 根据名称获取地区id
* @param $name
* @param int $level
* @param int $pid
* @return mixed
*/
public static function getIdByName($name, $level = 0, $pid = 0)
{
return static::useGlobalScope(false)->where(compact('name', 'level', 'pid'))
->value('id') ?: static::add($name, $level, $pid);
}
/**
* @param $name
* @param int $level
* @param int $pid
* @return mixed
*/
private static function add($name, $level = 0, $pid = 0)
{
$model = new static;
$model->save(compact('name', 'level', 'pid'));
Cache::rm('area');
return $model->getLastInsID();
}
/**
* 获取所有地区(树状结构)
* @return mixed
*/
public static function getCacheTree()
{
return self::areaCache()['tree'];
}
/**
* 获取所有地区
* @return mixed
*/
public static function getCacheAll()
{
return self::areaCache()['all'];
}
/**
* 获取地区缓存
* @return mixed
*/
private static function areaCache()
{
if (!Cache::get('area')) {
// 所有地区
$all = $allData = self::useGlobalScope(false)->column('id, pid, name, level', 'id');
// 格式化
$tree = [];
foreach ($allData as $pKey => $province) {
if ($province['level'] == 1) { // 省份
$tree[$province['id']] = $province;
unset($allData[$pKey]);
foreach ($allData as $cKey => $city) {
if ($city['level'] == 2 && $city['pid'] == $province['id']) { // 城市
$tree[$province['id']]['city'][$city['id']] = $city;
unset($allData[$cKey]);
foreach ($allData as $rKey => $area) {
if ($area['level'] == 3 && $area['pid'] == $city['id']) { // 地区
$tree[$province['id']]['city'][$city['id']]['area'][$area['id']] = $area;
unset($allData[$rKey]);
}
}
}
}
}
}
Cache::set('area', compact('all', 'tree'));
}
return Cache::get('area');
}
}