Device.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  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 catcher\Utils;
  7. use catcher\library\excel\Excel;
  8. use PhpOffice\PhpSpreadsheet\IOFactory;
  9. use catchAdmin\device\excel\DeviceExport;
  10. use catchAdmin\device\model\Device as deviceModel;
  11. use think\facade\Db;
  12. class Device extends CatchController
  13. {
  14. protected $deviceModel;
  15. public function __construct(DeviceModel $deviceModel)
  16. {
  17. $this->deviceModel = $deviceModel;
  18. }
  19. /**
  20. * 列表
  21. * @time 2022年01月20日 09:47
  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->deviceModel->getDeviceList($field,$order));
  29. }
  30. /**
  31. * 保存信息
  32. * @time 2022年01月20日 09:47
  33. * @param Request $request
  34. */
  35. public function save(Request $request) : \think\Response
  36. {
  37. $data = $request->post();
  38. if(!$data['department_id']){
  39. return CatchResponse::fail('请选择部门');
  40. }
  41. $data['imei'] = trim($data['imei']);
  42. $data['rfid'] = trim($data['rfid']);
  43. if(!$data['imei'] && !$data['rfid']){
  44. return CatchResponse::fail('GPS编号和RFID编号必填一项');
  45. }
  46. //检测重复
  47. if($data['imei']){
  48. if($this->deviceModel->where('imei',$data['imei'])->limit(0,1)->find()){
  49. return CatchResponse::fail('GPS编号已存在');
  50. }
  51. }
  52. if($data['rfid']){
  53. if($this->deviceModel->where('rfid',$data['rfid'])->limit(0,1)->find()){
  54. return CatchResponse::fail('RFID编号已存在');
  55. }
  56. }
  57. $data['name'] = '设备'.substr($data['imei']?:$data['rfid'],-4);
  58. return CatchResponse::success($this->deviceModel->storeBy($data));
  59. }
  60. /**
  61. * 读取
  62. * @time 2022年01月20日 09:47
  63. * @param $id
  64. */
  65. public function read($id) : \think\Response
  66. {
  67. return CatchResponse::success($this->deviceModel->findBy($id));
  68. }
  69. /**
  70. * 更新
  71. * @time 2022年01月20日 09:47
  72. * @param Request $request
  73. * @param $id
  74. */
  75. public function update(Request $request, $id) : \think\Response
  76. {
  77. $data = $request->post();
  78. if(!$data['department_id']){
  79. return CatchResponse::fail('请选择部门');
  80. }
  81. $data['imei'] = trim($data['imei']);
  82. $data['rfid'] = trim($data['rfid']);
  83. if(!$data['imei'] && !$data['rfid']){
  84. return CatchResponse::fail('GPS编号和RFID编号必填一项');
  85. }
  86. //检测重复
  87. if($data['imei']){
  88. $oid = $this->deviceModel->where('imei',$data['imei'])->limit(0,1)->value('id');
  89. if( $oid && $oid != $id){
  90. return CatchResponse::fail('GPS编号已存在');
  91. }
  92. }
  93. if($data['rfid']){
  94. $oid = $this->deviceModel->where('rfid',$data['rfid'])->limit(0,1)->value('id');
  95. if($oid && $oid != $id){
  96. return CatchResponse::fail('RFID编号已存在');
  97. }
  98. }
  99. $data['name'] = $data['imei']?:$data['rfid'];
  100. return CatchResponse::success($this->deviceModel->updateBy($id,$data));
  101. }
  102. /**
  103. * 删除
  104. * @time 2022年01月20日 09:47
  105. * @param $id
  106. */
  107. public function delete($id) : \think\Response
  108. {
  109. return CatchResponse::success($this->deviceModel->deleteBy($id,true));
  110. }
  111. /**
  112. * 导出
  113. *
  114. * @time 2022年02月15日
  115. * @param Excel $excel
  116. * @param DeviceExport $deviceExport
  117. * @throws \PhpOffice\PhpSpreadsheet\Exception
  118. * @return \think\response\Json
  119. */
  120. public function export_device(Excel $excel, DeviceExport $DeviceExport)
  121. {
  122. // var_dump(Utils::publicPath('export/users'));//导出路径
  123. return CatchResponse::success($excel->save($DeviceExport, Utils::publicPath('export/devices'), 'local', '设备列表'));
  124. }
  125. /**
  126. * 导入设备
  127. *
  128. * @time 2022年02月15日
  129. * @param Excel $excel
  130. * @param DeviceExport $deviceExport
  131. * @throws \PhpOffice\PhpSpreadsheet\Exception
  132. * @return \think\response\Json
  133. */
  134. public function import_device(Request $request)
  135. {
  136. $url = $request->post('url');
  137. if (!$url) {
  138. return CatchResponse::fail('请上传文件');
  139. }
  140. $depart_id = $request->post('depart_id');
  141. if (!$depart_id) {
  142. return CatchResponse::fail('请选择部门');
  143. }
  144. $model_id = $request->post('model_id');
  145. if (!$model_id) {
  146. return CatchResponse::fail('请选择型号');
  147. }
  148. $creator_id = $request->post('creator_id');
  149. //解析地址
  150. $parse_url = parse_url($url)['path'];
  151. //载入excel表格
  152. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  153. // var_dump($objPHPExcel);
  154. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  155. // $nameArr = $objPHPExcel->getSheetNames();
  156. // var_dump($nameArr);
  157. //获取表的数量
  158. $sheetCount = $objPHPExcel->getSheetCount();
  159. $fail = 0; //失败条数
  160. $success = 0; //成功条数
  161. $total = 0; //总共设备数
  162. $data = []; //设备数据
  163. //循环读取每一张表
  164. for ($index = 0; $index < $sheetCount; $index++) {
  165. //设置当前要读取的表
  166. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  167. // var_dump($sheet);exit;
  168. $highestRow = $sheet->getHighestRow(); // 取得总行数
  169. // var_dump($highestRow);
  170. if ($highestRow <= 2) {
  171. continue;
  172. }
  173. $total += $highestRow - 2;
  174. for ($j = 3; $j <= $highestRow; $j++) {
  175. $arr = array(); //每条设备信息
  176. $arr['imei'] = trim($sheet->getCell("A" . $j)->getFormattedValue()); //imei
  177. if ($arr['imei'] && mb_strlen($arr['imei']) != 15) {
  178. $fail++;
  179. $msg = '导入设备:' . $arr['imei'] . '失败:imei编号格式不正确';
  180. $this->importFailLog($msg);
  181. continue;
  182. }
  183. //检测重复
  184. if($arr['imei']){
  185. $isHas = $this->deviceModel->where('imei',$arr['imei'])->count();
  186. if($isHas){
  187. $fail++;
  188. $msg = '导入设备imei:' . $arr['imei'] . '失败:imei编号已存在';
  189. $this->importFailLog($msg);
  190. continue;
  191. }
  192. }
  193. $arr['rfid'] = trim($sheet->getCell("B" . $j)->getFormattedValue()); //rfid
  194. //检测重复
  195. if($arr['rfid']){
  196. $isHas = $this->deviceModel->where('rfid',$arr['rfid'])->count();
  197. if($isHas){
  198. $fail++;
  199. $msg = '导入设备rfid:' . $arr['rfid'] . '失败:rfid编号已存在';
  200. $this->importFailLog($msg);
  201. continue;
  202. }
  203. }
  204. $arr['remark'] = trim($sheet->getCell("C" . $j)->getFormattedValue()); //备注
  205. $arr['department_id'] = $depart_id;
  206. $arr['creator_id'] = $creator_id;
  207. $arr['model'] = $model_id;
  208. $arr['name'] = '设备'.substr($arr['imei']?:$arr['rfid'],-4);
  209. $arr['created_at'] = time();
  210. $arr['updated_at'] = time();
  211. array_push($data,$arr);
  212. }
  213. }
  214. array_unique($data, SORT_REGULAR);
  215. // var_dump($data);return CatchResponse::success();
  216. $count = $this->deviceModel->limit(100)->insertAll($data);
  217. if ($success = $count) {
  218. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  219. }
  220. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  221. }
  222. /**
  223. * 导入设备失败日志
  224. */
  225. public function importFailLog($msg)
  226. {
  227. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/import_devices_fail.log";
  228. $folder = dirname($file);
  229. if (!is_dir($folder)) {
  230. mkdir($folder, 0777, true);
  231. }
  232. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  233. }
  234. /**
  235. * 根据用户查找设备列表
  236. * @param Request $request
  237. * @return void
  238. */
  239. public function getDeviceById(Request $request)
  240. {
  241. $param=$request->param();
  242. $list=$this->deviceModel->where('bind_id',$param['creator_id'])->select();
  243. return CatchResponse::success(["data"=>$list,'success'=>'success','message'=>'获取成功']);
  244. }
  245. /**
  246. * 修改设备名称
  247. */
  248. public function editName(Request $request)
  249. {
  250. $data=$request->param();
  251. $devices =deviceModel::find($data['id']);
  252. if(empty($devices))
  253. {
  254. return CatchResponse::fail('该设备不存在');
  255. }
  256. $bool= Db::name("devices")->where("id",$devices['id'])->update(['name'=>$data['name']]);
  257. if($bool)
  258. {
  259. return CatchResponse::success(['success'=>"success",'message'=>'修改成功']);
  260. }
  261. return CatchResponse::fail('保存失败');
  262. }
  263. /**
  264. * 用户绑定设备
  265. */
  266. public function bindingDevie(Request $request)
  267. {
  268. $param= $request->param();
  269. //imem 号
  270. $imei=$param['imei'];
  271. $device=null;
  272. if(empty($param['type']))
  273. {
  274. return CatchResponse::fail('必须选择编号类型');
  275. }
  276. //判断设备类型
  277. if($param['type']=='gps')
  278. {
  279. $device = $this->deviceModel->where('imei',$imei)->find();
  280. }
  281. else
  282. {
  283. $device = $this->deviceModel->where('rfid',$imei)->find();
  284. }
  285. if(empty($device))
  286. {
  287. return CatchResponse::fail('设备编号不存在或编号类型错误');
  288. }
  289. if(!empty($device->bind_id))
  290. {
  291. return CatchResponse::fail('该设备已被绑定');
  292. }
  293. $data=[
  294. 'bind_id' =>$param['creator_id'],
  295. 'name' =>$param['device_name']
  296. ];
  297. if($device->save($data))
  298. {
  299. return CatchResponse::success(['success' =>'绑定成功']);
  300. }
  301. return CatchResponse::fail('绑定失败');
  302. }
  303. /**
  304. * 微信解除绑定
  305. *
  306. * @param Request $request
  307. * @return void
  308. */
  309. public function relieveDevice(Request $request)
  310. {
  311. $data = $request->param();
  312. //用户的id
  313. $userid= $data['creator_id'];
  314. //设备id
  315. $device_id=$data['device_id'];
  316. if(!($userid && $device_id))
  317. {
  318. return CatchResponse::fail('参数错误');
  319. }
  320. $device = $this->deviceModel->find($device_id);
  321. if(empty($device))
  322. {
  323. return CatchResponse::fail('设备不存在');
  324. }
  325. if($device->bind_id!=$userid)
  326. {
  327. return CatchResponse::fail('该设备没有和该用户绑定');
  328. }
  329. if(empty($device->bind_id))
  330. {
  331. return CatchResponse::fail('该设备未绑定');
  332. }
  333. if($device->save(['bind_id'=>0]))
  334. {
  335. return CatchResponse::success(['success' =>'解除成功']);
  336. }
  337. return CatchResponse::fail('操作失败');
  338. }
  339. }