zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/**
 * @link:http://www.zjhejiang.com/
 * @copyright: Copyright (c) 2018 浙江禾匠信息科技有限公司
 *
 * Created by PhpStorm.
 * User: 风哀伤
 * Date: 2018/12/4
 * Time: 9:33
 */
 
namespace app\models;
 
use yii\helpers\Json;
 
class DistrictArr
{
    public static function getArr()
    {
        return Json::decode(file_get_contents(__DIR__ . '/district.json'), true);
    }
 
    public static function getDiffCityDistrict($city_name)
    {
        $list = [];
        return isset($list[$city_name]) ? $list[$city_name] : null;
    }
 
    // 数组排序 先按parent_id正序再按id正序进行排列
    public static function getSort($arr)
    {
        uasort($arr, function ($a, $b) {
            $a_p = intval($a['parent_id']);
            $b_p = intval($b['parent_id']);
            if ($a_p == $b_p) {
                $a_id = intval($a['id']);
                $b_id = intval($b['id']);
                if ($a_id == $b_id) {
                    return 0;
                }
                return ($a_id < $b_id) ? -1 : 1;
            }
            return ($a_p < $b_p) ? -1 : 1;
        });
        echo "<pre>";
        var_export($arr);
        echo "</pre>";
 
        exit();
    }
 
    /**
     * 获取已父级id为$parent_id为根节点的树型结构数组
     * @param array $arr 省市区数据
     * @param string $level 不需要的数据的level,当前等级且包含其下级都排除
     * @return array
     */
    public static function getList(&$arr, $level = null)
    {
        $treeData = [];// 保存结果
        $catList = $arr;
        foreach ($catList as &$item) {
            if ($level && $item['level'] == $level) {
                continue;
            }
            $parent_id = $item['parent_id'];
            if (isset($catList[$parent_id]) && !empty($catList[$parent_id])) {// 肯定是子分类
                $catList[$parent_id]['list'][] = &$catList[$item['id']];
            } else {// 肯定是一级分类
                $treeData[] = &$catList[$item['id']];
            }
        }
        unset($item);
        return $treeData[0]['list'];
    }
 
    // 根据id获取信息
    public static function getDistrict($param)
    {
        if (is_array($param)) {
            $id = $param['id'];
        } else {
            $id = $param;
        }
        $arr = self::getArr();
        if (!isset($arr[$id])) {
            throw new \Exception('未找到省市区,请重新选择');
        }
        $list = $arr[$id];
        $str = \Yii::$app->serializer->encode($list);
        return \Yii::$app->serializer->decode($str);
    }
 
    // 根据指定的key=>value查找需要的数组
    public static function getInfo($param)
    {
        $newParam = [];
        foreach ($param as $key => $value) {
            $newParam[0] = $key;
            $newParam[1] = $value;
        }
        $arr = self::getArr();
        $list = array_filter($arr, function ($v) use ($newParam) {
            return $v[$newParam[0]] == $newParam[1];
        });
        $str = \Yii::$app->serializer->encode($list);
        return \Yii::$app->serializer->decode($str);
    }
 
    // 运费规则、起送规则、包邮规则
    public static function getRules()
    {
        $arr = self::getArr();
        $empty = [];
        $emptyPointer = &$empty;
        $ok = false;
        foreach ($arr as $index => &$item) {
            if ($item['parent_id'] == 1) {
                $okCity = false;
                $data = [
                    'id' => $item['id'],
                    'name' => $item['name']
                ];
                $data['show'] = false;
                $data['city'] = [];
                $dataPointer = &$data['city'];
                foreach ($arr as $key => $value) {
                    if ($value['parent_id'] == $index) {
                        $okCity = true;
                        $dataPointer[] = [
                            'id' => $value['id'],
                            'name' => $value['name'],
                            'show' => false
                        ];
                    }
                    if ($okCity && $value['parent_id'] != $index) {
                        break;
                    }
                }
                array_push($emptyPointer, $data);
                $ok = true;
            }
            if ($ok && $item['parent_id'] != 1) {
                break;
            }
        }
 
        return $empty;
    }
 
    // 微信获取地址
    public static function getWechatDistrict($province_name, $city_name, $county_name)
    {
        $arr = self::getArr();
        $ok = false;
        $res = [
            'code' => 0,
            'msg' => '',
            'data' => [
                'district' => [
 
                ]
            ]
        ];
        $county = [];
        foreach ($arr as $item) {
            if ($item['name'] == $county_name && $item['level'] == 'district') {
                $county = $item;
                $city = $arr[$item['parent_id']];
                if (isset($arr[$county['parent_id']]) && $city['name'] == $city_name) {
                    $province = $arr[$city['parent_id']];
                    if (isset($arr[$city['parent_id']]) && $province['name'] = $province_name) {
                        $ok = true;
                        break;
                    }
                }
            }
        }
        if (!$ok) {
            $diff_district = self::getDiffCityDistrict($city_name);
            $res['data']['district'] = [
                'province' => [
                    'id' => 3268,
                    'name' => '其他',
                ],
                'city' => [
                    'id' => 3269,
                    'name' => '其他',
                ],
                'district' => [
                    'id' => 3270,
                    'name' => '其他',
                ],
            ];
            if ($diff_district) {
                $res['data']['district'] = $diff_district;
            }
            return $res;
        }
 
        $res['data']['district'] = [
            'province' => [
                'id' => $province['id'],
                'name' => $province['name']
            ],
            'city' => [
                'id' => $city['id'],
                'name' => $city['name']
            ],
            'district' => [
                'id' => $county['id'],
                'name' => $county['name']
            ]
        ];
 
        return $res;
    }
 
    public static function getTerritorial()
    {
        $data = \Yii::$app->cache->get('territorial_list');
        if ($data) {
            return $data;
        }
        $arr = self::getArr();
        $treeData = [];// 保存结果
        $catList = &$arr;
        foreach ($catList as &$item) {
            $item['selected'] = false;
            $item['show'] = false;
            $parent_id = $item['parent_id'];
            if (isset($catList[$parent_id]) && !empty($catList[$parent_id])) {// 肯定是子分类
                $catList[$parent_id]['list'][] = &$catList[$item['id']];
            } else {// 肯定是一级分类
                $treeData[] = &$catList[$item['id']];
            }
        }
        unset($item);
        $data = $treeData[0]['list'];
        \Yii::$app->cache->set('territorial_list', $data);
        return $data;
    }
}