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(
|
2022-03-13 22:33:26 +01:00
|
|
|
ENTREE_PORTE => "contact",
|
|
|
|
GARAGE_PORTE => "contact",
|
|
|
|
RDC_CHAMBRE_BAIE => "contact",
|
2022-07-30 22:08:02 +02:00
|
|
|
RDC_SALON_BAIE => "contact",
|
|
|
|
GARAGE_PORTAIL => "contact"
|
2022-03-13 22:33:26 +01:00
|
|
|
);
|
2022-01-06 13:03:26 +01:00
|
|
|
|
|
|
|
// callback fonction. Is called with these 4 parameters
|
2022-03-13 22:33:26 +01:00
|
|
|
public function callBack($device, $property, $value)
|
2022-01-06 13:03:26 +01:00
|
|
|
{
|
2022-03-28 00:40:34 +02:00
|
|
|
logger(DEBUG, sprintf(_("property=%s, value=%s"), $property, $value), __FILE__ . ":" . __LINE__);
|
2022-03-13 22:33:26 +01:00
|
|
|
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
|
|
|
}
|
2022-03-13 22:33: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();
|
|
|
|
|
|
|
|
?>
|