2021-12-30 16:18:32 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
//Constants
|
|
|
|
define( "EOL", "\n");
|
|
|
|
define("Z2M", "zigbee2mqtt");
|
|
|
|
|
2022-01-02 13:07:02 +01:00
|
|
|
|
2021-12-30 16:18:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
declare(ticks = 1);
|
|
|
|
|
2021-12-31 23:09:58 +01:00
|
|
|
$listProperties = array("powerSource" => "batterie");
|
|
|
|
$listPropertiesKeys = array("property");
|
2021-12-30 16:18:32 +01:00
|
|
|
|
2022-01-02 13:07:02 +01:00
|
|
|
include "class/main.php";
|
2021-12-30 16:18:32 +01:00
|
|
|
|
|
|
|
//global variables
|
|
|
|
$topics = array(); // list of topics
|
|
|
|
$mids = array(); // list of message IDs
|
|
|
|
$devices = array(); // array of device objetcs
|
|
|
|
$indexDevices = array(); // index devices by ieee_address
|
2022-01-01 06:26:02 +01:00
|
|
|
$hooks = array(); // array of hooks
|
|
|
|
$notificationMethods = array(); // array of notification methods objects
|
|
|
|
$events = array(); // list of event objects
|
|
|
|
$changed = array(); // list of changed devices
|
2021-12-30 16:18:32 +01:00
|
|
|
$dbInit = false; // flag to indicate that desvices db is initialized
|
|
|
|
$connected = false; // connected to MQTT server
|
|
|
|
$included = false; // flag indicate scripts are loaded
|
2022-01-02 13:17:51 +01:00
|
|
|
$nSubscribed = 0; // Number of topics subsribed
|
2022-01-01 06:26:02 +01:00
|
|
|
$logFh = null; // filehandle of log file
|
2021-12-30 16:18:32 +01:00
|
|
|
|
|
|
|
// topics definition
|
|
|
|
$topics["zigbee2mqtt"] = new topic;
|
|
|
|
|
|
|
|
// gettext
|
|
|
|
bindtextdomain("moha", "./locale");
|
|
|
|
textdomain("moha");
|
|
|
|
|
2021-12-31 14:34:20 +01:00
|
|
|
if (!init()) exit(1);
|
2021-12-30 16:18:32 +01:00
|
|
|
|
2021-12-31 14:34:20 +01:00
|
|
|
require "mqtt_functions.php";
|
|
|
|
require "utils.php";
|
|
|
|
require "events.php";
|
|
|
|
require "db_functions.php";
|
2021-12-30 16:18:32 +01:00
|
|
|
|
|
|
|
$client = new Mosquitto\Client();
|
2022-01-02 13:07:02 +01:00
|
|
|
|
|
|
|
// log levels
|
|
|
|
define( "DEBUG", $client->LOG_DEBUG);
|
2022-01-02 13:17:51 +01:00
|
|
|
define( "INFO", $client->LOG_INFO);
|
|
|
|
define( "NOTICE", $client->LOG_NOTICE);
|
|
|
|
define( "WARNING", $client->LOG_WARNING);
|
|
|
|
define( "ERROR", $client->LOG_ERR);
|
2022-01-02 13:22:20 +01:00
|
|
|
define( "ALL", DEBUG | INFO | NOTICE | WARNING | ERROR);
|
2022-01-02 13:17:51 +01:00
|
|
|
$logLevel = DEBUG;
|
2022-01-02 13:47:41 +01:00
|
|
|
$notificationLevel = WARNING | ERROR;
|
2022-01-02 13:07:02 +01:00
|
|
|
|
|
|
|
// defining callback functions
|
2021-12-30 16:18:32 +01:00
|
|
|
$client->onConnect('connectResponse');
|
|
|
|
$client->onDisconnect('disconnectResponse');
|
|
|
|
$client->onSubscribe('subscribeResponse');
|
2022-01-01 07:35:50 +01:00
|
|
|
$client->onUnsubscribe('unsubscribeResponse');
|
2021-12-30 16:18:32 +01:00
|
|
|
$client->onMessage('message');
|
|
|
|
$client->onLog('logger');
|
|
|
|
$client->onPublish('publishResponse');
|
|
|
|
|
|
|
|
|
2021-12-31 14:34:20 +01:00
|
|
|
//signal handling
|
|
|
|
pcntl_signal(SIGTERM, 'signalHandler');// Termination ('kill' was called)
|
|
|
|
pcntl_signal(SIGHUP, 'signalHandler'); // Terminal log-out
|
|
|
|
pcntl_signal(SIGINT, 'signalHandler');
|
|
|
|
|
|
|
|
// Program start
|
|
|
|
$client->connect("192.168.1.253", 1883, 5);
|
2021-12-30 16:18:32 +01:00
|
|
|
foreach($topics as $name => $topic)
|
|
|
|
{
|
|
|
|
//echo $name;
|
|
|
|
$topic->mid = $client->subscribe($name . "/#", 2);
|
|
|
|
$mids[$topic->mid] = $name;
|
|
|
|
$topic->status = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
{
|
|
|
|
$client->loop();
|
2021-12-31 23:09:58 +01:00
|
|
|
if ($dbInit == 2 and ! $included)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
$hooksList = array();
|
|
|
|
loadHooks("./hooks", $hooksList);
|
|
|
|
//print_r($hooksList);
|
|
|
|
if (!empty($hooksList))
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
foreach ($hooksList as $hook)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
echo "Including $hook" . EOL;
|
2021-12-30 16:18:32 +01:00
|
|
|
include $hook;
|
|
|
|
}
|
|
|
|
}
|
2021-12-31 23:09:58 +01:00
|
|
|
}elseif($dbInit == 2 and $included)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
|
|
|
checkEvents();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
endMoha();
|
|
|
|
|
|
|
|
function init()
|
|
|
|
{
|
|
|
|
global $logFh, $client;
|
|
|
|
date_default_timezone_set('Europe/Paris');
|
2021-12-31 14:34:20 +01:00
|
|
|
|
2021-12-30 16:18:32 +01:00
|
|
|
if (! $logFh = fopen("moha.log", "w") )
|
|
|
|
{
|
|
|
|
echo _("error opening log file");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-12-31 23:09:58 +01:00
|
|
|
function loadHooks($dir, &$hookList)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
|
|
|
global $included;
|
|
|
|
$files = scandir($dir);
|
|
|
|
//print_r($files);
|
|
|
|
foreach ($files as $file)
|
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
//echo "=====> $file" . EOL;
|
|
|
|
|
|
|
|
if ($file != "." and $file != "..")
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
//echo "not . or .." . EOL;echo strpos($file, ".php", -4) . EOL;
|
|
|
|
if (is_dir($dir . "/" . $file))
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
//echo "directory : " . $dir . '/' . $file . EOL;
|
|
|
|
loadHooks($dir . '/' . $file, $hookList);
|
|
|
|
}elseif (strpos($file, ".php", -4) !== false)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
2021-12-31 23:09:58 +01:00
|
|
|
//echo "file : " . $dir . "/" . $file . EOL;
|
2021-12-30 16:18:32 +01:00
|
|
|
$hookList[] = $dir . "/" . $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//print_r($hookList);
|
|
|
|
$included = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function endMoha()
|
|
|
|
{
|
2022-01-01 07:35:50 +01:00
|
|
|
global $topics, $nSubscribed ,$client, $logFh, $connected;
|
2021-12-30 16:18:32 +01:00
|
|
|
$x = 0;
|
2022-01-01 07:35:50 +01:00
|
|
|
/*foreach($topics as $topic => $object)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
|
|
|
if ($object->status)
|
2022-01-01 07:35:50 +01:00
|
|
|
{*/
|
|
|
|
$mid = $client->unsubscribe("#");
|
|
|
|
/*$mids[$mid] = $topic;
|
2021-12-30 16:18:32 +01:00
|
|
|
}
|
2022-01-01 07:35:50 +01:00
|
|
|
}*/
|
2021-12-30 16:18:32 +01:00
|
|
|
|
2022-01-01 07:35:50 +01:00
|
|
|
while ($connected)
|
2021-12-30 16:18:32 +01:00
|
|
|
{
|
|
|
|
//echo $nSubscribed;0x00124b0022ebac5c
|
2022-01-01 07:35:50 +01:00
|
|
|
if ( $x++ > 60)
|
|
|
|
{
|
|
|
|
$client->disconnect();
|
|
|
|
fclose($logFh);
|
|
|
|
exit (1);
|
|
|
|
}
|
2021-12-30 16:18:32 +01:00
|
|
|
$client->loop();
|
|
|
|
}
|
|
|
|
fclose($logFh);
|
2022-01-01 07:35:50 +01:00
|
|
|
exit(0);
|
2021-12-30 16:18:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|