Station.php 7.5 KB

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