Tool.php 6.3 KB

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