123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?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;
- class Tool extends Base
- {
- /**
- * @Descripttion: 下发设备 携带的参数 imei号 版本号
- * @name: likang
- * @return {*}
- */
- public function Issued()
- {
- $param = json_decode(file_get_contents("php://input"), true);
- //校验imei是否存在
- if (!isset($param['IMEI']) || $param['IMEI'] == '') {
- json_fail('缺少设备IMEI号参数');
- }
- $Imei = $param['IMEI'];
- if (!$this->IsImei($Imei)) {
- json_fail('该Imei号不存在');
- }
- if (!($param['SoftVersion']) || $param['SoftVersion'] == '') {
- $param['SoftVersion'] = 0;
- }
- $version = $param['SoftVersion'];
- return $this->DataIssued($Imei, $version);
- }
- //收到的数据
- public function receive()
- {
- $param = json_decode(file_get_contents("php://input"), true);
- //校验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'] == '') {
- $param['CntVersion'] = 0;
- }
- $version = $param['CntVersion'];
- if (!isset($param['Succ']) || $param['Succ'] == '') {
- json_fail('缺少返回结果', '', $Imei);
- }
- $Succ = $param['Succ'];
- if (!isset($param['Extra'])) {
- json_fail('缺少回复内容参数', '', $Imei);
- }
- $Extra = $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 = [
- // ['Imei', '<>', $Imei],
- ['Version', '>', $version]
- ];
- $where2 = [
- ['Imei', '=', $Imei],
- ['ContentType', '=', 'File'],
- ['Version', '>', $version]
- ];
- $where3 = [];
- $CntVersion = $version;
- $content = null;
- $list = Db::name('publish')
- ->whereOr([$where1, $where2])
- ->order('Version asc')->limit(5)->select();
- if ($list->isEmpty()) {
- 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']];
- $da['lt'] = WorkRecord::where($where3)->order('fastening_time desc')->value('fastening_torque');
- }
- $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;
- }
- }
- }
|