Station.php 9.5 KB

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