Api.php 9.9 KB

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