Station.php 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <?php
  2. namespace catchAdmin\device\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\device\model\Station as stationModel;
  7. use catcher\Utils;
  8. use catcher\library\excel\Excel;
  9. use PhpOffice\PhpSpreadsheet\IOFactory;
  10. use think\facade\Env;
  11. use think\facade\Db;
  12. use PDO;
  13. use think\facade\Cache;
  14. class Station extends CatchController
  15. {
  16. protected $stationModel;
  17. public function __construct(StationModel $stationModel)
  18. {
  19. $this->stationModel = $stationModel;
  20. }
  21. /**
  22. * 列表
  23. * @time 2022年10月26日 10:32
  24. * @param Request $request
  25. */
  26. public function index(Request $request) : \think\Response
  27. {
  28. return CatchResponse::paginate($this->stationModel->getList());
  29. }
  30. /**
  31. * 保存信息
  32. * @time 2022年10月26日 10:32
  33. * @param Request $request
  34. */
  35. public function save(Request $request) : \think\Response
  36. {
  37. $params=$request->post();
  38. $shortcode=$this->stationModel->order('shortcode','desc')->value('shortcode');
  39. $params['shortcode']=$shortcode+1;
  40. // $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
  41. $gcjLoc = \algorithm\Geometry::wgsTOgcj((float)$params['latitude'],(float)$params['longitude']);
  42. $params['longitude']=$gcjLoc['lng'];
  43. $params['latitude']=$gcjLoc['lat'];
  44. return CatchResponse::success($this->stationModel->storeBy($params));
  45. }
  46. /**
  47. * 读取
  48. * @time 2022年10月26日 10:32
  49. * @param $id
  50. */
  51. public function read($id) : \think\Response
  52. {
  53. return CatchResponse::success($this->stationModel->findBy($id));
  54. }
  55. /**
  56. * 更新
  57. * @time 2022年10月26日 10:32
  58. * @param Request $request
  59. * @param $id
  60. */
  61. public function update(Request $request, $id) : \think\Response
  62. {
  63. $params=$request->post();
  64. // $gcjLoc = \algorithm\Geometry::convertBd09ToGcj02((float)$params['latitude'],(float)$params['longitude']);
  65. $gcjLoc = \algorithm\Geometry::wgsTOgcj((float)$params['latitude'],(float)$params['longitude']);
  66. $params['longitude']=$gcjLoc['lng'];
  67. $params['latitude']=$gcjLoc['lat'];
  68. return CatchResponse::success($this->stationModel->updateBy($id, $params));
  69. }
  70. /**
  71. * 删除
  72. * @time 2022年10月26日 10:32
  73. * @param $id
  74. */
  75. public function delete($id) : \think\Response
  76. {
  77. return CatchResponse::success($this->stationModel->deleteBy($id,true));
  78. }
  79. public function getdeviceListByStation(Request $request){
  80. $params=$request->param();
  81. if(!$params['station_code']){
  82. return CatchResponse::success('');
  83. }
  84. $cond=[];
  85. if($params['station_code']){
  86. $cond['RF_ID']=['=',$params['station_code']];
  87. }
  88. $start_time = date('Y-m-d 00:00:00',time());
  89. $end_time = date('Y-m-d 23:59:59',time());
  90. if(isset($params['timeRange']) && $params['timeRange'] != ''){
  91. $start_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][0]));
  92. $end_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][1]));
  93. $cond['RF_DATE']=['timeRange',$start_time,$end_time];
  94. }
  95. // $count=queryOracleCount('DSSC2.W_DW_RF_RECORD',$cond);
  96. $cond['page']=isset($params['page'])?$params['page']:1;
  97. $cond['limit']=isset($params['limit'])?$params['limit']:10;
  98. $rows=queryOracleSelect('(SELECT * FROM DSSC2.W_DW_RF_RECORD ORDER BY RF_DATE DESC) a',$cond,'a.RF_FLAGID,a.RF_STAT,to_char(a.RF_DATE,\'yyyy-mm-dd hh24:mi:ss\') RF_DATE');
  99. foreach($rows as &$val){
  100. //状态: 0- 未知,1 - 进入,2 - 离开
  101. if($val['RF_STAT']==1){
  102. $val['RF_STAT_TEXT']='进入';
  103. }elseif($val['RF_STAT']==2){
  104. $val['RF_STAT_TEXT']='离开';
  105. }else{
  106. $val['RF_STAT_TEXT']='未知';
  107. }
  108. }
  109. $response=[
  110. 'code'=>10000,
  111. 'message'=>'查询成功',
  112. // 'count'=>$count,
  113. 'data'=>$rows,
  114. 'current'=>isset($params['page'])?(int)$params['page']:1,
  115. 'limit'=>isset($params['limit'])?(int)$params['limit']:10,
  116. ];
  117. return $response;
  118. // $cond=[];
  119. // $params=$request->param();
  120. // if(!$params['station_code']){
  121. // return CatchResponse::success('');
  122. // }
  123. // if($params['station_code']){
  124. // $cond[]=['RF_ID','=',$params['station_code']];
  125. // }
  126. // $start_time = date('Y-m-d 00:00:00',time());
  127. // $end_time = date('Y-m-d 23:59:59',time());
  128. // if(isset($params['timeRange']) && $params['timeRange'] != ''){
  129. // $start_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][0]));
  130. // $end_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][1]));
  131. // $cond[]=['RF_DATE','between',[$start_time,$end_time]];
  132. // }
  133. // $list=$this->rfRecordModel->getList($cond);
  134. // return CatchResponse::paginate($list);
  135. }
  136. /**
  137. * 导入设备
  138. *
  139. * @time 2022年02月15日
  140. * @param Excel $excel
  141. * @param DeviceExport $deviceExport
  142. * @throws \PhpOffice\PhpSpreadsheet\Exception
  143. * @return \think\response\Json
  144. */
  145. public function importStation(Request $request)
  146. {
  147. $url = $request->post('url');
  148. if (!$url) {
  149. return CatchResponse::fail('请上传文件');
  150. }
  151. $creator_id = $request->post('creator_id');
  152. //解析地址
  153. $parse_url = parse_url($url)['path'];
  154. //载入excel表格
  155. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  156. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  157. // $nameArr = $objPHPExcel->getSheetNames();
  158. //获取表的数量
  159. $sheetCount = $objPHPExcel->getSheetCount();
  160. $fail = 0; //失败条数
  161. $success = 0; //成功条数
  162. $total = 0; //总共设备数
  163. $data = []; //设备数据
  164. //循环读取每一张表
  165. $shortcode=$this->stationModel->order('shortcode','desc')->value('shortcode');
  166. for ($index = 0; $index < $sheetCount; $index++) {
  167. //设置当前要读取的表
  168. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  169. // var_dump($sheet);exit;
  170. $highestRow = $sheet->getHighestRow(); // 取得总行数
  171. // var_dump($highestRow);
  172. if ($highestRow <= 1) {
  173. continue;
  174. }
  175. $total += $highestRow - 1;
  176. for ($j = 2; $j <= $highestRow; $j++) {
  177. $shortcode++;
  178. $arr = array(); //每条设备信息
  179. $arr['mac'] = strtoupper(trim($sheet->getCell("A" . $j)->getFormattedValue()));
  180. $arr['longitude'] = trim($sheet->getCell("B" . $j)->getFormattedValue());
  181. $arr['latitude'] = trim($sheet->getCell("C" . $j)->getFormattedValue());
  182. $arr['name'] = trim($sheet->getCell("D" . $j)->getFormattedValue());
  183. $arr['created_at']=time();
  184. $arr['shortcode']=$shortcode;
  185. array_push($data,$arr);
  186. }
  187. }
  188. // array_unique($data, SORT_REGULAR);
  189. // // var_dump($data);return CatchResponse::success();
  190. $count = $this->stationModel->limit(100)->insertAll($data);
  191. if ($count) {
  192. return CatchResponse::success('共' . $total . '条数据,成功' . $count . '条,失败' . $total-$count . '条');
  193. }
  194. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  195. }
  196. /**
  197. * 基站地图额
  198. * @time 2022年01月20日 10:09
  199. * @param Request $request
  200. */
  201. public function getMapList(Request $request)
  202. {
  203. return CatchResponse::paginate($this->stationModel->getMapList());
  204. }
  205. /**
  206. * 所有列表
  207. * @time 2022年01月20日 10:09
  208. * @param Request $request
  209. */
  210. public function getAllList(Request $request)
  211. {
  212. $params=$request->param();
  213. $start=$params['start']?$params['start']*4000:0;
  214. $limit=$params['limit']?:4000;
  215. $total=$this->stationModel->count();
  216. return CatchResponse::success(['list'=>$this->stationModel->getAllList($start,$limit),'total'=>$total]);
  217. }
  218. public function getAllListForTrans(Request $request) {
  219. $start=0;
  220. $limit=40000;
  221. $list=$this->stationModel->getAllList($start,$limit);
  222. $rows=[];
  223. foreach($list as $val){
  224. $item=['key'=>$val['mac'],'label'=>$val['name'] ];
  225. $rows[]=$item;
  226. }
  227. return CatchResponse::success($rows);
  228. }
  229. }