Tool.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. $token = $_GET['token'];
  25. if (!$token || $token != '22723927C') {
  26. json_fail('缺少token或者token错误');
  27. }
  28. $param = json_decode(file_get_contents("php://input"), true);
  29. //校验imei是否存在
  30. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  31. json_fail('缺少设备IMEI号参数');
  32. }
  33. $Imei = $param['IMEI'];
  34. if (!$this->IsImei($Imei)) {
  35. json_fail('该Imei号不存在');
  36. }
  37. if (!($param['CntVersion']) || $param['CntVersion'] == '') {
  38. $param['CntVersion'] = 0;
  39. }
  40. $version = $param['CntVersion'];
  41. return $this->DataIssued($Imei, $version);
  42. }
  43. //收到的数据
  44. public function receive()
  45. {
  46. $token = $_GET['token'];
  47. if (!$token || $token != '22723927C') {
  48. json_fail('缺少token或者token不对');
  49. }
  50. $param = json_decode(file_get_contents("php://input"), true);
  51. //校验imei是否存在
  52. $where = [];
  53. if (!isset($param['Imei']) || $param['Imei'] == '') {
  54. json_fail('缺少设备IMEI号参数');
  55. }
  56. $Imei = $param['Imei'];
  57. //校验Imei是否存在
  58. if (!$this->IsImei($Imei)) {
  59. json_fail('该Imei号不存在');
  60. }
  61. if (!isset($param['CntVersion']) || $param['CntVersion'] == '') {
  62. json_fail('版本号不存在');
  63. }
  64. $version = $param['CntVersion'];
  65. if (!isset($param['Succ']) || $param['Succ'] == '') {
  66. json_fail('缺少返回结果', '', $Imei);
  67. }
  68. $Succ = $param['Succ'];
  69. if (!isset($param['Extra'])) {
  70. json_fail('缺少回复内容参数', '', $Imei);
  71. }
  72. $Extra = json_encode($param['Extra']);
  73. $where[] = ['PublishVersion', '=', $version];
  74. $where[] = ['Imei', '=', $Imei];
  75. $ack = Db::name("publish_ack")->where($where)->find();
  76. if (!$ack) {
  77. json_fail('没有找到下发记录', '', $Imei);
  78. }
  79. $data = [
  80. 'Succ' => $Succ,
  81. 'AckTime' => msectime(),
  82. 'Extra' => $Extra
  83. ];
  84. Db::name("publish_ack")->where($where)->update($data);
  85. return $this->DataIssued($Imei, $version);
  86. }
  87. /**
  88. * @Descripttion: 数据处理
  89. * @name: likang
  90. * @return {*}
  91. */
  92. private function DataIssued($Imei, $version)
  93. {
  94. $where1 = [
  95. ['ContentType', '<>', 'WorkRecord'],
  96. ['Imei', '=', NULL],
  97. ['Version', '>', $version]
  98. ];
  99. $where2 = [
  100. ['Imei', '<>', $Imei],
  101. ['ContentType', '=', 'WorkRecord'],
  102. ['Version', '>', $version]
  103. ];
  104. $where4 = [
  105. ['Imei', '=', $Imei],
  106. ['ContentType', '=', 'File'],
  107. ['Version', '>', $version]
  108. ];
  109. $where3 = [];
  110. $CntVersion = $version;
  111. $content = null;
  112. $list = Db::name('publish')
  113. ->whereOr([$where1, $where2, $where4])
  114. ->order('Version asc')->limit(5)->select();
  115. if ($list->isEmpty()) {
  116. return json_success('获取成功', $content, $Imei);
  117. }
  118. //目前不下发数据 截停
  119. return json_success('获取成功', $content, $Imei);
  120. foreach ($list as $key => $value) {
  121. $da = json_decode($value['Content'], true);
  122. //如果是下发计划的话,或取当前长传记录 记录下数据
  123. if ($value['ContentType'] == 'WorkPlan') {
  124. $where3[] = ['wind_number', '=', $da['wnum']];
  125. $where3[] = ['fan_number', '=', $da['fnum']];
  126. $where3[] = ['parts', '=', $da['parts']];
  127. $where3[] = ['work_sign', '=', $da['work']];
  128. $DD = WorkRecord::where($where3)->order('fastening_time desc')->value('fastening_torque');
  129. $da['lt'] = $DD ? $DD : 0;
  130. }
  131. $da['id'] = strval($da['id']);
  132. $content[] = [
  133. 'OpType' => $value['Type'],
  134. 'CntType' => $value['ContentType'],
  135. 'CntVersion' => strval($value['Version']),
  136. 'id' => strval($value['ContentId']),
  137. 'Content' => $da
  138. ];
  139. $CntVersion = strval($value['Version']);
  140. }
  141. //保存下发的记录
  142. $ack = [
  143. 'PublishVersion' => $CntVersion,
  144. 'PublishContent' => json_encode($content),
  145. 'Imei' => $Imei,
  146. 'AddTime' => msectime()
  147. ];
  148. Db::name('publish_ack')->save($ack);
  149. return json_success('获取成功', $content, $Imei);
  150. }
  151. /**
  152. * @Descripttion: Imei 是否存在
  153. * @name: likang
  154. * @param {*} $imei
  155. * @return {*}
  156. */
  157. private function IsImei($imei)
  158. {
  159. $data = Hydraulic::where('imei', $imei)->find();
  160. if ($data) {
  161. return true;
  162. } else {
  163. return false;
  164. }
  165. }
  166. }