Area.php
10.7 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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<?php
/**
+-----------------------------------------------------------------------------------------------------------------------
* 模型层:系统-区域 模型类
+-----------------------------------------------------------------------------------------------------------------------
*
* PHP version 7
*
* @category App\Models\System
* @package App\Models\System
* @author Richer <yangzi1028@163.com>
* @date 2021年1月26日17:53:22
* @copyright 2020-2022 Richer (http://www.Richer.com/)
* @license http://www.Richer.com/ License
* @link http://www.Richer.com/
*/
namespace App\Models\System;
use App\Models\BaseModel;
use App\Models\Lock\Lock;
use App\Models\Smoke\Smoke;
use App\Models\Traits\AreaTrait;
use App\Models\User\Tenant;
use Encore\Admin\Auth\Database\Administrator;
use Encore\Admin\Traits\ModelTree;
use Illuminate\Database\Eloquent\Relations\hasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Support\Arr;
use Illuminate\Support\Facades\Cache;
use Illuminate\Support\Facades\DB;
/**
* Class Area
*
* @category App\Models\System
* @package App\Models\System
* @author Richer <yangzi1028@163.com>
* @date 2021年1月26日17:53:22
* @copyright 2020-2022 Richer (http://www.Richer.com/)
* @license http://www.Richer.com/ License
* @link http://www.Richer.com/
*/
class Area extends BaseModel
{
//
// 指定数据库表
const TABLE = 'system_areas';
protected $table = self::TABLE;
// 指定对象显示名称:方便系统统一查询和做其他处理
const OBJ_NAME = 'system-area';
const OBJ_NAME_ZH = '区域';
const LEVEL_VILLAGE = 1;
const LEVEL_GROUP = 2;
const LEVEL_BUILDING = 3;
const LEVEL_ROOM = 4;
const VILLAGE = 'village';
const GROUP = 'group';
const BUILDING = 'building';
const ROOM = 'room';
const VILLAGE_ZH = '社区/村';
const GROUP_ZH = '小区/小组';
const BUILDING_ZH = '楼栋';
const ROOM_ZH = '房间';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'admin_id', 'pid','level', 'title','pcode', 'code', 'code','phone', 'address','path'
];
/**
* 访问器被附加到模型数组的形式。
*
* @var array
*/
// protected $appends = ['username','password', 'gid','ggid', 'village_id','group_id','building_id'];
/**
*
*/
public static function boot()
{
parent::boot();
// 删除
static::deleted(function ($model) {
// 删除关联
AreaTrait::deleteArea($model);
});
}
/**
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function admin()
{
return $this->belongsTo(Administrator::class);
}
/**
* 属于哪个用户
*
* @return mixed
*/
public function parent()
{
return $this->belongsTo(Area::class, 'pid');
}
/**
* @return HasMany
*/
public function rooms(): HasMany
{
return $this->hasMany(Area::class, 'pid', 'id');
}
/**
* 获取gid
*
* @param $value
* @return mixed
*/
public function getGidAttribute($value)
{
$id = $this->id;
$pid = $this->pid;
$level = $this->level;
$path = $this->path;
$gid = 0;
switch ($level) {
case Area::LEVEL_BUILDING:
$gid = trim(str_replace(','.$pid.',', '', $path), ',');
break;
case Area::LEVEL_ROOM:
$gid = Arr::last(explode(',', trim(str_replace(','.$pid.',', '', $path), ',')));
break;
}
return $gid;
}
/**
* 获取gid
*
* @param $value
* @return mixed
*/
public function getGgidAttribute($value)
{
$id = $this->id;
$pid = $this->pid;
$level = $this->level;
$path = $this->path;
$ggid = 0;
switch ($level) {
case Area::LEVEL_ROOM:
$ggid = Arr::first(explode(',', trim($path, ',')));
break;
}
return $ggid;
}
/**
* 获取 village_id
*
* @return mixed
*/
public function getVillageIdAttribute()
{
$path = $this->path;
$paths = array_filter(explode(',', $path));
$level = $this->level;
switch ($level) {
case self::LEVEL_VILLAGE:
return $this->id;
default:
return Arr::first($paths);
}
}
/**
* 获取 group_id
*
* @return mixed
*/
public function getGroupIdAttribute()
{
$path = $this->path;
$paths = array_filter(explode(',', $path));
$level = $this->level;
switch ($level) {
case self::LEVEL_VILLAGE:
return 0;
case self::LEVEL_GROUP:
return $this->id;
default:
return Arr::first(array_slice($paths, 1));
}
}
/**
* 获取 group_id
*
* @return mixed
*/
public function getBuildingIdAttribute()
{
$path = $this->path;
$paths = array_filter(explode(',', $path));
$level = $this->level;
switch ($level) {
case self::LEVEL_GROUP:
return $this->id;
case self::LEVEL_ROOM:
return $this->pid;
default:
return Arr::first(array_slice($paths, 2));
}
}
//
// /**
// * 获取管理端用户名
// *
// * @param $value
// * @return mixed
// */
// public function getUsernameAttribute($value)
// {
// $admin = $this->admin;
// if ($admin) {
// return $admin->username;
// }
// return '';
// }
//
// /**
// * 获取管理端用户名
// *
// * @param $value
// * @return mixed
// */
// public function getPasswordAttribute($value)
// {
// $admin = $this->admin;
// if ($admin) {
// return $admin->password;
// }
// return '';
// }
/**
* 生成每个级别的code
* @param int $level
* @param string $pcode
* @return string
*/
public static function generateCode($level = 1, $pcode = '')
{
// $redis = Redis::connection("serial_number");
$cache_key = self::OBJ_NAME .'-'.$level.'-'.$pcode ;
$serial_number = Cache::get($cache_key);
$prefix_zeros = 12;
if (!$serial_number) {
$query = Area::where('level', $level);
if ($pcode) {
$query->where('pcode', $pcode);
}
$area = $query->orderByDesc('code')->first();
if ($area) {
$serial_number = intval(rtrim_zero($area->code));
} else {
switch ($level) {
case self::LEVEL_VILLAGE:
$serial_number = 110;
break;
case self::LEVEL_GROUP:
case self::LEVEL_BUILDING:
case self::LEVEL_ROOM:
$serial_number = rtrim_zero($pcode) . 110;
break;
}
}
}
// switch ($level) {
// case self::LEVEL_VILLAGE:
// $prefix_zeros = 8;
// break;
// case self::LEVEL_GROUP:
// $prefix_zeros = 8;
// break;
// case self::LEVEL_BUILDING:
// $prefix_zeros = 8;
// break;
// case self::LEVEL_ROOM:
// $prefix_zeros = 8;
// break;
// }
// dump($serial_number);
$serial_number++;
// $code = str_pad(1,$prefix_zeros,"0",STR_PAD_RIGHT);
$code = sprintf("%-0{$prefix_zeros}s", $serial_number);
// dump($code);
// dd($serial_number);
Cache::add($cache_key, $serial_number);
return $code;
}
/**
* 生成每个级别的code
* @param int $level
* @return array
*/
public static function getParent($level = 1)
{
$models = Area::where('level', $level)->get(['id','code','title', 'path']);//->pluck('title', 'code')->toArray();
return $models;
}
/**
* 生成每个级别的code
* @param int $level
* @return array
*/
public static function getSelectOptionsByLevel($level = 1)
{
return Area::where('level', $level)->get(['id','code','title'])->pluck('title', 'id')->toArray();
}
/**
* 根据区域的code获取区域的的代码集:主要为laravel-admin select组件使用
*
* @param string $code code
* @return array
*/
public static function getSelectOptionsByPid($code = '')
{
$list = self::where('pid', $code)->get(['id','title']);
// $options[0] = '全部';
$options = [];
foreach ($list as $vo) {
$options[$vo->id] = $vo->title;
}
return $options;
}
/**
* 根据区域的code获取区域的的代码集:主要为laravel-admin select组件使用
*
* @param string $code code
* @return array
*/
public static function getSelectOptions($code = '')
{
$list = self::where('pid', $code)->get(['id','title']);
// $options[0] = '全部';
$options = [];
foreach ($list as $vo) {
$options[$vo->id] = $vo->title;
}
return $options;
}
/**
* @return hasMany
*/
public function children(): hasMany
{
return $this->hasMany(Area::class, 'pid', 'id');
}
/**
* @return hasMany
*/
public function allChildren()
{
return $this->children()->with('allChildren');
}
/**
* @return hasMany
*/
public function allParent()
{
return $this->parent()->with('allParent');
}
/**
* 生成每个级别的code
* @param int $level
* @return array
*/
public static function getParents($level = 1)
{
$models = Area::where('level', $level)->get(['id','code','title', 'path']);//->pluck('title', 'code')->toArray();
return $models;
}
/**
* @return HasOne
*/
public function lock(): HasOne
{
return $this->hasOne(Lock::class, 'room_id');
}
/**
* @return HasOne
*/
public function smoke(): HasOne
{
return $this->hasOne(Smoke::class, 'room_id');
}
/**
* @return HasMany
*/
public function tenants(): HasMany
{
return $this->hasMany(Tenant::class, 'room_id');
}
}