DwStation.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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\wechat\library\messages\events\Location;
  8. use \think\facade\Db;
  9. use catcher\Utils;
  10. use catcher\library\excel\Excel;
  11. use catchAdmin\stations\excel\DwExport;
  12. class DwStation extends CatchController
  13. {
  14. protected $stationModel;
  15. public function __construct(StationModel $stationModel)
  16. {
  17. $this->stationModel = $stationModel;
  18. }
  19. /**
  20. * 列表
  21. * @time 2021年05月21日 15:17
  22. * @param Request $request
  23. */
  24. public function index(Request $request): \think\Response
  25. {
  26. $field = $request->get('field')?:'id';
  27. $order = $request->get('order')?:'desc';
  28. return CatchResponse::paginate($this->stationModel->getStationList($field,$order));
  29. }
  30. /**
  31. * 保存信息
  32. * @time 2021年05月21日 15:17
  33. * @param Request $request
  34. */
  35. public function save(Request $request): \think\Response
  36. {
  37. $data = $request->post();
  38. $location = explode(',', $data['area_id']);
  39. if(empty($location)){
  40. return CatchResponse::fail('请选择所属区域');
  41. }
  42. $dis = Db::table('areas')->where('id',end($location))->value('area_type');
  43. if ($dis != 'county') {
  44. return CatchResponse::fail('区域请精确到县区');
  45. }
  46. if(count($location) == 3){
  47. $data['province_id'] = $location[0];
  48. $data['city_id'] = $location[1];
  49. $data['district_id'] = $location[2];
  50. }
  51. if(count($location) == 2){
  52. $data['city_id'] = $location[0];
  53. $data['district_id'] = $location[1];
  54. $data['province_id'] = Db::table('areas')->where('id',$location[0])->value('parent_id');
  55. }
  56. if(count($location) == 1){
  57. $data['district_id'] = $location[0];
  58. $data['city_id'] = Db::table('areas')->where('id',$location[0])->value('parent_id');
  59. $data['province_id'] = Db::table('areas')->where('id',$data['city_id'])->value('parent_id');
  60. }
  61. //基站Mac校验
  62. $data['station_mac'] = strtoupper(trim($data['station_mac']));
  63. if (!$data['station_mac']) {
  64. return CatchResponse::fail('请输入基站Mac');
  65. }
  66. $regex = "/^([A-F0-9]{12})$/";
  67. if (!preg_match($regex, $data['station_mac'])) {
  68. return CatchResponse::fail('基站Mac格式不正确');
  69. }
  70. if ($this->stationModel->where('station_mac', $data['station_mac'])->count()) {
  71. return CatchResponse::fail('该基站已存在');
  72. }
  73. $data['station_code'] = substr($data['station_mac'], -6);
  74. if(!trim($data['station_name'])){
  75. return CatchResponse::fail('请输入基站名称');
  76. }
  77. if(!trim($data['longitude'])){
  78. return CatchResponse::fail('请输入经度');
  79. }
  80. if(!trim($data['latitude'])){
  81. return CatchResponse::fail('请输入纬度');
  82. }
  83. if(!trim($data['address'])){
  84. return CatchResponse::fail('请输入安装地址');
  85. }
  86. $data['station_type'] = 2;
  87. return CatchResponse::success($this->stationModel->storeBy($data));
  88. }
  89. /**
  90. * 读取
  91. * @time 2021年05月21日 15:17
  92. * @param $id
  93. */
  94. public function read($id): \think\Response
  95. {
  96. return CatchResponse::success($this->stationModel->findBy($id));
  97. }
  98. /**
  99. * 更新
  100. * @time 2021年05月21日 15:17
  101. * @param Request $request
  102. * @param $id
  103. */
  104. public function update(Request $request, $id): \think\Response
  105. {
  106. $data = $request->post();
  107. $location = explode(',', $data['area_id']);
  108. if(empty($location)){
  109. return CatchResponse::fail('请选择所属区域');
  110. }
  111. $dis = Db::table('areas')->where('id',end($location))->value('area_type');
  112. if ($dis != 'county') {
  113. return CatchResponse::fail('区域请精确到县区');
  114. }
  115. if(count($location) == 3){
  116. $data['province_id'] = $location[0];
  117. $data['city_id'] = $location[1];
  118. $data['district_id'] = $location[2];
  119. }
  120. if(count($location) == 2){
  121. $data['city_id'] = $location[0];
  122. $data['district_id'] = $location[1];
  123. $data['province_id'] = Db::table('areas')->where('id',$location[0])->value('parent_id');
  124. }
  125. if(count($location) == 1){
  126. $data['district_id'] = $location[0];
  127. $data['city_id'] = Db::table('areas')->where('id',$location[0])->value('parent_id');
  128. $data['province_id'] = Db::table('areas')->where('id',$data['city_id'])->value('parent_id');
  129. }
  130. //基站Mac校验
  131. $data['station_mac'] = strtoupper(trim($data['station_mac']));
  132. if (!$data['station_mac']) {
  133. return CatchResponse::fail('请输入基站Mac');
  134. }
  135. $regex = "/^([A-F0-9]{12})$/";
  136. if (!preg_match($regex, $data['station_mac'])) {
  137. return CatchResponse::fail('基站Mac格式不正确');
  138. }
  139. $gid = $this->stationModel->where('station_mac', $data['station_mac'])->value('id');
  140. if ($gid && $gid != $id) {
  141. return CatchResponse::fail('该基站已存在');
  142. }
  143. $data['station_code'] = substr($data['station_mac'], -6);
  144. if(!trim($data['station_name'])){
  145. return CatchResponse::fail('请输入基站名称');
  146. }
  147. if(!trim($data['longitude'])){
  148. return CatchResponse::fail('请输入经度');
  149. }
  150. if(!trim($data['latitude'])){
  151. return CatchResponse::fail('请输入纬度');
  152. }
  153. if(!trim($data['address'])){
  154. return CatchResponse::fail('请输入安装地址');
  155. }
  156. unset($data['creator_id']);
  157. return CatchResponse::success($this->stationModel->updateBy($id, $data));
  158. }
  159. /**
  160. * 更新配置
  161. * @time 2021年05月21日 15:17
  162. * @param Request $request
  163. * @param $id
  164. */
  165. public function updateStationConfig(Request $request, $id): \think\Response
  166. {
  167. $data = $request->post();
  168. // var_dump($data);
  169. if($data['rfid_enable_throttle_rlian']){
  170. $data['rfid_enable_throttle_rlian']=1;
  171. }else{
  172. $data['rfid_enable_throttle_rlian']=0;
  173. }
  174. if($data['command']=='is_reboot_device'){
  175. $data['is_reboot_device']=1;
  176. $data['is_restore_device']=0;
  177. }elseif($data['command']=='is_restore_device'){
  178. $data['is_reboot_device']=0;
  179. $data['is_restore_device']=1;
  180. }else{
  181. $data['is_reboot_device']=0;
  182. $data['is_restore_device']=0;
  183. }
  184. unset($data['command']);
  185. // var_dump($data);
  186. return CatchResponse::success( $this->stationModel->where('id', $id) ->update($data));
  187. }
  188. /**
  189. * 删除
  190. * @time 2021年05月21日 15:17
  191. * @param $id
  192. */
  193. public function delete($id): \think\Response
  194. {
  195. return CatchResponse::success($this->stationModel->deleteBy($id,true));
  196. }
  197. /**
  198. * 获取全部数据
  199. */
  200. public function rangeData(Request $request): \think\Response
  201. {
  202. return CatchResponse::success($this->stationModel->getRangeData());
  203. }
  204. /**
  205. * 导出定位基站
  206. *
  207. * @time 2020年09月08日
  208. * @param Excel $excel
  209. * @param DeviceExport $deviceExport
  210. * @throws \PhpOffice\PhpSpreadsheet\Exception
  211. * @return \think\response\Json
  212. */
  213. public function export(Excel $excel, DwExport $dwExport)
  214. {
  215. return CatchResponse::success($excel->save($dwExport, Utils::publicPath('export/dwstations'), 'local', '定位基站'));
  216. }
  217. }