Station.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. <?php
  2. namespace catchAdmin\stations\controller;
  3. use catcher\base\CatchRequest as Request;
  4. use catcher\CatchResponse;
  5. use catcher\base\CatchController;
  6. use catchAdmin\stations\model\Station as stationModel;
  7. use think\facade\Db;
  8. use catcher\Utils;
  9. use catcher\library\excel\Excel;
  10. use catchAdmin\stations\excel\KqExport;
  11. use catchAdmin\stations\excel\DwExport;
  12. use catchAdmin\stations\excel\SkExport;
  13. class Station extends CatchController
  14. {
  15. protected $stationModel;
  16. public function __construct(StationModel $stationModel)
  17. {
  18. $this->stationModel = $stationModel;
  19. }
  20. /**
  21. * 列表
  22. * @time 2021年05月21日 15:17
  23. * @param Request $request
  24. */
  25. public function index(Request $request): \think\Response
  26. {
  27. $field = $request->get('field')?:'id';
  28. $order = $request->get('order')?:'desc';
  29. return CatchResponse::paginate($this->stationModel->getStationList($field,$order));
  30. }
  31. /**
  32. * 保存信息
  33. * @time 2021年05月21日 15:17
  34. * @param Request $request
  35. */
  36. public function save(Request $request): \think\Response
  37. {
  38. $data = $request->post();
  39. if (!$data['school_id']) {
  40. return CatchResponse::fail('请选择学校');
  41. }
  42. if (!$data['access_id']) {
  43. return CatchResponse::fail('请选择出入口');
  44. }
  45. if (!$data['orientation']) {
  46. return CatchResponse::fail('请选择基站朝向');
  47. }
  48. $data['station_mac'] = strtoupper(trim($data['station_mac']));
  49. if (!$data['station_mac']) {
  50. return CatchResponse::fail('请输入基站Mac');
  51. }
  52. $regex = "/^([A-F0-9]{12})$/";
  53. if (!preg_match($regex, $data['station_mac'])) {
  54. return CatchResponse::fail('基站Mac格式不正确');
  55. }
  56. if ($this->stationModel->where('station_mac', $data['station_mac'])->count()) {
  57. return CatchResponse::fail('该基站已存在');
  58. }
  59. $data['station_code'] = substr($data['station_mac'], -6);
  60. if (!trim($data['station_name'])) {
  61. return CatchResponse::fail('请输入基站名称');
  62. }
  63. if (!trim($data['longitude'])) {
  64. return CatchResponse::fail('请输入经度');
  65. }
  66. if (!trim($data['latitude'])) {
  67. return CatchResponse::fail('请输入纬度');
  68. }
  69. if (!trim($data['address'])) {
  70. return CatchResponse::fail('请输入安装地址');
  71. }
  72. $data['station_type'] = 1;
  73. $data['station_model'] = 2; // 1-G31W1,2-G23
  74. $city_info = Db::table('departments')->where('id', $data['school_id'])->field('province_id,city_id,district_id')->find();
  75. $data = array_merge($data, $city_info);
  76. return CatchResponse::success($this->stationModel->storeBy($data));
  77. }
  78. /**
  79. * 读取
  80. * @time 2021年05月21日 15:17
  81. * @param $id
  82. */
  83. public function read($id): \think\Response
  84. {
  85. return CatchResponse::success($this->stationModel->findBy($id));
  86. }
  87. /**
  88. * 更新
  89. * @time 2021年05月21日 15:17
  90. * @param Request $request
  91. * @param $id
  92. */
  93. public function update(Request $request, $id): \think\Response
  94. {
  95. $data = $request->post();
  96. if (!$data['school_id']) {
  97. return CatchResponse::fail('请选择学校');
  98. }
  99. if (!$data['access_id']) {
  100. return CatchResponse::fail('请选择出入口');
  101. }
  102. if (!$data['orientation']) {
  103. return CatchResponse::fail('请选择基站朝向');
  104. }
  105. $data['station_mac'] = strtoupper(trim($data['station_mac']));
  106. if (!$data['station_mac']) {
  107. return CatchResponse::fail('请输入基站Mac');
  108. }
  109. $regex = "/^([A-F0-9]{12})$/";
  110. if (!preg_match($regex, $data['station_mac'])) {
  111. return CatchResponse::fail('基站Mac格式不正确');
  112. }
  113. $gid = $this->stationModel->where('station_mac', $data['station_mac'])->value('id');
  114. if ($gid && $gid != $id) {
  115. return CatchResponse::fail('该基站已存在');
  116. }
  117. $data['station_code'] = substr($data['station_mac'], -6);
  118. if (!trim($data['station_name'])) {
  119. return CatchResponse::fail('请输入基站名称');
  120. }
  121. if (!trim($data['longitude'])) {
  122. return CatchResponse::fail('请输入经度');
  123. }
  124. if (!trim($data['latitude'])) {
  125. return CatchResponse::fail('请输入纬度');
  126. }
  127. if (!trim($data['address'])) {
  128. return CatchResponse::fail('请输入安装地址');
  129. }
  130. unset($data['creator_id']);
  131. //城市
  132. $city_info = Db::table('departments')->where('id', $data['school_id'])->field('province_id,city_id,district_id')->find();
  133. $data = array_merge($data, $city_info);
  134. return CatchResponse::success($this->stationModel->updateBy($id, $data));
  135. }
  136. /**
  137. * 删除
  138. * @time 2021年05月21日 15:17
  139. * @param $id
  140. */
  141. public function delete($id): \think\Response
  142. {
  143. return CatchResponse::success($this->stationModel->deleteBy($id, true));
  144. }
  145. /**
  146. * 导出考勤基站
  147. *
  148. * @time 2020年09月08日
  149. * @param Excel $excel
  150. * @param DeviceExport $deviceExport
  151. * @throws \PhpOffice\PhpSpreadsheet\Exception
  152. * @return \think\response\Json
  153. */
  154. public function kqexport(Excel $excel, KqExport $kqExport)
  155. {
  156. // var_dump(Utils::publicPath('export/students'));导出路径
  157. return CatchResponse::success($excel->save($kqExport, Utils::publicPath('export/kqstations'), 'local', '考勤基站'));
  158. }
  159. /**
  160. * 导出定位基站
  161. *
  162. * @time 2020年09月08日
  163. * @param Excel $excel
  164. * @param DeviceExport $deviceExport
  165. * @throws \PhpOffice\PhpSpreadsheet\Exception
  166. * @return \think\response\Json
  167. */
  168. public function dwexport(Excel $excel, DwExport $dwExport)
  169. {
  170. // var_dump(Utils::publicPath('export/students'));导出路径
  171. return CatchResponse::success($excel->save($dwExport, Utils::publicPath('export/dwstations'), 'local', '定位基站'));
  172. }
  173. /**
  174. * 导出室内插座基站
  175. *
  176. * @time 2020年09月08日
  177. * @param Excel $excel
  178. * @param DeviceExport $deviceExport
  179. * @throws \PhpOffice\PhpSpreadsheet\Exception
  180. * @return \think\response\Json
  181. */
  182. public function skexport(Excel $excel, SkExport $skExport)
  183. {
  184. // var_dump(Utils::publicPath('export/students'));//导出路径
  185. return CatchResponse::success($excel->save($skExport, Utils::publicPath('export/skstations'), 'local', '室内插座基站'));
  186. }
  187. /**
  188. * 更新考勤基站配置
  189. * @time 2021年05月21日 15:17
  190. * @param Request $request
  191. * @param $id
  192. */
  193. public function updateKqStationConfig(Request $request, $id): \think\Response
  194. {
  195. $data = $request->post();
  196. $config_list=$data['config_list'];
  197. if($config_list['IS_SLAVE']){
  198. $config_list['IS_SLAVE']=1;
  199. }else{
  200. $config_list['IS_SLAVE']=0;
  201. }
  202. $save_data = array(
  203. 'in_station_mac' => strtoupper($config_list['Card_INMAC']),
  204. 'out_station_mac' => strtoupper($config_list['Card_OUTMAC']),
  205. 'config_list' => json_encode($config_list),
  206. 'updated_at' =>time()
  207. );
  208. return CatchResponse::success( $this->stationModel->where('id', $id) ->update($save_data));
  209. // return CatchResponse::success( $this->stationModel->updateBy($id, $save_data));
  210. }
  211. /**
  212. * 获取发送主机信息
  213. * @time 2021年05月21日 15:17
  214. * @param $id
  215. */
  216. public function getSendHostInfo($id){
  217. $info = $this->stationModel->where('id', $id) ->field('station_version,station_mac')->find();
  218. if(empty($info)){
  219. return array('success'=>false,'message'=>'未获取到终端信息');
  220. }
  221. if(!$info['station_mac']){
  222. return array('success'=>false,'message'=>'无终端版Imei号');
  223. }
  224. if(!$info['station_version']){
  225. return array('success'=>false,'message'=>'无终端版本号');
  226. }
  227. $host = Db::table('sys_config')->where('type','station_config')->where('field','kq_station_host')->value('fieldValue');
  228. if(!$host){
  229. $host='127.0.0.1';
  230. }
  231. if(substr($info['station_version'],-1) == 'G'){
  232. $port = 10242;
  233. }else{
  234. $port = 10241;
  235. }
  236. $host_info = array(
  237. 'imei' => $info['station_mac'],
  238. 'host' => $host,
  239. 'port' => $port,
  240. );
  241. return array('success'=>true, 'message'=>'获取成功', 'data'=>$host_info);
  242. }
  243. /**
  244. * 下发IP配置
  245. * @time 2021年05月21日 15:17
  246. * @param Request $request
  247. * @param $id
  248. */
  249. public function sendIpConfig(Request $request, $id): \think\Response
  250. {
  251. $data = $request->post();
  252. $config_list=$data['config_list'];
  253. if($config_list['IS_SLAVE']){
  254. $config_list['IS_SLAVE']=1;
  255. }else{
  256. $config_list['IS_SLAVE']=0;
  257. }
  258. $save_data = array(
  259. 'in_station_mac' => strtoupper($config_list['Card_INMAC']),
  260. 'out_station_mac' => strtoupper($config_list['Card_OUTMAC']),
  261. 'config_list' => json_encode($config_list),
  262. 'updated_at' =>time()
  263. );
  264. // $res=$this->stationModel->updateBy($id, $save_data);
  265. // var_dump($res);
  266. $result=$this->getSendHostInfo($id);
  267. if(!$result['success']){
  268. CatchResponse::fail($result['message']);
  269. }
  270. $host_info = $result['data'];
  271. $socket = new \tcpclient\TcpClient( $host_info['host'],$host_info['port']);
  272. $cmd = array(
  273. "method" => "configRfid",
  274. "imei" => $host_info['imei'],
  275. 'ip' => $config_list['LOCAL_IP'],
  276. 'mask' => $config_list['LOCAL_MASK'],
  277. 'gateway' => $config_list['LOCAL_GATEWAY'],
  278. 'reportIp' => $config_list['REPORT_IP'],
  279. 'master' => $config_list['IS_SLAVE'],
  280. );
  281. $res = $socket->send(json_encode($cmd));
  282. if(!$res['success']){
  283. return CatchResponse::fail($res['message']);
  284. }
  285. $res=$this->stationModel->where('id', $id)->update($save_data);
  286. if(!$res){
  287. CatchResponse::fail('保存配置失败');
  288. }
  289. return CatchResponse::success('下发成功');
  290. }
  291. /**
  292. * 终端控制指令
  293. * @time 2021年05月21日 15:17
  294. * @param Request $request
  295. * @param $id
  296. */
  297. public function controlConfig(Request $request, $id): \think\Response
  298. {
  299. $data = $request->post();
  300. $result=$this->getSendHostInfo($id);
  301. if(!$result['success']){
  302. CatchResponse::fail($result['message']);
  303. }
  304. $host_info = $result['data'];
  305. $socket = new \tcpclient\TcpClient( $host_info['host'],$host_info['port']);
  306. $cmd = array(
  307. "method" =>$data['command'],
  308. "imei" => $host_info['imei'],
  309. );
  310. if($data['command']=='upgrade'){
  311. $cmd['url']="no upgrade url";
  312. $cmd['version']="empty";
  313. }
  314. $res = $socket->send(json_encode($cmd));
  315. if(!$res['success']){
  316. return CatchResponse::fail($res['message']);
  317. }
  318. return CatchResponse::success('下发成功');
  319. }
  320. }