Station.php 7.9 KB

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