Station.php 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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 catchAdmin\device\model\RfRecord as rfRecordModel;
  8. use catchAdmin\device\model\StationPhoto;
  9. use catcher\Utils;
  10. use catcher\library\excel\Excel;
  11. use PhpOffice\PhpSpreadsheet\IOFactory;
  12. use catchAdmin\device\excel\StationExport;
  13. use think\facade\Db;
  14. use PDO;
  15. class Station extends CatchController
  16. {
  17. protected $stationModel;
  18. protected $rfRecordModel;
  19. public function __construct(StationModel $stationModel,rfRecordModel $rfRecordModel)
  20. {
  21. $this->stationModel = $stationModel;
  22. $this->rfRecordModel = $rfRecordModel;
  23. }
  24. /**
  25. * 列表
  26. * @time 2022年01月20日 10:09
  27. * @param Request $request
  28. */
  29. public function index(Request $request)
  30. {
  31. $field = $request->get('field')?:'id';
  32. $order = $request->get('order')?:'desc';
  33. $where=[];
  34. $param=$request->param();
  35. if($param['shortcode']){
  36. $where[]=['a.DEVICE_CODE','like','%'.$param['shortcode'].'%'];
  37. }
  38. if($param['name']){
  39. $where[]=['a.DEVICE_NAME','like','%'.$param['name'].'%'];
  40. }
  41. return CatchResponse::paginate($this->stationModel->getStationList($field,$order,$where));
  42. // $param=$request->param();
  43. // // var_dump($param);
  44. // $cond=[];
  45. // if($param['shortcode']){
  46. // $cond['DEVICE_CODE']=['like',$param['shortcode']];
  47. // }
  48. // if($param['name']){
  49. // $param['name'] = mb_convert_encoding($param['name'], 'GBK','UTF-8');
  50. // $cond['DEVICE_NAME']=['like',$param['name']];
  51. // }
  52. // $count=queryOracleCount('DSSC2.ADM_DEV',$cond);
  53. // $cond['page']=isset($param['page'])?$param['page']:1;
  54. // $cond['limit']=isset($param['limit'])?$param['limit']:10;
  55. // $rows=queryOracleSelect('DSSC2.ADM_DEV',$cond,'a.ID,a.IS_ONLINE,a.LOGIN_NAME,a.DEVICE_CODE,a.DEVICE_NAME,a.OWNER_CODE,a.DEVICE_IP,a.DEVICE_PORT,to_char(a.UPDATE_DATE,\'yyyy-mm-dd hh24:mi:ss\') UPDATE_DATE');
  56. // foreach($rows as &$val){
  57. // $val['DEVICE_NAME'] = mb_convert_encoding($val['DEVICE_NAME'], 'UTF-8', 'GBK');
  58. // $val['IS_ONLINE_TEXT']=$val['IS_ONLINE']?'在线':'离线';
  59. // // $val['UPDATE_DATE'] = mb_convert_encoding($val['UPDATE_DATE'], 'UTF-8', 'GBK');
  60. // // $val['CREATE_DATE'] = mb_convert_encoding($val['CREATE_DATE'], 'UTF-8', 'GBK');
  61. // $findCond=[
  62. // 'DEVICE_CODE'=>['=',$val['DEVICE_CODE']]
  63. // ];
  64. // $info=queryOracleFind('DSSC2.ADM_DEV_RFID_CHN',$findCond);
  65. // $val['longitude']=$info['GPS_X'];
  66. // $val['latitude']=$info['GPS_Y'];
  67. // }
  68. // $response=[
  69. // 'code'=>10000,
  70. // 'message'=>'查询成功',
  71. // 'count'=>$count,
  72. // 'data'=>$rows,
  73. // 'current'=>isset($param['page'])?(int)$param['page']:1,
  74. // 'limit'=>isset($param['limit'])?(int)$param['limit']:10,
  75. // ];
  76. // return $response;
  77. }
  78. public function getdeviceListByStation(Request $request){
  79. $params=$request->param();
  80. if(!$params['station_code']){
  81. return CatchResponse::success('');
  82. }
  83. $cond=[];
  84. if($params['station_code']){
  85. $cond['RF_ID']=['=',$params['station_code']];
  86. }
  87. $start_time = date('Y-m-d 00:00:00',time());
  88. $end_time = date('Y-m-d 23:59:59',time());
  89. if(isset($params['timeRange']) && $params['timeRange'] != ''){
  90. $start_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][0]));
  91. $end_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][1]));
  92. $cond['RF_DATE']=['timeRange',$start_time,$end_time];
  93. }
  94. $count=queryOracleCount('DSSC2.W_DW_RF_RECORD',$cond);
  95. $cond['page']=isset($param['page'])?$param['page']:1;
  96. $cond['limit']=isset($param['limit'])?$param['limit']:10;
  97. $rows=queryOracleSelect('DSSC2.W_DW_RF_RECORD',$cond,'a.RF_FLAGID,a.RF_STAT,to_char(a.RF_DATE,\'yyyy-mm-dd hh24:mi:ss\') RF_DATE');
  98. foreach($rows as &$val){
  99. //状态: 0- 未知,1 - 进入,2 - 离开
  100. if($val['RF_STAT']==1){
  101. $val['RF_STAT_TEXT']='进入';
  102. }elseif($val['RF_STAT']==2){
  103. $val['RF_STAT_TEXT']='离开';
  104. }else{
  105. $val['RF_STAT_TEXT']='未知';
  106. }
  107. }
  108. $response=[
  109. 'code'=>10000,
  110. 'message'=>'查询成功',
  111. 'count'=>$count,
  112. 'data'=>$rows,
  113. 'current'=>isset($params['page'])?(int)$params['page']:1,
  114. 'limit'=>isset($params['limit'])?(int)$params['limit']:10,
  115. ];
  116. return $response;
  117. // $cond=[];
  118. // $params=$request->param();
  119. // if(!$params['station_code']){
  120. // return CatchResponse::success('');
  121. // }
  122. // if($params['station_code']){
  123. // $cond[]=['RF_ID','=',$params['station_code']];
  124. // }
  125. // $start_time = date('Y-m-d 00:00:00',time());
  126. // $end_time = date('Y-m-d 23:59:59',time());
  127. // if(isset($params['timeRange']) && $params['timeRange'] != ''){
  128. // $start_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][0]));
  129. // $end_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][1]));
  130. // $cond[]=['RF_DATE','between',[$start_time,$end_time]];
  131. // }
  132. // $list=$this->rfRecordModel->getList($cond);
  133. // return CatchResponse::paginate($list);
  134. }
  135. /**
  136. * 保存信息
  137. * @time 2022年01月20日 10:09
  138. * @param Request $request
  139. */
  140. public function save(Request $request) : \think\Response
  141. {
  142. $data = $request->post();
  143. //判断参数
  144. if(!$data['department_id']){
  145. return CatchResponse::fail('请选择所属部门');
  146. }
  147. if(!$data['model']){
  148. return CatchResponse::fail('请选择基站型号');
  149. }
  150. $data['mac'] = trim($data['mac']);
  151. if(!$data['mac']){
  152. return CatchResponse::fail('请输入基站Mac');
  153. }
  154. if (!preg_match('/^[0-9a-zA-Z]{6,15}$/i',$data['mac'])){
  155. return CatchResponse::fail('基站为6-15位字母数字');
  156. }
  157. //基站简码
  158. $data['shortcode'] = substr($data['mac'],-6,6);
  159. //校验重复
  160. if($this->stationModel->where('mac',$data['mac'])->count()){
  161. return CatchResponse::fail('该基站已存在');
  162. }
  163. //开启事务
  164. Db::startTrans();
  165. //开局状态
  166. if($data['type'] == 1){
  167. $data['open_status'] = 0;
  168. }else{
  169. $data['open_status'] = 1;
  170. //开局时间
  171. $data['open_time'] = date('Y-m-d H:i:s');
  172. //开局员工
  173. $data['open_user_id'] = $data['creator_id'];
  174. }
  175. $station_id = $this->stationModel->storeBy($data);
  176. if(!$station_id){
  177. return CatchResponse::fail('添加失败');
  178. }
  179. //基站图片
  180. if(isset($data['install_photo'])){
  181. $photo = array(
  182. 'url'=>$data['install_photo'],
  183. 'type'=>'station',
  184. 'station_id'=>$station_id,
  185. 'creator_id'=>$data['creator_id']
  186. );
  187. $res = (new StationPhoto())->storeBy($photo);
  188. if(!$res){
  189. Db::rollback();
  190. return CatchResponse::fail('添加失败');
  191. }
  192. }
  193. Db::commit();
  194. return CatchResponse::success();
  195. }
  196. /**
  197. * 读取
  198. * @time 2022年01月20日 10:09
  199. * @param $id
  200. */
  201. public function read($id) : \think\Response
  202. {
  203. return CatchResponse::success($this->stationModel->findBy($id));
  204. }
  205. /**
  206. * 更新
  207. * @time 2022年01月20日 10:09
  208. * @param Request $request
  209. * @param $id
  210. */
  211. public function update(Request $request, $id) : \think\Response
  212. {
  213. return CatchResponse::success($this->stationModel->updateBy($id, $request->post()));
  214. }
  215. /**
  216. * 删除
  217. * @time 2022年01月20日 10:09
  218. * @param $id
  219. */
  220. public function delete($id) : \think\Response
  221. {
  222. return CatchResponse::success($this->stationModel->deleteBy($id,true));
  223. }
  224. /**
  225. * 导出
  226. *
  227. * @time 2022年02月15日
  228. * @param Excel $excel
  229. * @param StationExport $stationExport
  230. * @throws \PhpOffice\PhpSpreadsheet\Exception
  231. * @return \think\response\Json
  232. */
  233. public function export_station(Excel $excel, StationExport $StationExport)
  234. {
  235. // var_dump(Utils::publicPath('export/users'));//导出路径
  236. return CatchResponse::success($excel->save($StationExport, Utils::publicPath('export/stations'), 'local', '基站列表'));
  237. }
  238. /**
  239. * 导入设备
  240. *
  241. * @time 2022年02月15日
  242. * @param Excel $excel
  243. * @param DeviceExport $deviceExport
  244. * @throws \PhpOffice\PhpSpreadsheet\Exception
  245. * @return \think\response\Json
  246. */
  247. public function import_station(Request $request)
  248. {
  249. $url = $request->post('url');
  250. if (!$url) {
  251. return CatchResponse::fail('请上传文件');
  252. }
  253. $depart_id = $request->post('depart_id');
  254. if (!$depart_id) {
  255. return CatchResponse::fail('请选择部门');
  256. }
  257. $model_id = $request->post('model_id');
  258. if (!$model_id) {
  259. return CatchResponse::fail('请选择型号');
  260. }
  261. $creator_id = $request->post('creator_id');
  262. //解析地址
  263. $parse_url = parse_url($url)['path'];
  264. //载入excel表格
  265. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  266. // var_dump($objPHPExcel);
  267. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  268. // $nameArr = $objPHPExcel->getSheetNames();
  269. // var_dump($nameArr);
  270. //获取表的数量
  271. $sheetCount = $objPHPExcel->getSheetCount();
  272. $fail = 0; //失败条数
  273. $success = 0; //成功条数
  274. $total = 0; //总共设备数
  275. $data = []; //基站数据
  276. //循环读取每一张表
  277. for ($index = 0; $index < $sheetCount; $index++) {
  278. //设置当前要读取的表
  279. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  280. // var_dump($sheet);exit;
  281. $highestRow = $sheet->getHighestRow(); // 取得总行数
  282. // var_dump($highestRow);
  283. if ($highestRow <= 2) {
  284. continue;
  285. }
  286. $total += $highestRow - 2;
  287. for ($j = 3; $j <= $highestRow; $j++) {
  288. $arr = array(); //每条基站信息
  289. $arr['mac'] = trim($sheet->getCell("A" . $j)->getFormattedValue()); //imei
  290. if ($arr['mac'] && mb_strlen($arr['mac']) != 12) {
  291. $fail++;
  292. $msg = '导入基站:' . $arr['mac'] . '失败:mac编号格式不正确';
  293. $this->importFailLog($msg);
  294. continue;
  295. }
  296. if ($arr['mac']) {
  297. $isHas = $this->stationModel->where('mac',$arr['mac'])->count();
  298. if($isHas){
  299. $fail++;
  300. $msg = '导入基站:' . $arr['mac'] . '失败:mac编号已存在';
  301. $this->importFailLog($msg);
  302. continue;
  303. }
  304. }
  305. $arr['remark'] = trim($sheet->getCell("B" . $j)->getFormattedValue()); //备注
  306. $arr['department_id'] = $depart_id;
  307. $arr['shortcode'] = substr($arr['mac'],-6);
  308. $arr['creator_id'] = $creator_id;
  309. $arr['model'] = $model_id;
  310. $arr['name'] = '基站'.substr($arr['mac'],-4);
  311. $arr['created_at'] = time();
  312. $arr['updated_at'] = time();
  313. array_push($data,$arr);
  314. }
  315. }
  316. array_unique($data, SORT_REGULAR);
  317. // var_dump($data);return CatchResponse::success();
  318. $count = $this->stationModel->limit(100)->insertAll($data);
  319. if ($success = $count) {
  320. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  321. }
  322. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  323. }
  324. /**
  325. * 导入设备失败日志
  326. */
  327. public function importFailLog($msg)
  328. {
  329. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/import_stations_fail.log";
  330. $folder = dirname($file);
  331. if (!is_dir($folder)) {
  332. mkdir($folder, 0777, true);
  333. }
  334. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  335. }
  336. // ┏┛ ┻━━━━━┛ ┻┓
  337. // ┃       ┃
  338. // ┃   ━   ┃
  339. // ┃ ┳┛  ┗┳ ┃
  340. // ┃       ┃
  341. // ┃   ┻   ┃
  342. // ┃       ┃
  343. // ┗━┓   ┏━━━┛
  344. // ┃   ┃ 神兽保佑
  345. // ┃   ┃ 代码无BUG!
  346. // ┃   ┗━━━━━━━━━┓
  347. // ┃        ┣┓
  348. // ┃     ┏┛
  349. // ┗━┓ ┓ ┏━━━┳ ┓ ┏━┛
  350. // ┃ ┫ ┫ ┃ ┫ ┫
  351. // ┗━┻━┛ ┗━┻━┛
  352. }