Tool.php 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. namespace catchAdmin\api\controller;
  3. use catchAdmin\hydraulic\model\Hydraulic;
  4. use catchAdmin\hydraulic\model\maintenancemapper;
  5. use catchAdmin\hydraulic\model\Wrench as ModelWrench;
  6. use catchAdmin\worklocation\model\WorkRecord;
  7. use catcher\base\CatchRequest as Request;
  8. use catcher\CatchResponse;
  9. use catcher\base\CatchController;
  10. use PhpParser\Node\Expr\FuncCall;
  11. use think\facade\Db;
  12. use Workerman\Worker;
  13. use Wrench;
  14. error_reporting(0);
  15. class Tool extends Base
  16. {
  17. /**
  18. * @Descripttion: 下发设备 携带的参数 imei号 版本号
  19. * @name: likang
  20. * @return {*}
  21. */
  22. public function Issued()
  23. {
  24. $param = json_decode(file_get_contents("php://input"), true);
  25. //校验imei是否存在
  26. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  27. json_fail('缺少设备IMEI号参数');
  28. }
  29. $Imei = $param['IMEI'];
  30. if (!$this->IsImei($Imei)) {
  31. json_fail('该Imei号不存在');
  32. }
  33. if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
  34. $param['SoftVersion'] = 0;
  35. }
  36. $param['SoftVersion'] = 1658387272908;
  37. $version = $param['SoftVersion'];
  38. return $this->DataIssued($Imei, $version);
  39. }
  40. //收到的数据
  41. public function receive()
  42. {
  43. $param = json_decode(file_get_contents("php://input"), true);
  44. //校验imei是否存在
  45. $where = [];
  46. if (!isset($param['Imei']) || $param['Imei'] == '') {
  47. json_fail('缺少设备IMEI号参数');
  48. }
  49. $Imei = $param['Imei'];
  50. //校验Imei是否存在
  51. if (!$this->IsImei($Imei)) {
  52. json_fail('该Imei号不存在');
  53. }
  54. if (!isset($param['CntVersion']) || $param['CntVersion'] == '') {
  55. $param['CntVersion'] = 0;
  56. }
  57. $version = $param['CntVersion'];
  58. if (!isset($param['Succ']) || $param['Succ'] == '') {
  59. json_fail('缺少返回结果', '', $Imei);
  60. }
  61. $Succ = $param['Succ'];
  62. if (!isset($param['Extra'])) {
  63. json_fail('缺少回复内容参数', '', $Imei);
  64. }
  65. $Extra = $param['Extra'];
  66. $where[] = ['PublishVersion', '=', $version];
  67. $where[] = ['Imei', '=', $Imei];
  68. $ack = Db::name("publish_ack")->where($where)->find();
  69. if (!$ack) {
  70. json_fail('没有找到下发记录', '', $Imei);
  71. }
  72. $data = [
  73. 'Succ' => $Succ,
  74. 'AckTime' => msectime(),
  75. 'Extra' => $Extra
  76. ];
  77. Db::name("publish_ack")->where($where)->update($data);
  78. return $this->DataIssued($Imei, $version);
  79. }
  80. /**
  81. * @Descripttion: 数据处理
  82. * @name: likang
  83. * @return {*}
  84. */
  85. private function DataIssued($Imei, $version)
  86. {
  87. $where1 = [
  88. ['ContentType', '<>', 'WorkRecord'],
  89. ['Imei', '=', NULL],
  90. ['Version', '>', $version]
  91. ];
  92. $where2 = [
  93. ['Imei', '<>', $Imei],
  94. ['ContentType', '=', 'WorkRecord'],
  95. ['Version', '>', $version]
  96. ];
  97. $where4 = [
  98. ['Imei', '=', $Imei],
  99. ['ContentType', '=', 'File'],
  100. ['Version', '>', $version]
  101. ];
  102. $where3 = [];
  103. $CntVersion = $version;
  104. $content = null;
  105. $list = Db::name('publish')
  106. ->whereOr([$where1, $where2, $where4])
  107. ->order('Version asc')->limit(5)->select();
  108. if ($list->isEmpty()) {
  109. return json_success('获取成功', $content, $Imei);
  110. }
  111. foreach ($list as $key => $value) {
  112. $da = json_decode($value['Content'], true);
  113. //如果是下发计划的话,或取当前长传记录 记录下数据
  114. if ($value['ContentType'] == 'WorkPlan') {
  115. $where3[] = ['wind_number', '=', $da['wnum']];
  116. $where3[] = ['fan_number', '=', $da['fnum']];
  117. $where3[] = ['parts', '=', $da['parts']];
  118. $where3[] = ['work_sign', '=', $da['work']];
  119. $da['lt'] = WorkRecord::where($where3)->order('fastening_time desc')->value('fastening_torque');
  120. }
  121. $da['id'] = strval($da['id']);
  122. $content[] = [
  123. 'OpType' => $value['Type'],
  124. 'CntType' => $value['ContentType'],
  125. 'CntVersion' => strval($value['Version']),
  126. 'id' => strval($value['ContentId']),
  127. 'Content' => $da
  128. ];
  129. $CntVersion = strval($value['Version']);
  130. }
  131. //保存下发的记录
  132. $ack = [
  133. 'PublishVersion' => $CntVersion,
  134. 'PublishContent' => json_encode($content),
  135. 'Imei' => $Imei,
  136. 'AddTime' => msectime()
  137. ];
  138. Db::name('publish_ack')->save($ack);
  139. return json_success('获取成功', $content, $Imei);
  140. }
  141. /**
  142. * @Descripttion: Imei 是否存在
  143. * @name: likang
  144. * @param {*} $imei
  145. * @return {*}
  146. */
  147. private function IsImei($imei)
  148. {
  149. $data = Hydraulic::where('imei', $imei)->find();
  150. if ($data) {
  151. return true;
  152. } else {
  153. return false;
  154. }
  155. }
  156. }