Api.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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-04-18 17:06:51
  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. debug_log("上报数据",json_encode($param));
  28. if (json_last_error() != 0) {
  29. json_fail('解析异常', json_last_error_msg());
  30. }
  31. $mac = $param['mac'];
  32. if (empty($mac)) {
  33. json_fail('mac地址不存在');
  34. }
  35. $data = [];
  36. foreach ($param['list'] as $item) {
  37. // $onetime= TagHistory::where("mac",$mac)->where('lable',$item['label'])->order("id","desc")->value("time");
  38. $data[] = [
  39. 'mac' => $mac,
  40. 'lable' => $item['label'],
  41. 'rssi' => $item['rssi'],
  42. 'time' => $item['time'],
  43. 'addTime' => time(),
  44. 'move' => $item['move'],
  45. 'step' => empty($item['step']) ? 0 : $item['step'],
  46. 'temperature' => empty($item['temperature']) ? 0 : $item['temperature'],
  47. //告警
  48. 'temperWarn' => empty($item['temperWarn']) ? 00 : $item['temperWarn'],
  49. // "interval_time"=>empty($onetime) ?0:($item['time']-$onetime)
  50. ];
  51. }
  52. $tage = new TagHistory();
  53. $tage->saveAll($data);
  54. json_success('上传成功');
  55. }
  56. //储存数据到mysql
  57. // public function redis_to_mysql(){
  58. // Cache::store('redis')->
  59. // }
  60. /**
  61. * 删除前1天的数据
  62. *
  63. * @return void
  64. */
  65. public function deleteHistory()
  66. {
  67. while(true)
  68. {
  69. $where[] = ['addTime','<',strtotime("-1 day")];
  70. Db::name('tag_history')->where($where)->delete();
  71. sleep(60*60*24);
  72. }
  73. }
  74. /**
  75. * 检测小程序版本版本 function
  76. *
  77. * @return void
  78. */
  79. public function detectionVersion(){
  80. $token = $_GET['token'];
  81. if (!$token || $token != '444333d3') {
  82. json_fail('缺少token或者token不对');
  83. }
  84. $data["url"]="http://116.62.220.88:8112/static/app/蓝牙小程序/1.1.1/rl-release.apk";
  85. $data["version"]="1.1.1";
  86. json_success("查询版本成功",$data);
  87. }
  88. }