DTux
/
dtux__moha
Archived
1
0
Fork 0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__moha/mqtt_functions.php

123 lines
3.0 KiB
PHP
Raw Normal View History

2021-12-30 16:18:32 +01:00
<?php
2022-12-05 12:23:43 +01:00
// mosquitto-php related functions
2022-01-17 00:18:50 +01:00
logger(DEBUG,"Including mqtt_functions.php");
2021-12-30 16:18:32 +01:00
function messageReceived($message)
2021-12-30 16:18:32 +01:00
{
2022-01-06 13:03:26 +01:00
global $topics, $logFh, $devices, $included;
2021-12-30 16:18:32 +01:00
$topic = explode ("/", $message->topic);
2022-01-08 23:45:38 +01:00
$callback = $topics[$topic[0]]->callback;
//logger(DEBUG, "message => " . var_export($message, true), __FILE__ . ":" . __LINE__);
2022-01-08 23:45:38 +01:00
$callback($topic, $message);
2021-12-30 16:18:32 +01:00
}
// payload is an array :
2022-01-17 00:18:50 +01:00
// $key is property and $value is value of the property
2021-12-30 16:18:32 +01:00
function publish($topic, $payloadArray, $commande="set") //, $eventKey)
2021-12-30 16:18:32 +01:00
{
2022-01-17 21:01:11 +01:00
global $client, $mids, $logFh, $testMode;
$string = $topic . "/" . $commande;
2022-01-17 21:01:11 +01:00
if ($testMode === false)
2021-12-30 16:18:32 +01:00
{
if ($client !== null)
2022-01-17 21:01:11 +01:00
{
$mid = $client->publish($string, json_encode($payloadArray) , 2);
if (isset($mids[$mid]))
{
//echo "unsetting mids" .EOL;
unset ($mids[$mid]);
}else
{
//echo "setting mids" .EOL;
$mids[$mid] = true;
}
logger(LOG_INFO, $logFh, "Publishing " . $string . " with payload => " . json_encode($payloadArray), __FILE__ . ":" . __LINE__);
2022-01-17 21:01:11 +01:00
}else
{
logger(ERROR, $logFh, "MQTT client is null not publishing " . $string . " with payload => " . json_encode($payloadArray), __FILE__ . ":" . __LINE__);
2022-01-17 21:01:11 +01:00
}
2021-12-30 16:18:32 +01:00
}else
{
2022-01-28 23:05:58 +01:00
logger(INFO, _("Test mode on: no publishing "), __FILE__ . ":" . __LINE__);
2021-12-30 16:18:32 +01:00
}
}
function connectResponse($r, $message)
{
global $connected;
2022-01-28 23:05:58 +01:00
//echo sprintf(_("I got code %d and message : '%s'"), $r, $message) . EOL;
2021-12-30 16:18:32 +01:00
switch ($r)
{
case 0:
2022-01-28 23:05:58 +01:00
logger(INFO, _("Successfull connection"), __FILE__ . ":" . __LINE__);
$connected = true;
2021-12-30 16:18:32 +01:00
break;
case 1:
2022-01-28 23:05:58 +01:00
logger(ERROR, _("Connection refused : unacceptable protocol version"), __FILE__ . ":" . __LINE__);
$connected = true;
2021-12-30 16:18:32 +01:00
break;
case 2:
2022-01-28 23:05:58 +01:00
logger(ERROR, _("Connection refused : identifier rejected"), __FILE__ . ":" . __LINE__);
$connected = true;
2021-12-30 16:18:32 +01:00
break;
case 3:
2022-01-28 23:05:58 +01:00
logger(ERROR, _("Connection refused (broker unavailable )"), __FILE__ . ":" . __LINE__);
$connected = true;
2021-12-30 16:18:32 +01:00
break;
}
}
function subscribeResponse($mid, $qosCount)
{
global $topics, $mids, $nSubscribed;
//print_r($mids);
2021-12-30 16:18:32 +01:00
$key = $mids[$mid];
2022-01-28 23:05:58 +01:00
logger(INFO, _("Subscribed to ") . $key, __FILE__ . ":" . __LINE__);
2021-12-30 16:18:32 +01:00
$topics[$key]->status = true;
$nSubscribed += 1;
}
function unsubscribeResponse($mid)
{
global $client; //$topics, $mids, $nSubscribed;
//$key = $mids[$mid];
2022-01-28 23:05:58 +01:00
logger(INFO, _("Unsubscribed", __FILE__ . ":" . __LINE__)); // from ") . $topics[$key]->name);
//$topics[$key]->status = false;
//$nSubscribed -= 1;
$client->disconnect();
2021-12-30 16:18:32 +01:00
}
function disconnectResponse($r)
{
global $connected;
if ($r != 0)
2021-12-30 16:18:32 +01:00
{
2022-01-28 23:05:58 +01:00
$str = _('Badly ');
2021-12-30 16:18:32 +01:00
}else
{
2022-01-28 23:05:58 +01:00
$str = _('Cleanly ');
2021-12-30 16:18:32 +01:00
}
2022-12-05 12:23:43 +01:00
logger(ALERT, $str . _("disconnected from server"));
$connected = false;
2021-12-30 16:18:32 +01:00
}
function publishResponse($mid)
{
global $mids, $events;
2022-01-28 23:05:58 +01:00
logger(LOG_INFO, sprintf(_("Event with mid = %d published by MQTT broker"), $mid), __FILE__ . ":" . __LINE__);
2021-12-30 16:18:32 +01:00
if (isset($mids[$mid]))
{
//echo "unsetting mids" . EOL;
2021-12-30 16:18:32 +01:00
unset ($mids[$mid]);
2022-01-06 13:03:26 +01:00
//print_r($mids);
2021-12-30 16:18:32 +01:00
}else
{
//echo "setting mids" . EOL;
2021-12-30 16:18:32 +01:00
$mids[$mid] = true;
}
}
?>