Station.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <?php
  2. namespace catchAdmin\device\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\device\model\get\StationGet;
  6. use think\facade\Db;
  7. use think\facade\Env;
  8. class Station extends Model
  9. {
  10. use DataRangScopeTrait;
  11. use StationGet;
  12. // 表名
  13. public $name = 'stations';
  14. // 数据库字段映射
  15. public $field = array(
  16. 'id',
  17. 'mac',
  18. 'shortcode',
  19. 'name',
  20. 'model',
  21. 'serial_number',
  22. 'department_id',
  23. 'version',
  24. 'open_status',
  25. 'sim_no',
  26. 'longitude',
  27. 'latitude',
  28. 'online_time',
  29. 'online_state',
  30. 'address',
  31. 'remark',
  32. 'open_time',
  33. 'open_user_id',
  34. 'creator_id',
  35. 'created_at',
  36. 'updated_at',
  37. 'deleted_at'
  38. );
  39. /**
  40. * 获取基站列表
  41. */
  42. public function getList()
  43. {
  44. $res = $this->dataRange()
  45. ->catchSearch()
  46. ->append(['is_online','is_online_text'])
  47. ->order($this->aliasField('online_time'), 'desc')
  48. ->paginate()->each(function($item, $key) {
  49. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  50. $item['longitude']=$wgsLoc['lng'];
  51. $item['latitude']=$wgsLoc['lat'];
  52. });
  53. return $res;
  54. }
  55. public function getMapList(){
  56. $res = $this->dataRange()
  57. ->catchSearch()
  58. ->append(['is_online','is_online_text'])
  59. ->order($this->aliasField('online_time'), 'desc')
  60. ->paginate()->each(function($item, $key) {
  61. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  62. $item['longitude']=$wgsLoc['lng'];
  63. $item['latitude']=$wgsLoc['lat'];
  64. });
  65. return $res;
  66. }
  67. public function getExportList(){
  68. $res = $this->dataRange()
  69. ->catchSearch()
  70. // ->field('mac,name,latitude,longitude,online_time')
  71. ->append(['is_online_text','is_online'])
  72. // ->cache(120)
  73. ->select()
  74. ->each(function($item, $key) {
  75. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  76. $item['longitude']=$wgsLoc['lng'];
  77. $item['latitude']=$wgsLoc['lat'];
  78. })->toArray();
  79. return $res;
  80. }
  81. public function getAllList($start=0,$limit=4000){
  82. $res = $this
  83. ->catchSearch()
  84. // ->field('mac,name,latitude,longitude,online_time')
  85. ->append(['is_online_text','is_online'])
  86. ->cache(120)
  87. ->limit($start,$limit)
  88. ->select()
  89. ->each(function($item, $key) {
  90. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  91. $item['longitude']=$wgsLoc['lng'];
  92. $item['latitude']=$wgsLoc['lat'];
  93. })->toArray();
  94. return $res;
  95. }
  96. /**
  97. * 根据名称搜索
  98. */
  99. public function searchNameAttr($query, $value, $data)
  100. {
  101. return $query->where('name', 'like', '%'.$value.'%');
  102. }
  103. /**
  104. * 根据编号搜索
  105. */
  106. public function searchShortCodeAttr($query, $value, $data)
  107. {
  108. return $query->where('shortcode|mac', 'like', '%'.$value.'%');
  109. }
  110. /**
  111. * 关键字
  112. */
  113. public function searchKeywordsAttr($query, $value, $data)
  114. {
  115. return $query->where('name|mac', 'like', '%'.$value.'%');
  116. }
  117. /**
  118. * 根据状态搜索
  119. */
  120. public function searchOnlineStateAttr($query, $value, $data)
  121. {
  122. $time=date('Y-m-d H:i:s',time()-600);
  123. $config=Env::get('app.station_state');
  124. if($value=='1'){
  125. if(!$config){
  126. return $query->where(function ($query) use( $time) {
  127. $query->where('online_state', 1)->whereOr('online_state','null')->whereOr('online_state','');
  128. });
  129. }
  130. return $query->where(function ($query) use( $time) {
  131. $query->where('online_time', '>=', $time)->whereOr('online_state','=', 1);
  132. });
  133. }elseif($value=='2'){
  134. if(!$config){
  135. return $query->where(function ($query) use( $time) {
  136. $query->where('online_state',2);
  137. });
  138. }
  139. return $query->where(function ($query) use( $time) {
  140. $query->whereOr('online_time','<', $time)->whereOr('online_time','=', null);
  141. });
  142. }
  143. }
  144. }