123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- <?php
- namespace catchAdmin\api\controller;
- use catchAdmin\hydraulic\model\Hydraulic;
- use catchAdmin\hydraulic\model\maintenancemapper;
- use catchAdmin\hydraulic\model\Wrench as ModelWrench;
- use catchAdmin\worklocation\model\WorkRecord;
- use catcher\base\CatchRequest as Request;
- use catcher\CatchResponse;
- use catcher\base\CatchController;
- use PhpParser\Node\Expr\FuncCall;
- use think\facade\Db;
- use Workerman\Worker;
- use Wrench;
- error_reporting(0);
- class Tool extends Base
- {
- /**
- * @Descripttion: 下发设备 携带的参数 imei号 版本号 上传心跳包
- * @name: likang
- * @return {*}
- */
- public function Issued()
- {
- $token = $_GET['token'];
- if (!$token || $token != '22723927C') {
- json_fail('缺少token或者token错误');
- }
- $param = json_decode(optimize_json(file_get_contents("php://input")), true);
- if (json_last_error() != 0) {
- json_fail('解析异常', json_last_error_msg());
- }
- //校验imei是否存在
- if (!isset($param['IMEI']) || $param['IMEI'] == '') {
- json_fail('缺少设备IMEI号参数');
- }
- $Imei = $param['IMEI'];
- if (!$this->IsImei($Imei)) {
- json_fail('该Imei号不存在');
- }
- if (!($param['CntVersion']) || $param['CntVersion'] == '') {
- $param['CntVersion'] = 0;
- }
- $version = $param['CntVersion'];
- return $this->DataIssued($Imei, $version);
- }
- //收到的数据
- public function receive()
- {
- $token = $_GET['token'];
- if (!$token || $token != '22723927C') {
- json_fail('缺少token或者token不对');
- }
- $test = $_GET['test'];
- if ($test) {
- //用于测试
- $dayt = hex2bin(file_get_contents("php://input"));
- var_dump($dayt);
- var_dump(optimize_json(hex2bin(file_get_contents("php://input"))));
- $param = json_decode(optimize_json(hex2bin(file_get_contents("php://input"))), true);
- var_dump($param);
- } else {
- $param = json_decode(optimize_json(file_get_contents("php://input")), true);
- }
- // $param = json_decode(optimize_json(file_get_contents("php://input")), true);
- if (json_last_error() != 0) {
- json_fail('解析异常', json_last_error_msg());
- }
- //校验imei是否存在
- $where = [];
- if (!isset($param['Imei']) || $param['Imei'] == '') {
- json_fail('缺少设备IMEI号参数');
- }
- $Imei = $param['Imei'];
- //校验Imei是否存在
- if (!$this->IsImei($Imei)) {
- json_fail('该Imei号不存在');
- }
- if (!isset($param['CntVersion']) || $param['CntVersion'] == '') {
- json_fail('版本号不存在');
- }
- $version = $param['CntVersion'];
- if (!isset($param['Succ']) || $param['Succ'] == '') {
- json_fail('缺少返回结果', '', $Imei);
- }
- $Succ = $param['Succ'];
- if (!isset($param['Extra'])) {
- json_fail('缺少回复内容参数', '', $Imei);
- }
- $Extra = json_encode($param['Extra']);
- $where[] = ['PublishVersion', '=', $version];
- $where[] = ['Imei', '=', $Imei];
- $ack = Db::name("publish_ack")->where($where)->find();
- if (!$ack) {
- json_fail('没有找到下发记录', '', $Imei);
- }
- $data = [
- 'Succ' => $Succ,
- 'AckTime' => msectime(),
- 'Extra' => $Extra
- ];
- Db::name("publish_ack")->where($where)->update($data);
- return $this->DataIssued($Imei, $version);
- }
- /**
- * @Descripttion: 数据处理
- * @name: likang
- * @return {*}
- */
- private function DataIssued($Imei, $version)
- {
- $where1 = [
- ['ContentType', '<>', 'WorkRecord'],
- ['Imei', '=', NULL],
- ['Version', '>', $version]
- ];
- $where2 = [
- ['Imei', '<>', $Imei],
- ['ContentType', '=', 'WorkRecord'],
- ['Version', '>', $version]
- ];
- $where4 = [
- ['Imei', '=', $Imei],
- ['Type', '=', 'directive'],
- ['Version', '>', $version]
- ];
- $where3 = [];
- $CntVersion = $version;
- $content = null;
- $list = Db::name('publish')
- ->whereOr([$where1, $where2, $where4])
- ->order('Version asc')->limit(5)->select();
- if ($list->isEmpty()) {
- return json_success('获取成功', $content, $Imei);
- }
- //目前不下发数据 截停
- //return json_success('获取成功', $content, $Imei);
- foreach ($list as $key => $value) {
- $da = json_decode($value['Content'], true);
- //如果是下发计划的话,或取当前长传记录 记录下数据
- if ($value['ContentType'] == 'WorkPlan') {
- $where3[] = ['wind_number', '=', $da['wnum']];
- $where3[] = ['fan_number', '=', $da['fnum']];
- $where3[] = ['parts', '=', $da['parts']];
- $where3[] = ['work_sign', '=', $da['work']];
- $DD = WorkRecord::where($where3)->order('fastening_time desc')->value('fastening_torque');
- $da['lt'] = $DD ? $DD : 0;
- }
- $da['id'] = strval($da['id']);
- $content[] = [
- 'OpType' => $value['Type'],
- 'CntType' => $value['ContentType'],
- 'CntVersion' => strval($value['Version']),
- 'id' => strval($value['ContentId']),
- 'Content' => $da
- ];
- $CntVersion = strval($value['Version']);
- }
- //保存下发的记录
- $ack = [
- 'PublishVersion' => $CntVersion,
- 'PublishContent' => json_encode($content),
- 'Imei' => $Imei,
- 'AddTime' => msectime()
- ];
- Db::name('publish_ack')->save($ack);
- return json_success('获取成功', $content, $Imei);
- }
- /**
- * @Descripttion: Imei 是否存在
- * @name: likang
- * @param {*} $imei
- * @return {*}
- */
- private function IsImei($imei)
- {
- $data = Hydraulic::where('imei', $imei)->find();
- if ($data) {
- return true;
- } else {
- return false;
- }
- }
- }
|