Api.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <?php
  2. /*
  3. * @Descripttion:
  4. * @version: 1.0.0
  5. * @Author: likang
  6. * @Date: 2022-08-12 10:33:24
  7. * @LastEditors: likang 1186820806@qq.com
  8. * @LastEditTime: 2023-02-20 15:46:44
  9. */
  10. namespace catchAdmin\api\controller;
  11. use catchAdmin\tag_history\model\TagHistory;
  12. use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
  13. use catcher\base\CatchRequest as Request;
  14. use catcher\CatchResponse;
  15. use catcher\base\CatchController;
  16. use \think\facade\Db;
  17. error_reporting(0);
  18. class Api extends CatchController
  19. {
  20. public function report()
  21. {
  22. $token = $_GET['token'];
  23. if (!$token || $token != '22723927C') {
  24. json_fail('缺少token或者token不对');
  25. }
  26. $param = json_decode(optimize_json(file_get_contents("php://input")), true);
  27. if (json_last_error() != 0) {
  28. json_fail('解析异常', json_last_error_msg());
  29. }
  30. $mac = $param['mac'];
  31. if (empty($mac)) {
  32. json_fail('mac地址不存在');
  33. }
  34. $data = [];
  35. foreach ($param['list'] as $item) {
  36. $data[] = [
  37. 'mac' => $mac,
  38. 'lable' => $item['label'],
  39. 'rssi' => $item['rssi'],
  40. 'time' => $item['time'],
  41. 'addTime' => time(),
  42. 'move' => $item['move'],
  43. 'step' => empty($item['step']) ? 0 : $item['step'],
  44. 'temperature' => empty($item['temperature']) ? 0 : $item['temperature'],
  45. //告警
  46. 'temperWarn' => empty($item['temperWarn']) ? 00 : $item['temperWarn'],
  47. ];
  48. }
  49. $tage = new TagHistory();
  50. $tage->saveAll($data);
  51. json_success('上传成功');
  52. }
  53. /**
  54. * 删除前1天的数据
  55. *
  56. * @return void
  57. */
  58. public function deleteHistory()
  59. {
  60. while(true)
  61. {
  62. $where[] = ['addTime','<',strtotime("-1 day")];
  63. Db::name('tag_history')->where($where)->delete();
  64. sleep(60*60*24);
  65. }
  66. }
  67. /**
  68. * 检测小程序版本版本 function
  69. *
  70. * @return void
  71. */
  72. public function detectionVersion(){
  73. $token = $_GET['token'];
  74. if (!$token || $token != '444333d3') {
  75. json_fail('缺少token或者token不对');
  76. }
  77. $data["url"]="";
  78. $data["version"]="1.0.0";
  79. json_success("查询版本成功",$data);
  80. }
  81. }