2021-12-30 16:18:32 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
//Constants
|
|
|
|
define( "EOL", "\n");
|
|
|
|
define("Z2M", "zigbee2mqtt");
|
|
|
|
|
|
|
|
// log levels
|
|
|
|
/*define( "DEBUG", 0);
|
|
|
|
define( "INFO", 1);
|
|
|
|
define( "WARNING", 3);
|
|
|
|
define( "ERROR", 4);*/
|
|
|
|
$logLevel = LOG_DEBUG;
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
class Message
|
|
|
|
{
|
|
|
|
public $id;
|
|
|
|
public $state = false;
|
|
|
|
public $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
class topic {
|
|
|
|
public $mid;
|
|
|
|
public $status;
|
|
|
|
public $info;
|
|
|
|
public $devices;
|
|
|
|
public $groups;
|
|
|
|
public $extensions;
|
|
|
|
public $config;
|
|
|
|
}
|
|
|
|
|
|
|
|
class device
|
|
|
|
{
|
2021-12-31 14:34:20 +01:00
|
|
|
public $method; //auto or manual
|
2021-12-30 16:18:32 +01:00
|
|
|
public $topic;
|
|
|
|
public $device;
|
|
|
|
public $ieeeAddress;
|
2021-12-31 14:34:20 +01:00
|
|
|
public $groupID;
|
2021-12-30 16:18:32 +01:00
|
|
|
public $friendlyName;
|
2021-12-31 14:34:20 +01:00
|
|
|
public $type; // if true then not a device but parameter of device(eg. topic/FRIENDLYNAME/PARAMETER
|
2021-12-30 16:18:32 +01:00
|
|
|
public $powerSource;
|
|
|
|
public $description;
|
|
|
|
public $functions;
|
|
|
|
public $payload;
|
|
|
|
|
|
|
|
public function set($event)
|
|
|
|
{
|
|
|
|
publish($this, $this->payload, "set", $event);
|
|
|
|
}
|
2021-12-31 14:34:20 +01:00
|
|
|
|
|
|
|
public function get()
|
|
|
|
{
|
|
|
|
publish($this, $this->payload, "get", $event);
|
|
|
|
}
|
2021-12-30 16:18:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
class event
|
|
|
|
{
|
|
|
|
public $ieeeAddress;
|
|
|
|
public $topic;
|
|
|
|
public $param;
|
|
|
|
public $value;
|
2021-12-31 23:09:58 +01:00
|
|
|
public $device;
|
2021-12-30 16:18:32 +01:00
|
|
|
public $published;
|
|
|
|
public $dateTimeEvent;
|
|
|
|
public $recurrenceDay;
|
|
|
|
public $recurrenceMonth;
|
|
|
|
public $recurrenceYear;
|
|
|
|
public $recurrenceWeek;
|
|
|
|
public $recurrenceHours;
|
|
|
|
public $recurrenceMinutes;
|
|
|
|
public $time;
|
|
|
|
public $day;
|
|
|
|
public $week;
|
|
|
|
public $month;
|
|
|
|
public $exceptionInterval;
|
|
|
|
}
|
|
|
|
|
|
|
|
class interval
|
|
|
|
{
|
|
|
|
public $startDate;
|
|
|
|
public $endDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
class notificationMethod
|
|
|
|
{
|
|
|
|
public $url;
|
|
|
|
public $msg;
|
|
|
|
|
|
|
|
function __construct($url)
|
|
|
|
{
|
|
|
|
$this->url = $url;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function send($text=null)
|
|
|
|
{
|
|
|
|
if (empty($text)) $text= $this->msg;
|
|
|
|
if (!empty($msg))
|
|
|
|
{
|
|
|
|
$opts = array(
|
|
|
|
'http'=>array(
|
|
|
|
'method'=>"GET",
|
|
|
|
'header'=>"Accept-language: fr\r\n"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$context = stream_context_create($opts);
|
|
|
|
|
|
|
|
/* Envoi une requête HTTP vers $url
|
|
|
|
avec les en-têtes additionnels ci-dessus */
|
|
|
|
$fp = fopen($url . "/" . $msg, 'r', false, $context);
|
|
|
|
$response = stream_get_contents($fp, -1, 0);
|
|
|
|
fclose($fp);
|
|
|
|
}else
|
|
|
|
{
|
|
|
|
// TODO log_error("notificationMethod : $msg is null");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//global variables
|
|
|
|
$topics = array(); // list of topics
|
|
|
|
$mids = array(); // list of message IDs
|
|
|
|
$logFh = null; // filehandle of log file
|
|
|
|
$devices = array(); // array of device objetcs
|
|
|
|
$changed = array(); // list of changed devices
|
|
|
|
$notificationMethods = array(); // array of notification methods objects
|
|
|
|
$indexDevices = array(); // index devices by ieee_address
|
|
|
|
$dbInit = false; // flag to indicate that desvices db is initialized
|
|
|
|
$connected = false; // connected to MQTT server
|
|
|
|
$nSubscribed = 0; // Number of topics subsribed
|
|
|
|
$included = false; // flag indicate scripts are loaded
|
|
|
|
$events = array(); // list of event objects
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
$client->onConnect('connectResponse');
|
|
|
|
$client->onDisconnect('disconnectResponse');
|
|
|
|
$client->onSubscribe('subscribeResponse');
|
|
|
|
$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();
|
2021-12-31 14:34:20 +01:00
|
|
|
if (empty($flag))
|
|
|
|
{
|
|
|
|
$flag = true;
|
|
|
|
}
|
2021-12-30 16:18:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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()
|
|
|
|
{
|
|
|
|
global $topics, $nSubscribed ,$client;
|
|
|
|
$x = 0;
|
|
|
|
foreach($topics as $topic => $object)
|
|
|
|
{
|
|
|
|
if ($object->status)
|
|
|
|
{
|
2021-12-31 14:34:20 +01:00
|
|
|
$mid = $client->unsubscribe($topic);
|
|
|
|
$mids[$mid] = $topic;
|
2021-12-30 16:18:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($nSubscribed != 0)
|
|
|
|
{
|
|
|
|
//echo $nSubscribed;0x00124b0022ebac5c
|
2021-12-31 14:34:20 +01:00
|
|
|
if ( $x++ > 60) exit (0);
|
2021-12-30 16:18:32 +01:00
|
|
|
$client->loop();
|
|
|
|
}
|
|
|
|
$client->disconnect();
|
|
|
|
fclose($logFh);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
?>
|