IndoorStation.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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 catchAdmin\school\model\KqBuilding as BuildingModel;
  8. use catcher\Utils;
  9. use catcher\library\excel\Excel;
  10. use catchAdmin\stations\excel\SkExport;
  11. class IndoorStation extends CatchController
  12. {
  13. protected $stationModel;
  14. protected $buildingModel;
  15. public function __construct(StationModel $stationModel, BuildingModel $buildingModel)
  16. {
  17. $this->stationModel = $stationModel;
  18. $this->buildingModel = $buildingModel;
  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. */
  34. protected function checkSaveData($post)
  35. {
  36. if (!isset($post['station_mac']) || !$post['station_mac']) {
  37. return ['success' => false, 'message' =>'设备MAC不能为空'];
  38. }
  39. if (!$this->stationModel->checkStationMacFormat($post['station_mac'])) {
  40. return ['success' => false, 'message' =>'设备Mac格式不正确'];
  41. }
  42. if ($this->stationModel->isStationMacDuplicate($post['station_mac'])) {
  43. return ['success' => false, 'message' =>'设备MAC已存在'];
  44. }
  45. if (!isset($post['station_name']) || !$post['station_name']) {
  46. return ['success' => false, 'message' =>'设备名称不能为空'];
  47. }
  48. if(!trim($post['coordinate_x'])){
  49. return ['success' => false, 'message' =>'未获取到横向坐标'];
  50. }
  51. if(!trim($post['coordinate_y'])){
  52. return ['success' => false, 'message' =>'未获取到纵向坐标'];
  53. }
  54. if (!is_numeric($post['coordinate_x']) || !is_numeric($post['coordinate_y'])) {
  55. return CatchResponse::fail('坐标必须是数字');
  56. }
  57. // if (!isset($post['room_no']) || !$post['room_no']) {
  58. // return ['success' => false, 'message' =>'房间号不能为空'];
  59. // }
  60. if (!isset($post['school_id']) || !$post['school_id']) {
  61. return ['success' => false, 'message' =>'未获取到所属学校'];
  62. }
  63. if (!isset($post['building_id']) || !$post['building_id']) {
  64. return ['success' => false, 'message' =>'未获取到所属建筑'];
  65. }
  66. if (!isset($post['floor_id']) || !$post['floor_id']) {
  67. return ['success' => false, 'message' =>'未获取到所属楼层'];
  68. }
  69. }
  70. /**
  71. * 保存信息
  72. * @time 2021年05月21日 15:17
  73. * @param Request $request
  74. */
  75. public function save(Request $request): \think\Response
  76. {
  77. $post = $request->post();
  78. // 检测字段
  79. $res = $this->checkSaveData($post);
  80. if ($res && !$res['success']) {
  81. return CatchResponse::fail($res['message']);
  82. }
  83. $post['station_mac'] = strtoupper(trim($post['station_mac']));
  84. $post['station_name'] = trim($post['station_name']);
  85. $post['station_code'] = substr($post['station_mac'], -6);
  86. // 是否需要检测房间号重复,一个房间可装多台?
  87. // 省市区随建筑
  88. $buildingInfo = $this->buildingModel->where('id', $post['building_id'])->find();
  89. if (empty($buildingInfo)) {
  90. return CatchResponse::fail('获取建筑信息失败');
  91. }
  92. $post['province_id'] = $buildingInfo['province_id'];
  93. $post['city_id'] = $buildingInfo['city_id'];
  94. $post['district_id'] = $buildingInfo['district_id'];
  95. $post['longitude'] = $buildingInfo['longitude'];
  96. $post['latitude'] = $buildingInfo['latitude'];
  97. $post['station_type'] = 3; // 1-考勤,2-定位,3-室内(插座)
  98. $post['station_model'] = 1; // 1-G31W1,2-G23
  99. return CatchResponse::success($this->stationModel->storeBy($post), '修改成功');
  100. }
  101. /**
  102. * 读取
  103. * @time 2021年05月21日 15:17
  104. * @param $id
  105. */
  106. public function read($id): \think\Response
  107. {
  108. return CatchResponse::success($this->stationModel->findBy($id));
  109. }
  110. /**
  111. * 更新
  112. * @time 2021年05月21日 15:17
  113. * @param Request $request
  114. * @param $id
  115. */
  116. public function update(Request $request, $id): \think\Response
  117. {
  118. $post = $request->post();
  119. if (!isset($post['station_mac']) || !$post['station_mac']) {
  120. return CatchResponse::fail('设备MAC不能为空');
  121. }
  122. if (!$this->stationModel->checkStationMacFormat($post['station_mac'])) {
  123. return CatchResponse::fail('设备Mac格式不正确');
  124. }
  125. if ($this->stationModel->isStationMacDuplicate($post['station_mac'], $id)) {
  126. return CatchResponse::fail('设备MAC已存在');
  127. }
  128. if(!trim($post['station_name'])){
  129. return CatchResponse::fail('设备名称不能为空');
  130. }
  131. if(!trim($post['coordinate_x'])){
  132. return CatchResponse::fail('未获取到横向坐标');
  133. }
  134. if(!trim($post['coordinate_y'])){
  135. return CatchResponse::fail('未获取到纵向坐标');
  136. }
  137. if (!is_numeric($post['coordinate_x']) || !is_numeric($post['coordinate_y'])) {
  138. return CatchResponse::fail('坐标必须是数字');
  139. }
  140. //基站Mac校验
  141. $post['station_mac'] = strtoupper(trim($post['station_mac']));
  142. $post['station_code'] = substr($post['station_mac'], -6);
  143. return CatchResponse::success($this->stationModel->updateBy($id, $post), '修改成功');
  144. }
  145. /**
  146. * 删除
  147. * @time 2021年05月21日 15:17
  148. * @param $id
  149. */
  150. public function delete($id): \think\Response
  151. {
  152. return CatchResponse::success($this->stationModel->deleteBy($id,true));
  153. }
  154. /**
  155. * 更新坐标
  156. */
  157. public function updateLocation(Request $request, $id): \think\Response
  158. {
  159. $coor_x = $request->post('coordinate_x');
  160. $coor_y = $request->post('coordinate_y');
  161. if(!trim($coor_x)){
  162. return CatchResponse::fail('未获取到横向坐标');
  163. }
  164. if(!trim($coor_y)){
  165. return CatchResponse::fail('未获取到纵向坐标');
  166. }
  167. $save_data = [
  168. 'coordinate_x' => $coor_x,
  169. 'coordinate_y' => $coor_y,
  170. ];
  171. return CatchResponse::success($this->stationModel->updateBy($id, $save_data), '修改成功');
  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 export(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. }