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",
|
|
|
|
RDC_SALON_BAIE => "contact"
|
|
|
|
);
|
2022-01-06 13:03:26 +01:00
|
|
|
|
|
|
|
public $delay = 3; // amount of time in $timeunit
|
|
|
|
public $delayManual = 10; // amount of time in $timeunit for manual mode
|
|
|
|
public $timeUnit = "minute"; // unit of time for delay, second, minute, day, week, month, year
|
|
|
|
|
|
|
|
// 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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$hooks["alerte_intrusion"] = new alerte_intrusion();
|
|
|
|
|
|
|
|
?>
|