Api.php 10 KB

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