Station.php 8.3 KB

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