LIVESTOCK_MQTT_PUBLISH.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <?php
  2. require('../vendor/autoload.php');
  3. use \PhpMqtt\Client\MqttClient;
  4. use \PhpMqtt\Client\ConnectionSettings;
  5. use think\facade\Cache;
  6. date_default_timezone_set("PRC");
  7. // define('HOST', '127.0.0.1');
  8. // define('PORT', '6379');
  9. // define('PASSWORD', '123456');
  10. // define('DATABASE', 2);
  11. define('HOST', 'r-bp1eebab79320044pd.redis.rds.aliyuncs.com');
  12. define('PORT', '6379');
  13. define('PASSWORD', '7e2b5c91e438be3c!');
  14. define('DATABASE', 4);
  15. use \think\facade\Db;
  16. function app_redis()
  17. {
  18. static $redis = null;
  19. static $conn = false;
  20. if (!$conn) {
  21. connect: //定义标签
  22. $redis = new Redis();
  23. try {
  24. //建立的Redis短连接,在请求结束后不会自动关闭,相当于持久连接.
  25. $conn = $redis->connect(HOST, PORT);
  26. $conn = $redis->auth(PASSWORD);
  27. $conn = $redis->select(DATABASE);
  28. // 连接成功,返回$redis对象,连接失败,返回false.
  29. return ($conn === true) ? $redis : false;
  30. } catch (Exception $e) {
  31. return false;
  32. }
  33. } else {
  34. // 这里假设PHP-FPM在处理一个请求的时间内,Redis连接都是可用的.
  35. // 所以只在PHP-CLI下检查Redis连接的状态,进行断线重连.
  36. if (php_sapi_name() === 'cli') {
  37. try {
  38. // ping用于检查当前连接的状态,成功时返回+PONG,失败时抛出一个RedisException对象.
  39. // ping失败时警告:
  40. // Warning: Redis::ping(): connect() failed: Connection refused
  41. // var_dump('AAAAAAAAA', $redis);
  42. echo 'Redis 连接状态' . $redis->ping() . PHP_EOL;
  43. @$redis->ping();
  44. if (!$redis->ping()) {
  45. goto connect; //跳转到标签出继续执行连接操作
  46. }
  47. } catch (Exception $e) {
  48. // 信息如 Connection lost 或 Redis server went away
  49. echo $e->getMessage();
  50. echo 'Redis 连接失败 重新连接:' . PHP_EOL;
  51. // 断线重连
  52. goto connect;
  53. }
  54. }
  55. return $redis;
  56. }
  57. }
  58. function sendConfig($topic,$config)
  59. {
  60. }
  61. function updateSendResult($msgid){
  62. $conn = new mysqli('rm-bp1h3uqkzy66ckt8yro.mysql.rds.aliyuncs.com', 'dev', '711e7D69f9d0c3f1', 'smart_livestock');
  63. // $conn = new mysqli('127.0.0.1', 'root', 'root', 'smart_livestock');
  64. if ($conn -> connect_errno) {
  65. printf("Connect failed: %s\n", $conn->connect_error);
  66. exit();
  67. }
  68. $sql = "UPDATE send_config_log SET result='1' WHERE id=".$msgid;
  69. if ($conn->query($sql) === TRUE) {
  70. echo "send_config_log update success";
  71. } else {
  72. echo "更新失败: " . $conn->error;
  73. }
  74. }
  75. $server = '116.62.220.88';
  76. $port = 1883;
  77. $clientId = 'mqtt_livestock_config_cli';
  78. $username = 'rl517';
  79. $password = "rlian2022";
  80. $clean_session = false;
  81. $connectionSettings = new ConnectionSettings();
  82. $connectionSettings = $connectionSettings
  83. ->setUsername($username)
  84. ->setPassword($password)
  85. ->setKeepAliveInterval(60)
  86. // Last Will 设置
  87. // ->setLastWillTopic('emqx/test/last-will')
  88. // ->setLastWillMessage('client disconnect')
  89. // ->setLastWillQualityOfService(1)
  90. ;
  91. $mqtt = new MqttClient($server, $port, $clientId);
  92. $mqtt->connect($connectionSettings, $clean_session);
  93. echo 'connect OK'.PHP_EOL;
  94. $redis=app_redis();
  95. while (1) {
  96. $jsonData= $redis->rpop("device_mqtt_config_list");
  97. if(!$jsonData){
  98. sleep(3);
  99. continue;
  100. }
  101. $data=json_decode($jsonData,true);
  102. $topic="earings/".$data['device_id']."/coludControl";
  103. $config=[];
  104. if($data['type']=='exe'){
  105. $config=[
  106. $data['type']=>$data['config']
  107. ];
  108. }else{
  109. $config=[
  110. $data['type']=>[
  111. "config"=>$data['config']
  112. ]
  113. ];
  114. }
  115. $config_json=json_encode($config);
  116. var_dump($config_json);
  117. echo 'topic:'.$topic.PHP_EOL;
  118. echo 'config:'.$config_json.PHP_EOL;
  119. // $res=sendConfig($topic,$config_json);
  120. $res=$mqtt->publish(
  121. $topic,
  122. $config_json,
  123. 1
  124. );
  125. updateSendResult($data['msgid']);
  126. // if($res){
  127. // Db::table('send_config_log')->where('id',$data['msgid'])->update(['result'=>'1']);
  128. // }
  129. // var_dump($res);
  130. }