Api.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. <?php
  2. namespace catchAdmin\api\controller;
  3. use catchAdmin\alarm\model\AlarmRecords;
  4. use catchAdmin\hydraulic\model\DeviceMold;
  5. use catchAdmin\hydraulic\model\Hydraulic as ModelHydraulic;
  6. use catchAdmin\hydraulic\model\maintenancemapper;
  7. use catchAdmin\permissions\model\Users;
  8. use catchAdmin\wind\model\Fan;
  9. use catchAdmin\wind\model\Wind;
  10. use catchAdmin\worklocation\model\WorkRecord as ModelWorkRecord;
  11. use catcher\base\CatchRequest as Request;
  12. use catcher\CatchResponse;
  13. use catcher\base\CatchController;
  14. use Hydraulic;
  15. use \think\facade\Db;
  16. use Workerman\Worker;
  17. use WorkRecord;
  18. error_reporting(0);
  19. class Api extends CatchController
  20. {
  21. //设备告警
  22. public function alarm()
  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. $aram = new AlarmRecords();
  41. $content = [
  42. 'device_number' => $Imei,
  43. 'alarm_type' => $param['Type'],
  44. 'alarm_reason' => $param['Reason'],
  45. 'comment' => json_encode($param['Data']),
  46. 'start_time' => $param['Time'],
  47. ];
  48. $aram->save($content);
  49. return json_success('获取成功', '', $Imei);
  50. }
  51. /**
  52. * @Descripttion: 上传紧固模式
  53. * @name: likang
  54. * @return {*}
  55. */
  56. public function UploadWorkRecordFA()
  57. {
  58. $token = $_GET['token'];
  59. if (!$token || $token != '22723927C') {
  60. json_fail('缺少token或者token不对');
  61. }
  62. $param = json_decode(optimize_json(file_get_contents("php://input")), true);
  63. if (json_last_error() != 0) {
  64. json_fail('解析异常', json_last_error_msg());
  65. }
  66. //校验imei是否存在
  67. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  68. json_fail('缺少设备IMEI号参数');
  69. }
  70. $Imei = $param['IMEI'];
  71. if (!$this->IsImei($Imei)) {
  72. json_fail('该Imei号不存在');
  73. }
  74. if (!($param['PublishVersion']) || $param['PublishVersion'] == '') {
  75. $param['PublishVersion'] = 0;
  76. }
  77. $version = $param['PublishVersion'];
  78. $content = $this->Conversion($param, 1);
  79. $this->IssuedWorkRecord($content, $Imei);
  80. return json_success('获取成功', '', $Imei);
  81. }
  82. /**
  83. * @Descripttion: 上传维护模式
  84. * @name: likang
  85. * @return {*}
  86. */
  87. public function UploadWorkRecordMA()
  88. {
  89. $token = $_GET['token'];
  90. if (!$token || $token != '22723927C') {
  91. json_fail('缺少token或者token不对');
  92. }
  93. $param = json_decode(optimize_json(file_get_contents("php://input")), true);
  94. if (json_last_error() != 0) {
  95. json_fail('解析异常', json_last_error_msg());
  96. }
  97. //校验imei是否存在
  98. if (!isset($param['IMEI']) || $param['IMEI'] == '') {
  99. json_fail('缺少设备IMEI号参数');
  100. }
  101. $Imei = $param['IMEI'];
  102. if (!$this->IsImei($Imei)) {
  103. json_fail('该Imei号不存在');
  104. }
  105. if (!($param['PublishVersion']) || $param['PublishVersion'] == '') {
  106. $param['PublishVersion'] = 0;
  107. }
  108. $version = $param['PublishVersion'];
  109. $content = $this->Conversion($param, 2);
  110. $this->IssuedWorkRecord($content, $Imei);
  111. return json_success('获取成功', '', $Imei);
  112. }
  113. /**
  114. * @Descripttion: Imei 是否存在
  115. * @name: likang
  116. * @param {*} $imei
  117. * @return {*}
  118. */
  119. private function IsImei($imei)
  120. {
  121. $data = ModelHydraulic::where('imei', $imei)->find();
  122. if ($data) {
  123. return true;
  124. } else {
  125. return false;
  126. }
  127. }
  128. /**
  129. * @Descripttion:
  130. * @name: likang
  131. * @param {*} $data 数据内容
  132. * @param {*} $type 工作类型
  133. * @return {*}
  134. */
  135. private function Conversion($data, $type)
  136. {
  137. $content = [];
  138. $content['creator_id'] = Users::where('username', $data['Username'])->value('id');
  139. $content['wrench_number'] = trim($data['WrenchNumber']);
  140. $content['wind_number'] = trim($data['WindFieldNumber']);
  141. $content['fan_number'] = trim($data['TurbineNumber']);
  142. $content['fan_model'] = trim($data['Model']);
  143. $content['parts'] = trim($data['PartNumber']);
  144. $content['work_sign'] = trim($data['WorkPos']);
  145. $content['boit_type'] = trim($data['BoltModel']);
  146. $content['bolt_number'] = trim($data['BoltNumber']);
  147. $content['boit_total'] = trim($data['BoltTotal']);
  148. $content['set_torque'] = trim($data['SetTorque']);
  149. $content['fastening_torque'] = trim($data['FasteningTorque']);
  150. $content['set_stress'] = trim($data['SetStress']);
  151. $content['fastening_stress'] = trim($data['FasteningStress']);
  152. $content['fastening_status'] = trim($data['FasteningStatus']);
  153. $content['fastening_time'] = trim($data['Time']);
  154. $content['move_angle'] = trim($data['WrenchAngle']);
  155. $content['imei'] = trim($data['IMEI']);
  156. $content['FasteningStatus'] = trim($data['FasteningStatus']);
  157. if ($type == 2) {
  158. $content['wrench_type'] = trim($data['FasteningStatus']);
  159. if ($data['FasteningStatus'] == 3) {
  160. if ($content['move_angle'] > 2) {
  161. $content['FasteningStatus'] = 2;
  162. }
  163. } else {
  164. $content['FasteningStatus'] = 1;
  165. }
  166. } else {
  167. $content['wrench_type'] = 1;
  168. }
  169. $workRecod = new ModelWorkRecord();
  170. $bool = $workRecod->save($content);
  171. //校验工作
  172. // //校验风机编号
  173. // $this->CheckFanNumber($content['wind_number'], $content['fan_number'], $content['fan_model'], $content['creator_id']);
  174. // //校验部件
  175. // $this->CheckParts($content['parts'], $content['creator_id']);
  176. // //校验工作位置
  177. // $this->CheckWork($content['fan_model'], $content['parts'], $content['work_sign'], $content['creator_id']);
  178. return $content;
  179. //下发上传的记录
  180. }
  181. /**
  182. * @Descripttion: 下发工作记录
  183. * @name: likang
  184. * @return {*}
  185. */
  186. private function IssuedWorkRecord($content, $IMEI)
  187. {
  188. $where = [];
  189. $data = [
  190. 'id' => $content['wind_number'] . '_' . $content['fan_number'] . '_' . $content['fan_model'] . '_' . $content['parts'] . '_' . $content['work_sign'],
  191. 'wnum' => $content['wind_number'],
  192. 'fnum' => $content['fan_number'],
  193. 'fmodel' => $content['fan_model'],
  194. 'parts' => $content['parts'],
  195. 'work' => $content['work_sign'],
  196. 'bnum' => $content['boit_total'],
  197. 'torque' => $content['fastening_torque']
  198. ];
  199. $time = msectime();
  200. $where[] = ['ContentId', '=', $data['id']];
  201. $where[] = ['ContentType', '=', 'WorkRecord'];
  202. $bool = Db::name('publish')->where($where)->find();
  203. if ($bool) {
  204. $addContent = [
  205. 'Imei' => $IMEI,
  206. 'Type' => 'update',
  207. 'Version' => $time,
  208. 'Content' => json_encode($data)
  209. ];
  210. Db::name('publish')->where($where)->update($addContent);
  211. } else {
  212. $addContent = [
  213. 'Imei' => $IMEI,
  214. 'Type' => 'add',
  215. 'Version' => $time,
  216. 'Content' => json_encode($data),
  217. 'ContentId' => $data['id'],
  218. 'AddTime' => $time,
  219. 'Status' => 1,
  220. 'ContentType' => 'WorkRecord'
  221. ];
  222. Db::name('publish')->save($addContent);
  223. }
  224. }
  225. /**
  226. * @Descripttion: 校验该风机机位号是否存在 不存在则创建并下发
  227. * @name: likang
  228. * @param {*} $wind_number 风场编号
  229. * @param {*} $number
  230. * @param {*} $fan_model
  231. * @return {*}
  232. */
  233. public function CheckFanNumber($wind_number, $number, $fan_model, $creator_id)
  234. {
  235. $wind_id = Wind::where('number', $wind_number)->value('id');
  236. $fan_model_id = DeviceMold::where('device_type', 4)->where('name', $fan_model)->value('id');
  237. $where = [];
  238. $where[] = ['wind_id', '=', $wind_id];
  239. $where[] = ['number', '=', $number];
  240. $where[] = ['fan_model', '=', $fan_model_id];
  241. $bool = Fan::where($where)->find();
  242. if (!$bool) {
  243. $content = [
  244. 'wind_id' => $wind_id,
  245. 'number' => $number,
  246. 'fan_model' => $fan_model_id,
  247. 'creator_id' => $creator_id
  248. ];
  249. $fan = new Fan();
  250. $fan->save($content);
  251. }
  252. }
  253. /**
  254. * @Descripttion: 校验部件是否存在 不存在则添加上
  255. * @name: likang
  256. * @param {*} $parts_name
  257. * @param {*} $creator_id
  258. * @return {*}
  259. */
  260. public function CheckParts($parts_name, $creator_id)
  261. {
  262. $bool = maintenancemapper::where('device_type', 1)->where('name', $parts_name)->find();
  263. if (!$bool) {
  264. $Mainten = new maintenancemapper();
  265. $content = [
  266. 'device_type' => 1,
  267. 'value' => msectime(),
  268. 'name' => $parts_name,
  269. 'creator_id' => $creator_id
  270. ];
  271. $Mainten->save($content);
  272. }
  273. }
  274. /**
  275. * @Descripttion:
  276. * @name: likang
  277. * @return {*}
  278. */
  279. public function CheckWork($Fan_model, $parts, $work_name, $creator_id)
  280. {
  281. $where = [];
  282. $model_id = DeviceMold::where('device_type', 4)->where('name', $Fan_model)->value('id');
  283. $parts = maintenancemapper::where('device_type', 1)->where('name', $parts)->value('value');
  284. $where[] = ['fan_model', '=', $model_id];
  285. $where[] = ['parts', '=', $parts];
  286. $where[] = ['device_type', '=', 2];
  287. $bool = maintenancemapper::where($where)->where('name', $work_name)->find();
  288. if (!$bool) {
  289. $Mainten = new maintenancemapper();
  290. $content = [
  291. 'device_type' => 2,
  292. 'fan_model' => $model_id,
  293. 'parts' => $parts,
  294. 'value' => msectime(),
  295. 'name' => $work_name,
  296. 'creator_id' => $creator_id
  297. ];
  298. $Mainten->save($content);
  299. }
  300. }
  301. }