CardDevice.php 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  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\Device as deviceModel;
  7. use catcher\Utils;
  8. use catcher\library\excel\Excel;
  9. use PhpOffice\PhpSpreadsheet\IOFactory;
  10. use catchAdmin\device\excel\BadgesExport;
  11. use catchAdmin\device\excel\CardsExport;
  12. use catchAdmin\permissions\model\Roles;
  13. use catchAdmin\permissions\model\Users;
  14. use catcher\generate\build\types\Arr;
  15. use \think\facade\Db;
  16. use think\facade\Cache;
  17. class CardDevice extends CatchController
  18. {
  19. protected $deviceModel;
  20. public function __construct(DeviceModel $deviceModel)
  21. {
  22. $this->deviceModel = $deviceModel;
  23. }
  24. /**
  25. * 列表
  26. * @time 2021年08月28日 16:57
  27. * @param Request $request
  28. */
  29. public function index(Request $request): \think\Response
  30. {
  31. $device_type = $request->get('device_type');
  32. $field = $request->get('field') ?: 'id';
  33. $order = $request->get('order') ?: 'desc';
  34. $list = $this->deviceModel->getDeviceList($device_type, $field, $order);
  35. foreach ($list as &$item) {
  36. if ($item['online_time'] < $item['wifi_online_time']) {
  37. $item['last_online_time'] = $item['wifi_online_time'];
  38. $item['longitude'] = $item['wifi_longitude'];
  39. $item['latitude'] = $item['wifi_latitude'];
  40. } else {
  41. $item['last_online_time'] = $item['online_time'];
  42. }
  43. }
  44. return CatchResponse::paginate($list);
  45. }
  46. /**
  47. * 根据用户id获取设备
  48. * @time 2021年08月28日 16:57
  49. * @param Request $request
  50. */
  51. public function getDeviceByUserId(Request $request): \think\Response
  52. {
  53. return CatchResponse::paginate($this->deviceModel->getList());
  54. }
  55. /**
  56. * 保存信息
  57. * @time 2021年08月28日 16:57
  58. * @param Request $request
  59. */
  60. public function save(Request $request): \think\Response
  61. {
  62. $depart_id = $request->post('department_id');
  63. if (!$depart_id) {
  64. return CatchResponse::fail('请选择所属部门');
  65. }
  66. $imei = $request->post('imei');
  67. if (!$imei) {
  68. return CatchResponse::fail('请输入设备imei号');
  69. }
  70. if (mb_strlen($imei) != 15) {
  71. return CatchResponse::fail('imei号格式不正确');
  72. }
  73. if ($this->deviceModel->where('imei', $imei)->find()) {
  74. return CatchResponse::fail('imei号已存在');
  75. }
  76. $creator_id = $request->post('creator_id');
  77. $type = $request->post('type');
  78. if ($type == 1) { //个人卡牌导入
  79. $data = array(
  80. 'department_id' => $depart_id,
  81. 'imei' => $imei,
  82. 'rfid' => substr($imei, -8),
  83. 'device_name' => '设备' . substr($imei, -4),
  84. 'alarm_state' => 0,
  85. 'device_type' => 0,
  86. 'use_state' => 0,
  87. 'net_state' => 2,
  88. 'creator_id' => $creator_id,
  89. 'created_at' => time(),
  90. 'updated_at' => time()
  91. );
  92. if (!$this->deviceModel->storeBy($data)) {
  93. return CatchResponse::fail('添加设备失败');
  94. }
  95. $redis=Cache::store('redis')->handler();
  96. $redis->rpush('c61_voice_cneter_add_list', $imei);
  97. return CatchResponse::success();
  98. } else {
  99. $realname = $request->post('realname');
  100. $user_no = $request->post('user_no');
  101. $phone = $request->post('phone');
  102. //realname user_no phone 有一个存在,其他也应该必填
  103. if (!$realname) {
  104. return CatchResponse::fail('请输入用户姓名');
  105. }
  106. if (!$user_no) {
  107. return CatchResponse::fail('请输入用户编号');
  108. }
  109. if (!$phone) {
  110. return CatchResponse::fail('请输入手机号码');
  111. }
  112. //添加用户
  113. $role_id_card_group = (new Roles())->where('identify', 'group_card_user')->value('id');
  114. $user_info = (new Users())
  115. ->alias('u')
  116. ->where('u.username', $phone)
  117. ->join('user_has_roles r', 'u.id = r.uid and r.role_id=' . $role_id_card_group)
  118. ->find();
  119. if ($user_info) {
  120. $uid = $user_info['uid'];
  121. (new Users())->where('id', $uid)->update(['realname' => $realname, 'user_no' => $user_no]);
  122. } else { //添加用户
  123. $user = array(
  124. 'username' => $phone,
  125. 'password' => substr($imei, -8),
  126. 'realname' => $realname,
  127. 'user_no' => $user_no,
  128. 'phone' => $phone,
  129. 'department_id' => $depart_id,
  130. 'creator_id' => $creator_id,
  131. 'created_at' => time(),
  132. 'updated_at' => time()
  133. );
  134. // var_dump($user);
  135. $uid = (new Users())->createBy($user);
  136. Db::table('user_has_roles')->insert(['uid' => $uid, 'role_id' => $role_id_card_group]);
  137. }
  138. //保存设备信息
  139. $data = array(
  140. 'department_id' => $depart_id,
  141. 'imei' => $imei,
  142. 'rfid' => substr($imei, -8),
  143. 'device_name' => '设备' . substr($imei, -4),
  144. 'user_id' => $uid,
  145. 'alarm_state' => 0,
  146. 'device_type' => 0,
  147. 'use_state' => 1,
  148. 'net_state' => 2,
  149. 'creator_id' => $creator_id,
  150. 'created_at' => time(),
  151. 'updated_at' => time()
  152. );
  153. //添加设备
  154. if ($this->deviceModel->storeBy($data)) {
  155. $redis=Cache::store('redis')->handler();
  156. $redis->rpush('c61_voice_cneter_add_list', $imei);
  157. return CatchResponse::success();
  158. }
  159. return CatchResponse::fail('添加设备失败');
  160. }
  161. }
  162. /**
  163. * 读取
  164. * @time 2021年08月28日 16:57
  165. * @param $id
  166. */
  167. public function read($id): \think\Response
  168. {
  169. return CatchResponse::success($this->deviceModel->findBy($id));
  170. }
  171. /**
  172. * 更新
  173. * @time 2021年08月28日 16:57
  174. * @param Request $request
  175. * @param $id
  176. */
  177. public function update(Request $request, $id): \think\Response
  178. {
  179. $depart_id = $request->post('department_id');
  180. if (!$depart_id) {
  181. return CatchResponse::fail('请选择所属部门');
  182. }
  183. $imei = $request->post('imei');
  184. if (count(explode(',', $imei)) > 1) {
  185. return CatchResponse::fail('imei格式不正确');
  186. }
  187. $check_id = $this->deviceModel->where('imei', $imei)->value('id');
  188. if ($check_id && $check_id != $id) {
  189. return CatchResponse::fail('imei号已存在');
  190. }
  191. //更新设备信息
  192. $data = array(
  193. 'department_id' => $depart_id,
  194. 'imei' => $imei,
  195. 'rfid' => substr($imei, -8),
  196. 'updated_at' => time()
  197. );
  198. if (isset(($request->post())['creator'])) {
  199. $data['creator_id'] = $request->post('creator');
  200. }
  201. if ($this->deviceModel->where('id', $id)->update($data)) {
  202. return CatchResponse::success();
  203. }
  204. return CatchResponse::fail('更新设备失败');
  205. // return CatchResponse::success($this->deviceModel->updateBy($id, $request->post()));
  206. }
  207. /**
  208. * 删除
  209. * @time 2021年08月28日 16:57
  210. * @param $id
  211. */
  212. public function delete($id): \think\Response
  213. {
  214. return CatchResponse::success($this->deviceModel->deleteBy($id, true));
  215. }
  216. /**
  217. * 查询告警列表
  218. * @time 2021年05月24日
  219. * @return \think\response\Json
  220. */
  221. public function queryAlarmList(Request $request): \think\Response
  222. {
  223. return CatchResponse::paginate($this->deviceModel->queryAlarmList());
  224. }
  225. /**
  226. * 导出
  227. *
  228. * @time 2020年09月08日
  229. * @param Excel $excel
  230. * @param DeviceExport $deviceExport
  231. * @throws \PhpOffice\PhpSpreadsheet\Exception
  232. * @return \think\response\Json
  233. */
  234. public function export_card(Excel $excel, CardsExport $CardsExport)
  235. {
  236. // var_dump(Utils::publicPath('export/users'));//导出路径
  237. return CatchResponse::success($excel->save($CardsExport, Utils::publicPath('export/cards'), 'local', '卡牌设备列表'));
  238. }
  239. /**
  240. * 导入卡牌设备
  241. *
  242. * @time 2020年09月08日
  243. * @param Excel $excel
  244. * @param DeviceExport $deviceExport
  245. * @throws \PhpOffice\PhpSpreadsheet\Exception
  246. * @return \think\response\Json
  247. */
  248. public function importCards(Request $request)
  249. {
  250. $url = $request->post('url');
  251. if (!$url) {
  252. return CatchResponse::fail('请上传文件');
  253. }
  254. $depart_id = $request->post('depart_id');
  255. if (!$depart_id) {
  256. return CatchResponse::fail('请选择部门');
  257. }
  258. $creator_id = $request->post('creator_id');
  259. //解析地址
  260. $parse_url = parse_url($url)['path'];
  261. //载入excel表格
  262. $objPHPExcel = IOFactory::load(public_path() . $parse_url);
  263. // var_dump($objPHPExcel);
  264. //获取表名,一维数组,值是表名。如:array('sheet1', 'sheet2', 'sheet3')
  265. // $nameArr = $objPHPExcel->getSheetNames();
  266. // var_dump($nameArr);
  267. //获取表的数量
  268. $sheetCount = $objPHPExcel->getSheetCount();
  269. $fail = 0; //失败条数
  270. $success = 0; //成功条数
  271. $total = 0; //总共学生数
  272. $personal_data = []; //个人卡牌
  273. $group_data = []; //团体卡牌
  274. //循环读取每一张表
  275. for ($index = 0; $index < $sheetCount; $index++) {
  276. //设置当前要读取的表
  277. $sheet = $objPHPExcel->getSheet($index); //excel中的第一张sheet
  278. // var_dump($sheet);exit;
  279. $highestRow = $sheet->getHighestRow(); // 取得总行数
  280. // var_dump($highestRow);
  281. if ($highestRow <= 2) {
  282. continue;
  283. }
  284. $total += $highestRow - 2;
  285. for ($j = 3; $j <= $highestRow; $j++) {
  286. $data = array(); //每条学生信息
  287. $imei = trim($sheet->getCell("A" . $j)->getFormattedValue()); //imei
  288. // var_dump($imei);
  289. if (mb_strlen($imei) != 15) {
  290. $fail++;
  291. $msg = '导入设备:' . $imei . '失败:imei编号格式不正确';
  292. $this->importFailLog($msg);
  293. continue;
  294. }
  295. $realname = trim($sheet->getCell("B" . $j)->getFormattedValue()); //姓名
  296. $user_no = trim($sheet->getCell("C" . $j)->getFormattedValue()); //用户编号
  297. $phone = trim($sheet->getCell("D" . $j)->getFormattedValue()); //手机号
  298. if (!$realname && !$user_no && !$phone) { //导入个人用户设备
  299. $data = array(
  300. 'department_id' => $depart_id,
  301. 'imei' => $imei,
  302. 'rfid' => substr($imei, -8),
  303. 'device_name' => '设备' . substr($imei, -4),
  304. 'alarm_state' => 0,
  305. 'device_type' => 0,
  306. 'use_state' => 0,
  307. 'net_state' => 2,
  308. 'creator_id' => $creator_id,
  309. 'created_at' => time(),
  310. 'updated_at' => time()
  311. );
  312. //查询设备
  313. $info = $this->deviceModel->where('imei', $imei)->find();
  314. if ($info) {
  315. $fail++;
  316. $msg = '导入设备:' . $imei . '失败:imei编号已存在';
  317. $this->importFailLog($msg);
  318. continue;
  319. }
  320. array_push($personal_data, $data);
  321. } else { //团体用户设备
  322. if (!$realname) {
  323. $fail++;
  324. $msg = '导入设备:' . $imei . '失败:用户姓名不存在';
  325. $this->importFailLog($msg);
  326. continue;
  327. }
  328. if (!$user_no) {
  329. $fail++;
  330. $msg = '导入设备:' . $imei . '失败:用户编号不存在';
  331. $this->importFailLog($msg);
  332. continue;
  333. }
  334. if (!$phone) {
  335. $fail++;
  336. $msg = '导入设备:' . $imei . '失败:用户手机号不存在';
  337. $this->importFailLog($msg);
  338. continue;
  339. }
  340. //保存用户信息
  341. $role_id_card_group = (new Roles())->where('identify', 'group_card_user')->value('id');
  342. $user_info = (new Users())
  343. ->alias('u')
  344. ->where('u.phone', $phone)
  345. ->join('user_has_roles r', 'u.id = r.uid and r.role_id=' . $role_id_card_group)
  346. ->find();
  347. if ($user_info) {
  348. $uid = $user_info['uid'];
  349. (new Users())->where('id', $uid)->update(['realname' => $realname, 'user_no' => $user_no]);
  350. } else { //添加用户
  351. $user = array(
  352. 'username' => $phone,
  353. 'password' => substr($imei, -8),
  354. 'realname' => $realname,
  355. 'user_no' => $user_no,
  356. 'phone' => $phone,
  357. 'department_id' => $depart_id,
  358. 'creator_id' => $creator_id,
  359. 'created_at' => time(),
  360. 'updated_at' => time()
  361. );
  362. // var_dump($user);
  363. $uid = (new Users())->createBy($user);
  364. Db::table('user_has_roles')->insert(['uid' => $uid, 'role_id' => $role_id_card_group]);
  365. }
  366. //保存设备信息
  367. $data = array(
  368. 'department_id' => $depart_id,
  369. 'imei' => $imei,
  370. 'rfid' => substr($imei, -8),
  371. 'device_name' => '设备' . substr($imei, -4),
  372. 'user_id' => $uid,
  373. 'alarm_state' => 0,
  374. 'device_type' => 0,
  375. 'use_state' => 1,
  376. 'net_state' => 2,
  377. 'creator_id' => $creator_id,
  378. 'created_at' => time(),
  379. 'updated_at' => time()
  380. );
  381. //查询设备
  382. $info = $this->deviceModel->where('imei', $imei)->find();
  383. if ($info) {
  384. $fail++;
  385. $msg = '导入设备:' . $imei . '失败:imei编号已存在';
  386. $this->importFailLog($msg);
  387. continue;
  388. }
  389. //添加设备
  390. // if ($this->deviceModel->createBy($data)) {
  391. // $success++;
  392. // } else {
  393. // $fail++;
  394. // $msg = '导入设备:' . $imei . '失败:添加设备失败';
  395. // $this->importFailLog($msg);
  396. // continue;
  397. // }
  398. array_push($group_data, $data);
  399. }
  400. }
  401. }
  402. array_unique($personal_data, SORT_REGULAR);
  403. array_unique($group_data, SORT_REGULAR);
  404. $count1 = $this->deviceModel->limit(100)->insertAll($personal_data);
  405. $count2 = $this->deviceModel->limit(100)->insertAll($group_data);
  406. $redis=Cache::store('redis')->handler();
  407. foreach($personal_data as $value){
  408. $redis->rpush('c61_voice_cneter_add_list', $value['imei']);
  409. }
  410. foreach($group_data as $value){
  411. $redis->rpush('c61_voice_cneter_add_list', $value['imei']);
  412. }
  413. if ($success = $count1 + $count2) {
  414. return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  415. }
  416. return CatchResponse::success(['error' => true, 'msg' => '导入失败']);
  417. // return CatchResponse::success('共' . $total . '条数据,成功' . $success . '条,失败' . $fail . '条');
  418. }
  419. /**
  420. * 导入设备失败日志
  421. */
  422. public function importFailLog($msg)
  423. {
  424. $file = runtime_path() . '/log/' . date("Ymd", time()) . "/import_devices_fail.log";
  425. $folder = dirname($file);
  426. if (!is_dir($folder)) {
  427. mkdir($folder, 0777, true);
  428. }
  429. file_put_contents($file, '[' . date('Y-m-d H:i:s') . ']' . $msg . PHP_EOL, FILE_APPEND);
  430. }
  431. /**
  432. * 检测下发配置选项
  433. */
  434. public function checkConfig(Request $request): \think\Response
  435. {
  436. // var_dump($request->post('ids'));
  437. $ids = $request->post('ids');
  438. if (empty($ids)) {
  439. return CatchResponse::fail('未选中设备');
  440. }
  441. $has_use_num = 0;
  442. foreach ($ids as $v) {
  443. if ($this->deviceModel->where('id', $v)->value('use_state')) {
  444. $has_use_num++;
  445. }
  446. }
  447. if (count($ids) != $has_use_num) {
  448. // return CatchResponse::fail('所选项含有未注册设备');
  449. }
  450. return CatchResponse::success();
  451. }
  452. /**
  453. * 下发录音配置
  454. */
  455. public function sendVoiceConfig(Request $request): \think\Response
  456. {
  457. $ids = $request->post('ids');
  458. $config = $request->post('config');
  459. if (empty($ids)) {
  460. return CatchResponse::fail('未选择设备');
  461. }
  462. if (empty($config)) {
  463. return CatchResponse::fail('至少配置一项');
  464. }
  465. // $config['is_enabled'] = $config['is_enabled'] ? 1 : 0;
  466. if (!$config['srv_addr']) {
  467. unset($config['srv_addr']);
  468. }
  469. if (!$config['srv_port']) {
  470. unset($config['srv_port']);
  471. } else {
  472. $config['srv_port'] = intval($config['srv_port']);
  473. }
  474. // if (!$config['max_ppt_duration_ms']) {
  475. // unset($config['max_ppt_duration_ms']);
  476. // } else {
  477. // $config['max_ppt_duration_ms'] = intval($config['max_ppt_duration_ms']);
  478. // }
  479. $config['msg_id'] = 0xAAAA0008;
  480. Db::startTrans();
  481. $fail_imei = '';
  482. foreach ($ids as $id) {
  483. $imei = $this->deviceModel->where('id', $id)->value('imei');
  484. if (!$imei) {
  485. continue;
  486. }
  487. //下发日志
  488. $log_data = array(
  489. 'send_contents' => json_encode($config),
  490. 'imei' => $imei,
  491. 'type' => 'voice',
  492. 'created_at' => time(),
  493. 'device_id' => $id
  494. );
  495. $id = Db::table('send_config_log')->insertGetId($log_data);
  496. if (!$id) {
  497. $fail_imei += $imei . ' ';
  498. Db::rollback();
  499. }
  500. $config['id'] = $id;
  501. $redis = Cache::store('redis')->handler();
  502. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($config));
  503. if (!$res) {
  504. $fail_imei += $imei . ' ';
  505. Db::rollback();
  506. }
  507. }
  508. if ($fail_imei != '') {
  509. return CatchResponse::fail('下发失败');
  510. }
  511. Db::commit();
  512. return CatchResponse::success('下发成功');
  513. }
  514. /**
  515. * 下发传感器配置
  516. */
  517. public function sendSensorConfig(Request $request): \think\Response
  518. {
  519. $ids = $request->post('ids');
  520. $config = $request->post('config');
  521. if (empty($ids)) {
  522. return CatchResponse::fail('未选择设备');
  523. }
  524. if (empty($config)) {
  525. return CatchResponse::fail('至少配置一项');
  526. }
  527. if (!$config['stopped_rtc_invl']) {
  528. unset($config['stopped_rtc_invl']);
  529. } else {
  530. $config['stopped_rtc_invl'] = intval($config['stopped_rtc_invl']);
  531. }
  532. if (!$config['stopped_rpt_invl']) {
  533. unset($config['stopped_rpt_invl']);
  534. } else {
  535. $config['stopped_rpt_invl'] = intval($config['stopped_rpt_invl']);
  536. }
  537. if (!$config['not_moving_threshold']) {
  538. unset($config['not_moving_threshold']);
  539. } else {
  540. $config['not_moving_threshold'] = intval($config['not_moving_threshold']);
  541. }
  542. if (!$config['stopped_rtc_invl']) {
  543. unset($config['stopped_rtc_invl']);
  544. } else {
  545. $config['stopped_rtc_invl'] = intval($config['stopped_rtc_invl']);
  546. }
  547. if (!$config['stopped_rpt_invl']) {
  548. unset($config['stopped_rpt_invl']);
  549. } else {
  550. $config['stopped_rpt_invl'] = intval($config['stopped_rpt_invl']);
  551. }
  552. if (!$config['tbd_cnt_max']) {
  553. unset($config['tbd_cnt_max']);
  554. } else {
  555. $config['tbd_cnt_max'] = intval($config['tbd_cnt_max']);
  556. }
  557. if (empty($config)) {
  558. return CatchResponse::fail('您还没有配置任何一项');
  559. }
  560. $config['msg_id'] = 0xAAAA0007;
  561. Db::startTrans();
  562. $fail_imei = '';
  563. foreach ($ids as $id) {
  564. $imei = $this->deviceModel->where('id', $id)->value('imei');
  565. if (!$imei) {
  566. continue;
  567. }
  568. //下发日志
  569. $log_data = array(
  570. 'send_contents' => json_encode($config),
  571. 'imei' => $imei,
  572. 'created_at' => time(),
  573. 'type' => 'sensor',
  574. 'device_id' => $id
  575. );
  576. $id = Db::table('send_config_log')->insertGetId($log_data);
  577. if (!$id) {
  578. $fail_imei += $imei . ' ';
  579. Db::rollback();
  580. }
  581. $config['id'] = $id;
  582. $redis = Cache::store('redis')->handler();
  583. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($config));
  584. if (!$res) {
  585. $fail_imei += $imei . ' ';
  586. Db::rollback();
  587. }
  588. }
  589. if ($fail_imei != '') {
  590. return CatchResponse::fail('下发失败');
  591. }
  592. Db::commit();
  593. return CatchResponse::success('下发成功');
  594. }
  595. /**
  596. * 下发gps配置
  597. */
  598. public function sendGpsConfig(Request $request): \think\Response
  599. {
  600. $ids = $request->post('ids');
  601. $config = $request->post('config');
  602. if (empty($ids)) {
  603. return CatchResponse::fail('未选择设备');
  604. }
  605. if (empty($config)) {
  606. return CatchResponse::fail('至少配置一项');
  607. }
  608. $config['pos_mode'] = intval($config['pos_mode']);
  609. // $config['msg_id'] = 0xAAAA0001;
  610. $config['msg_id'] = 0xAAAA0010;
  611. Db::startTrans();
  612. $fail_imei = '';
  613. foreach ($ids as $id) {
  614. $imei = $this->deviceModel->where('id', $id)->value('imei');
  615. if (!$imei) {
  616. continue;
  617. }
  618. //判断是不是定时模式
  619. if ($config['pos_mode'] == 2) {
  620. $config_arr = array(
  621. 'stopped_rtc_invl' => intval($config['stopped_rtc_invl']),
  622. 'stopped_rpt_invl' => intval($config['stopped_rpt_invl']),
  623. 'msg_id' => 0xAAAA0007
  624. );
  625. //下发日志
  626. $log_data = array(
  627. 'send_contents' => json_encode($config_arr),
  628. 'imei' => $imei,
  629. 'type' => 'sensor',
  630. 'created_at' => time(),
  631. 'device_id' => $id
  632. );
  633. $lg_id = Db::table('send_config_log')->insertGetId($log_data);
  634. if (!$lg_id) {
  635. $fail_imei += $imei . ' ';
  636. Db::rollback();
  637. }
  638. $config_arr['id'] = $lg_id;
  639. $redis = Cache::store('redis')->handler();
  640. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($config_arr));
  641. if (!$res) {
  642. $fail_imei += $imei . ' ';
  643. Db::rollback();
  644. }
  645. }else{
  646. $config_arr = array(
  647. 'stopped_rtc_invl' => 3000,
  648. 'stopped_rpt_invl' => 3600,
  649. 'msg_id' => 0xAAAA0007
  650. );
  651. //下发日志
  652. $log_data = array(
  653. 'send_contents' => json_encode($config_arr),
  654. 'imei' => $imei,
  655. 'type' => 'sensor',
  656. 'created_at' => time(),
  657. 'device_id' => $id
  658. );
  659. $lg_id = Db::table('send_config_log')->insertGetId($log_data);
  660. if (!$lg_id) {
  661. $fail_imei += $imei . ' ';
  662. Db::rollback();
  663. }
  664. $config_arr['id'] = $lg_id;
  665. $redis = Cache::store('redis')->handler();
  666. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($config_arr));
  667. if (!$res) {
  668. $fail_imei += $imei . ' ';
  669. Db::rollback();
  670. }
  671. }
  672. //重新赋值 删除多余参数
  673. $mode_config=$config;
  674. unset($mode_config['stopped_rpt_invl'],$mode_config['stopped_rtc_invl']);
  675. //下发日志
  676. $log_data = array(
  677. 'send_contents' => json_encode($mode_config),
  678. 'imei' => $imei,
  679. 'type' => 'pos_mode',
  680. 'created_at' => time(),
  681. 'device_id' => $id
  682. );
  683. $id = Db::table('send_config_log')->insertGetId($log_data);
  684. if (!$id) {
  685. $fail_imei += $imei . ' ';
  686. Db::rollback();
  687. }
  688. $mode_config['id'] = $id;
  689. $redis = Cache::store('redis')->handler();
  690. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($mode_config));
  691. if (!$res) {
  692. $fail_imei += $imei . ' ';
  693. Db::rollback();
  694. }
  695. }
  696. if ($fail_imei != '') {
  697. return CatchResponse::fail('下发失败');
  698. }
  699. Db::commit();
  700. return CatchResponse::success('下发成功');
  701. }
  702. /**
  703. * 设备终端操作命令
  704. */
  705. public function sendcmd(Request $request): \think\Response
  706. {
  707. $ids = $request->post('ids');
  708. if (empty($ids)) {
  709. return CatchResponse::fail('未选择设备');
  710. }
  711. $config['msg_id'] = 0xAAAA0011;
  712. $config['cmd'] = intval($request->post('cmd'));
  713. Db::startTrans();
  714. $fail_imei = '';
  715. foreach ($ids as $id) {
  716. $imei = $this->deviceModel->where('id', $id)->value('imei');
  717. if (!$imei) {
  718. continue;
  719. }
  720. //下发日志
  721. $log_data = array(
  722. 'send_contents' => json_encode($config),
  723. 'imei' => $imei,
  724. 'type' => 'cmd',
  725. 'created_at' => time(),
  726. 'device_id' => $id
  727. );
  728. $id = Db::table('send_config_log')->insertGetId($log_data);
  729. if (!$id) {
  730. $fail_imei += $imei . ' ';
  731. Db::rollback();
  732. }
  733. $config['id'] = $id;
  734. $redis = Cache::store('redis')->handler();
  735. $res = $redis->rpush('c61_gps_device_configs_' . $imei, json_encode($config));
  736. if (!$res) {
  737. $fail_imei += $imei . ' ';
  738. Db::rollback();
  739. }
  740. }
  741. if ($fail_imei != '') {
  742. return CatchResponse::fail('操作失败');
  743. }
  744. Db::commit();
  745. return CatchResponse::success('操作成功');
  746. }
  747. /*
  748. 默认配置
  749. */
  750. public function getDefaultConfig()
  751. {
  752. $type_id = Db::table('sys_dict_type')->where('code', 'DeviceConfigDefault')->value('id');
  753. $list = Db::table('sys_dict_data')->where('type_id', $type_id)->field('code,value,sort')->select();
  754. $cnf1 = [];
  755. $cnf2 = [];
  756. $cnf3 = [];
  757. foreach ($list as $value) {
  758. if ($value['sort'] == 1) {
  759. // array_push($cnf1,[$value['code']=>$value['value']]);
  760. if ($value['value'] == 'true') {
  761. $value['value'] = true;
  762. }
  763. $cnf1[$value['code']] = $value['value'];
  764. }
  765. if ($value['sort'] == 2) {
  766. $cnf2[$value['code']] = $value['value'];
  767. }
  768. if ($value['sort'] == 3) {
  769. $cnf3[$value['code']] = $value['value'];
  770. $cnf3['stopped_rtc_invl'] = '50';
  771. $cnf3['stopped_rpt_invl'] = '300';
  772. }
  773. }
  774. $config = array(
  775. 'voice_config' => $cnf1,
  776. 'sensor_config' => $cnf2,
  777. 'gps_config' => $cnf3,
  778. );
  779. return CatchResponse::success($config);
  780. }
  781. }