Station.php 11 KB

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