1
0
moha/moha.php

178 lines
3.7 KiB
PHP
Raw Normal View History

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);
$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
$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");
if (!init()) exit(1);
2021-12-30 16:18:32 +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);
define( "INFO", $client->LOG_INFO);
define( "NOTICE", $client->LOG_NOTICE);
define( "WARNING", $client->LOG_WARNING);
define( "ERROR", $client->LOG_ERR);
$logLevel = DEBUG;
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');
$client->onUnsubscribe('unsubscribeResponse');
2021-12-30 16:18:32 +01:00
$client->onMessage('message');
$client->onLog('logger');
$client->onPublish('publishResponse');
//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();
if ($dbInit == 2 and ! $included)
2021-12-30 16:18:32 +01:00
{
$hooksList = array();
loadHooks("./hooks", $hooksList);
//print_r($hooksList);
if (!empty($hooksList))
2021-12-30 16:18:32 +01:00
{
foreach ($hooksList as $hook)
2021-12-30 16:18:32 +01:00
{
echo "Including $hook" . EOL;
2021-12-30 16:18:32 +01:00
include $hook;
}
}
}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-30 16:18:32 +01:00
if (! $logFh = fopen("moha.log", "w") )
{
echo _("error opening log file");
return false;
}
return true;
}
function loadHooks($dir, &$hookList)
2021-12-30 16:18:32 +01:00
{
global $included;
$files = scandir($dir);
//print_r($files);
foreach ($files as $file)
{
//echo "=====> $file" . EOL;
if ($file != "." and $file != "..")
2021-12-30 16:18:32 +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
{
//echo "directory : " . $dir . '/' . $file . EOL;
loadHooks($dir . '/' . $file, $hookList);
}elseif (strpos($file, ".php", -4) !== false)
2021-12-30 16:18:32 +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()
{
global $topics, $nSubscribed ,$client, $logFh, $connected;
2021-12-30 16:18:32 +01:00
$x = 0;
/*foreach($topics as $topic => $object)
2021-12-30 16:18:32 +01:00
{
if ($object->status)
{*/
$mid = $client->unsubscribe("#");
/*$mids[$mid] = $topic;
2021-12-30 16:18:32 +01:00
}
}*/
2021-12-30 16:18:32 +01:00
while ($connected)
2021-12-30 16:18:32 +01:00
{
//echo $nSubscribed;0x00124b0022ebac5c
if ( $x++ > 60)
{
$client->disconnect();
fclose($logFh);
exit (1);
}
2021-12-30 16:18:32 +01:00
$client->loop();
}
fclose($logFh);
exit(0);
2021-12-30 16:18:32 +01:00
}
?>