hooks are now classes and devices scan exposes to add properties
This commit is contained in:
parent
57390d099b
commit
f2f8e27c89
@ -15,7 +15,7 @@ function deviceTree(string $topic, array $fnTree, array &$device)
|
|||||||
|
|
||||||
function mkDevicesDB($topic, $json, $group=false)
|
function mkDevicesDB($topic, $json, $group=false)
|
||||||
{
|
{
|
||||||
global $devices, $listProperties, $indexDevices, $dbInit, $logFh;
|
global $devices, $listProperties, $listPropertiesKeys, $indexDevices, $dbInit, $logFh;
|
||||||
if (!isset($devices[$topic])) $devices[$topic]= array();
|
if (!isset($devices[$topic])) $devices[$topic]= array();
|
||||||
foreach ($json as $jsonDevice)
|
foreach ($json as $jsonDevice)
|
||||||
{
|
{
|
||||||
@ -49,22 +49,40 @@ function mkDevicesDB($topic, $json, $group=false)
|
|||||||
if ($jsonDevice->definition != null)
|
if ($jsonDevice->definition != null)
|
||||||
{
|
{
|
||||||
$device["device"]->description = $jsonDevice->definition->description;
|
$device["device"]->description = $jsonDevice->definition->description;
|
||||||
|
searchPropertyKey($fn, $device["device"], $jsonDevice->definition->exposes, $listPropertiesKeys);
|
||||||
}
|
}
|
||||||
//searchProperty($fn, $device["device"], $jsonDevice, $listProperties);
|
searchPropertyValue($fn, $device["device"], $jsonDevice, $listProperties);
|
||||||
$indexDevices[$device["device"]->ieeeAddress] = & $device["device"];
|
$indexDevices[$device["device"]->ieeeAddress] = & $device["device"];
|
||||||
//print_r($device);
|
//print_r($device);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$dbInit = true;
|
$dbInit += 1;
|
||||||
fwrite($logFh, "################################START##################################################");
|
fwrite($logFh, "################################START##################################################");
|
||||||
fwrite($logFh, print_r($devices, true));
|
fwrite($logFh, print_r($devices, true));
|
||||||
fwrite($logFh, "################################END##################################################");
|
fwrite($logFh, "################################END##################################################");
|
||||||
|
|
||||||
echo "Devices DB made" .EOL;
|
echo "Devices DB made" . EOL;
|
||||||
//print_r($devices);
|
//print_r($devices);
|
||||||
}
|
}
|
||||||
|
|
||||||
function searchProperty($fn, &$device, $object, $listProperties)
|
function searchPropertyKey($fn, &$device, $object, $listPropertiesKeys)
|
||||||
|
{
|
||||||
|
foreach($listPropertiesKeys as $property)
|
||||||
|
{
|
||||||
|
foreach($object as $key => $value)
|
||||||
|
{
|
||||||
|
|
||||||
|
if ( isset($value->property))
|
||||||
|
{
|
||||||
|
//echo "property ===> " . $value->property . EOL;
|
||||||
|
$device->{$value->property} = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//print_r($device);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function searchPropertyValue($fn, &$device, $object, $listProperties)
|
||||||
{
|
{
|
||||||
$objectArray = (array)$object;
|
$objectArray = (array)$object;
|
||||||
foreach($listProperties as $key => $value)
|
foreach($listProperties as $key => $value)
|
||||||
@ -93,16 +111,16 @@ function changeDevice($topic, $fn, &$device, $json)
|
|||||||
|
|
||||||
//print_r($json);
|
//print_r($json);
|
||||||
$fnTree = explode("/", $fn);
|
$fnTree = explode("/", $fn);
|
||||||
print_r($json);
|
//print_r($json);
|
||||||
if ( ($jsonDevice = json_decode($json)) === null )
|
if ( ($jsonDevice = json_decode($json)) === null )
|
||||||
{
|
{
|
||||||
echo "json ========>>>>>>> " . print_r($json,true) . EOL;
|
//echo "json ========>>>>>>> " . print_r($json,true) . EOL;
|
||||||
if (!isset($device->value))
|
if (!isset($device->value))
|
||||||
{
|
{
|
||||||
$device->{"value"} = $json;
|
$device->{"value"} = $json;
|
||||||
$device->type = true; //set this as parameter and not device
|
$device->type = true; //set this as parameter and not device
|
||||||
}
|
}
|
||||||
print_r($device);
|
//print_r($device);
|
||||||
}else
|
}else
|
||||||
{
|
{
|
||||||
iterateDevice($topic, $fn, $device, $jsonDevice);
|
iterateDevice($topic, $fn, $device, $jsonDevice);
|
||||||
|
@ -8,8 +8,8 @@ function checkEvents()
|
|||||||
{
|
{
|
||||||
if (!empty($event->dateTimeEvent) and $event->dateTimeEvent <= now())
|
if (!empty($event->dateTimeEvent) and $event->dateTimeEvent <= now())
|
||||||
{
|
{
|
||||||
//echo "---->sending command" . EOL;
|
echo "---->sending command" . EOL;
|
||||||
publish($devices[$event->topic][$indexDevices[$event->ieeeAddress]], array($event->param => $event->value), "set", $key);
|
publish($event->device, array($event->param => $event->value), "set", $key);
|
||||||
//$event->published = now();
|
//$event->published = now();
|
||||||
//echo "#################################\nUnsetting event $key \n###########################" . EOL;
|
//echo "#################################\nUnsetting event $key \n###########################" . EOL;
|
||||||
unset($events[$key]);
|
unset($events[$key]);
|
||||||
@ -62,10 +62,13 @@ function setDelay(&$device, $delay, $unit="sec", $param, $value, $replace=false)
|
|||||||
$events[$key]->topic = $device->topic;
|
$events[$key]->topic = $device->topic;
|
||||||
$events[$key]->param = $param;
|
$events[$key]->param = $param;
|
||||||
$events[$key]->value = $value;
|
$events[$key]->value = $value;
|
||||||
|
$events[$key]->device = & $device;
|
||||||
echo "new event";
|
echo "new event";
|
||||||
}
|
}
|
||||||
|
|
||||||
function searchEvent($device, $param , $value)
|
|
||||||
|
|
||||||
|
function searchEvent($device, $param , $value): int
|
||||||
{
|
{
|
||||||
global $events;
|
global $events;
|
||||||
echo "searching event" . EOL;
|
echo "searching event" . EOL;
|
||||||
|
2
hooks/notifiers/notificationfreemobile.php
Normal file
2
hooks/notifiers/notificationfreemobile.php
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?php
|
||||||
|
$notificationMethods["freemobile"] = new notificationMethod("https://smsapi.free-mobile.fr/sendmsg?user=32886706&pass=JTGUY6l5OG73zX&msg=");
|
56
hooks/scripts/panneau_salon.php
Normal file
56
hooks/scripts/panneau_salon.php
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
<?php
|
||||||
|
class panneau_salon
|
||||||
|
{
|
||||||
|
private $devicelist = array("0x00124b0022ebac5c", "0x588e81fffe2cf695", "0x00124b001f900753", "0x04cf8cdf3c78aff0");
|
||||||
|
public $delay = 3;
|
||||||
|
public $timeUnit = "min";
|
||||||
|
|
||||||
|
function __construct()
|
||||||
|
{
|
||||||
|
global $indexDevices;
|
||||||
|
foreach ($this->devicelist as $ieeeAddress)
|
||||||
|
{
|
||||||
|
$indexDevices[$ieeeAddress]->functions[] = array($this,"callback");
|
||||||
|
//print_r($indexDevices[$ieeeAddress]);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public function callBack($topic, $fn, $param, $value)
|
||||||
|
{
|
||||||
|
global $devices, $indexDevices;
|
||||||
|
|
||||||
|
switch($param)
|
||||||
|
{
|
||||||
|
case "occupancy":
|
||||||
|
if ($value == 1) $this->send();
|
||||||
|
break;
|
||||||
|
case "contact":
|
||||||
|
if ($value == false) $this->send();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
echo _("notification received from MQTT") . EOL;
|
||||||
|
//echo $param . "=> " . $value . EOL;
|
||||||
|
}
|
||||||
|
|
||||||
|
private function send()
|
||||||
|
{
|
||||||
|
global $devices, $indexDevices;
|
||||||
|
if ($indexDevices["0x04cf8cdf3c78aff0"]->illuminance_lux <= 76)
|
||||||
|
{
|
||||||
|
$msg = array("state" => "ON");
|
||||||
|
$device = & $indexDevices["0x588e81fffe343e8f"];
|
||||||
|
$device->payload = $msg;
|
||||||
|
$device->set(null);
|
||||||
|
setDelay($device, $this->delay, $this->timeUnit, "state", "OFF", true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$panneau_salon = new panneau_salon();
|
||||||
|
//assignation of the function to the sensors devices
|
||||||
|
//$indexDevices["0x00124b0022ebac5c"]->functions[] = array($panneau_salon,"getCallback"); // rdc-salon-mvmt2
|
||||||
|
//$indexDevices["0x588e81fffe2cf695"]->functions[] = array($panneau_salon,"getCallback"); // rdc-salon-mvmt
|
||||||
|
//$indexDevices["0x00124b001f900753"]->functions[] = array($panneau_salon,"getCallback"); // rdc-porte-entree
|
||||||
|
//$indexDevices["0x04cf8cdf3c78aff0"]->functions[] = array($panneau_salon,"getCallback"); // rdc-salon-luminosite
|
||||||
|
?>
|
38
moha.php
38
moha.php
@ -14,7 +14,8 @@ $logLevel = LOG_DEBUG;
|
|||||||
|
|
||||||
declare(ticks = 1);
|
declare(ticks = 1);
|
||||||
|
|
||||||
$listProperties = array( "powerSource" => "batterie" );
|
$listProperties = array("powerSource" => "batterie");
|
||||||
|
$listPropertiesKeys = array("property");
|
||||||
|
|
||||||
class Message
|
class Message
|
||||||
{
|
{
|
||||||
@ -64,6 +65,7 @@ class event
|
|||||||
public $topic;
|
public $topic;
|
||||||
public $param;
|
public $param;
|
||||||
public $value;
|
public $value;
|
||||||
|
public $device;
|
||||||
public $published;
|
public $published;
|
||||||
public $dateTimeEvent;
|
public $dateTimeEvent;
|
||||||
public $recurrenceDay;
|
public $recurrenceDay;
|
||||||
@ -178,17 +180,20 @@ foreach($topics as $name => $topic)
|
|||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
$client->loop();
|
$client->loop();
|
||||||
if ($dbInit and ! $included)
|
if ($dbInit == 2 and ! $included)
|
||||||
{
|
{
|
||||||
$hooks = loadHooks("./scripts");
|
$hooksList = array();
|
||||||
if (!empty($hooks))
|
loadHooks("./hooks", $hooksList);
|
||||||
|
//print_r($hooksList);
|
||||||
|
if (!empty($hooksList))
|
||||||
{
|
{
|
||||||
foreach ($hooks as $hook)
|
foreach ($hooksList as $hook)
|
||||||
{
|
{
|
||||||
|
echo "Including $hook" . EOL;
|
||||||
include $hook;
|
include $hook;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}elseif($dbInit and $included)
|
}elseif($dbInit == 2 and $included)
|
||||||
{
|
{
|
||||||
checkEvents();
|
checkEvents();
|
||||||
if (empty($flag))
|
if (empty($flag))
|
||||||
@ -213,32 +218,31 @@ function init()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function loadHooks($dir)
|
function loadHooks($dir, &$hookList)
|
||||||
{
|
{
|
||||||
global $included;
|
global $included;
|
||||||
$hookList = array();
|
|
||||||
$files = scandir($dir);
|
$files = scandir($dir);
|
||||||
//print_r($files);
|
//print_r($files);
|
||||||
foreach ($files as $file)
|
foreach ($files as $file)
|
||||||
{
|
{
|
||||||
//echo " $file" . EOL;
|
//echo "=====> $file" . EOL;
|
||||||
if ($file != "." and $file != ".." and strpos($file, "~", -2) === false)
|
|
||||||
|
if ($file != "." and $file != "..")
|
||||||
{
|
{
|
||||||
//echo "not . or .." . EOL;
|
//echo "not . or .." . EOL;echo strpos($file, ".php", -4) . EOL;
|
||||||
if (is_dir($file))
|
if (is_dir($dir . "/" . $file))
|
||||||
{
|
{
|
||||||
//echo "directory" . EOL;
|
//echo "directory : " . $dir . '/' . $file . EOL;
|
||||||
loadHooks($dir . '/' . $file);
|
loadHooks($dir . '/' . $file, $hookList);
|
||||||
}else
|
}elseif (strpos($file, ".php", -4) !== false)
|
||||||
{
|
{
|
||||||
//echo "file" . EOL;
|
//echo "file : " . $dir . "/" . $file . EOL;
|
||||||
$hookList[] = $dir . "/" . $file;
|
$hookList[] = $dir . "/" . $file;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//print_r($hookList);
|
//print_r($hookList);
|
||||||
$included = true;
|
$included = true;
|
||||||
return $hookList;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user