Station.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  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. $response=[
  99. 'code'=>10000,
  100. 'message'=>'查询成功',
  101. 'count'=>$count,
  102. 'data'=>$rows,
  103. 'current'=>isset($params['page'])?(int)$params['page']:1,
  104. 'limit'=>isset($params['limit'])?(int)$params['limit']:10,
  105. ];
  106. return $response;
  107. // $cond=[];
  108. // $params=$request->param();
  109. // if(!$params['station_code']){
  110. // return CatchResponse::success('');
  111. // }
  112. // if($params['station_code']){
  113. // $cond[]=['RF_ID','=',$params['station_code']];
  114. // }
  115. // $start_time = date('Y-m-d 00:00:00',time());
  116. // $end_time = date('Y-m-d 23:59:59',time());
  117. // if(isset($params['timeRange']) && $params['timeRange'] != ''){
  118. // $start_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][0]));
  119. // $end_time=date('Y-m-d H:i:s',strtotime($params['timeRange'][1]));
  120. // $cond[]=['RF_DATE','between',[$start_time,$end_time]];
  121. // }
  122. // $list=$this->rfRecordModel->getList($cond);
  123. // return CatchResponse::paginate($list);
  124. }
  125. /**
  126. * 保存信息
  127. * @time 2022年01月20日 10:09
  128. * @param Request $request
  129. */
  130. public function save(Request $request) : \think\Response
  131. {
  132. $data = $request->post();
  133. //判断参数
  134. if(!$data['department_id']){
  135. return CatchResponse::fail('请选择所属部门');
  136. }
  137. if(!$data['model']){
  138. return CatchResponse::fail('请选择基站型号');
  139. }
  140. $data['mac'] = trim($data['mac']);
  141. if(!$data['mac']){
  142. return CatchResponse::fail('请输入基站Mac');
  143. }
  144. if (!preg_match('/^[0-9a-zA-Z]{6,15}$/i',$data['mac'])){
  145. return CatchResponse::fail('基站为6-15位字母数字');
  146. }
  147. //基站简码
  148. $data['shortcode'] = substr($data['mac'],-6,6);
  149. //校验重复
  150. if($this->stationModel->where('mac',$data['mac'])->count()){
  151. return CatchResponse::fail('该基站已存在');
  152. }
  153. //开启事务
  154. Db::startTrans();
  155. //开局状态
  156. if($data['type'] == 1){
  157. $data['open_status'] = 0;
  158. }else{
  159. $data['open_status'] = 1;
  160. //开局时间
  161. $data['open_time'] = date('Y-m-d H:i:s');
  162. //开局员工
  163. $data['open_user_id'] = $data['creator_id'];
  164. }
  165. $station_id = $this->stationModel->storeBy($data);
  166. if(!$station_id){
  167. return CatchResponse::fail('添加失败');
  168. }
  169. //基站图片
  170. if(isset($data['install_photo'])){
  171. $photo = array(
  172. 'url'=>$data['install_photo'],
  173. 'type'=>'station',
  174. 'station_id'=>$station_id,
  175. 'creator_id'=>$data['creator_id']
  176. );
  177. $res = (new StationPhoto())->storeBy($photo);
  178. if(!$res){
  179. Db::rollback();
  180. return CatchResponse::fail('添加失败');
  181. }
  182. }
  183. Db::commit();
  184. return CatchResponse::success();
  185. }
  186. /**
  187. * 读取
  188. * @time 2022年01月20日 10:09
  189. * @param $id
  190. */
  191. public function read($id) : \think\Response
  192. {
  193. return CatchResponse::success($this->stationModel->findBy($id));
  194. }
  195. /**
  196. * 更新
  197. * @time 2022年01月20日 10:09
  198. * @param Request $request
  199. * @param $id
  200. */
  201. public function update(Request $request, $id) : \think\Response
  202. {
  203. return CatchResponse::success($this->stationModel->updateBy($id, $request->post()));
  204. }
  205. /**
  206. * 删除
  207. * @time 2022年01月20日 10:09
  208. * @param $id
  209. */
  210. public function delete($id) : \think\Response
  211. {
  212. return CatchResponse::success($this->stationModel->deleteBy($id,true));
  213. }
  214. /**
  215. * 导出
  216. *
  217. * @time 2022年02月15日
  218. * @param Excel $excel
  219. * @param StationExport $stationExport
  220. * @throws \PhpOffice\PhpSpreadsheet\Exception
  221. * @return \think\response\Json
  222. */
  223. public function export_station(Excel $excel, StationExport $StationExport)
  224. {
  225. // var_dump(Utils::publicPath('export/users'));//导出路径
  226. return CatchResponse::success($excel->save($StationExport, Utils::publicPath('export/stations'), 'local', '基站列表'));
  227. }
  228. /**
  229. * 导入设备
  230. *
  231. * @time 2022年02月15日
  232. * @param Excel $excel
  233. * @param DeviceExport $deviceExport
  234. * @throws \PhpOffice\PhpSpreadsheet\Exception
  235. * @return \think\response\Json
  236. */
  237. public function import_station(Request $request)
  238. {
  239. $url = $request->post('url');
  240. if (!$url) {
  241. return CatchResponse::fail('请上传文件');
  242. }
  243. $depart_id = $request->post('depart_id');
  244. if (!$depart_id) {
  245. return CatchResponse::fail('请选择部门');
  246. }
  247. $model_id = $request->post('model_id');
  248. if (!$model_id) {
  249. return CatchResponse::fail('请选择型号');
  250. }
  251. $creator_id = $request->post('creator_id');
  252. //解析地址
  253. $parse_url = parse_url($url)['path'];
  254. //载入excel表格
  255. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  256. // var_dump($objPHPExcel);
  257. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  258. // $nameArr = $objPHPExcel->getSheetNames();
  259. // var_dump($nameArr);
  260. //获取表的数量
  261. $sheetCount = $objPHPExcel->getSheetCount();
  262. $fail = 0; //失败条数
  263. $success = 0; //成功条数
  264. $total = 0; //总共设备数
  265. $data = []; //基站数据
  266. //循环读取每一张表
  267. for ($index = 0; $index < $sheetCount; $index++) {
  268. //设置当前要读取的表
  269. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  270. // var_dump($sheet);exit;
  271. $highestRow = $sheet->getHighestRow(); // 取得总行数
  272. // var_dump($highestRow);
  273. if ($highestRow <= 2) {
  274. continue;
  275. }
  276. $total += $highestRow - 2;
  277. for ($j = 3; $j <= $highestRow; $j++) {
  278. $arr = array(); //每条基站信息
  279. $arr['mac'] = trim($sheet->getCell("A" . $j)->getFormattedValue()); //imei
  280. if ($arr['mac'] && mb_strlen($arr['mac']) != 12) {
  281. $fail++;
  282. $msg = '导入基站:' . $arr['mac'] . '失败:mac编号格式不正确';
  283. $this->importFailLog($msg);
  284. continue;
  285. }
  286. if ($arr['mac']) {
  287. $isHas = $this->stationModel->where('mac',$arr['mac'])->count();
  288. if($isHas){
  289. $fail++;
  290. $msg = '导入基站:' . $arr['mac'] . '失败:mac编号已存在';
  291. $this->importFailLog($msg);
  292. continue;
  293. }
  294. }
  295. $arr['remark'] = trim($sheet->getCell("B" . $j)->getFormattedValue()); //备注
  296. $arr['department_id'] = $depart_id;
  297. $arr['shortcode'] = substr($arr['mac'],-6);
  298. $arr['creator_id'] = $creator_id;
  299. $arr['model'] = $model_id;
  300. $arr['name'] = '基站'.substr($arr['mac'],-4);
  301. $arr['created_at'] = time();
  302. $arr['updated_at'] = time();
  303. array_push($data,$arr);
  304. }
  305. }
  306. array_unique($data, SORT_REGULAR);
  307. // var_dump($data);return CatchResponse::success();
  308. $count = $this->stationModel->limit(100)->insertAll($data);
  309. if ($success = $count) {
  310. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  311. }
  312. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  313. }
  314. /**
  315. * 导入设备失败日志
  316. */
  317. public function importFailLog($msg)
  318. {
  319. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/import_stations_fail.log";
  320. $folder = dirname($file);
  321. if (!is_dir($folder)) {
  322. mkdir($folder, 0777, true);
  323. }
  324. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  325. }
  326. // ┏┛ ┻━━━━━┛ ┻┓
  327. // ┃       ┃
  328. // ┃   ━   ┃
  329. // ┃ ┳┛  ┗┳ ┃
  330. // ┃       ┃
  331. // ┃   ┻   ┃
  332. // ┃       ┃
  333. // ┗━┓   ┏━━━┛
  334. // ┃   ┃ 神兽保佑
  335. // ┃   ┃ 代码无BUG!
  336. // ┃   ┗━━━━━━━━━┓
  337. // ┃        ┣┓
  338. // ┃     ┏┛
  339. // ┗━┓ ┓ ┏━━━┳ ┓ ┏━┛
  340. // ┃ ┫ ┫ ┃ ┫ ┫
  341. // ┗━┻━┛ ┗━┻━┛
  342. }