1
0
moha/hooks/scripts/rdc_portes_ouvertes.php

50 lines
1.1 KiB
PHP
Raw Normal View History

2022-01-06 13:03:26 +01:00
<?php
2022-01-17 00:18:50 +01:00
class alerte_intrusion extends hook
2022-01-06 13:03:26 +01:00
{
public $hookName = "alerte_intrusion";
public $active = true;
2022-01-17 00:18:50 +01:00
protected $devicelist = array(
ENTREE_PORTE => "contact",
GARAGE_PORTE => "contact",
RDC_CHAMBRE_BAIE => "contact",
RDC_SALON_BAIE => "contact"
);
2022-01-06 13:03:26 +01:00
// callback fonction. Is called with these 4 parameters
public function callBack($device, $property, $value)
2022-01-06 13:03:26 +01:00
{
logger(DEBUG, sprintf(_("property=%s, value=%s"), $property, $value), __FILE__ . ":" . __LINE__);
switch($property)
2022-01-06 13:03:26 +01:00
{
case "contact":
if ($value == false)
{
2022-01-28 23:05:58 +01:00
logger(ALERT, sprintf(_("%s est ouverte alors que personne n'est présent"), $device->friendlyName), __FILE__ . ":" . __LINE__);
2022-01-06 13:03:26 +01:00
}
break;
2022-01-06 13:03:26 +01:00
}
}
2022-07-10 13:57:38 +02:00
public function test()
{
global $indexDevices;
$msg = "";
foreach ($this->devicelist as $device => $property)
{
if($indexDevices[$device]->properties[$property] != false)
{
$msg .= $indexDevices->friendlyName . " is open" . EOL;
}
}
if ($msg != "")
{
logger(ALERT, $msg, __FILE__ . ":" . __LINE__);
}
}
2022-01-06 13:03:26 +01:00
}
$hooks["alerte_intrusion"] = new alerte_intrusion();
?>