1
0
moha/hooks/scripts/rdc_portes_ouvertes.php

59 lines
1.5 KiB
PHP
Raw Normal View History

2022-01-06 13:03:26 +01:00
<?php
require_once "events.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",
2022-07-30 22:08:02 +02:00
RDC_SALON_BAIE => "contact",
GARAGE_PORTAIL => "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 testPortes()
2022-07-10 13:57:38 +02:00
{
global $indexDevices;
logger(DEBUG, _("Function alerte_intrusion->testPorte"), __FILE__ . ":" . __LINE__);
2022-07-10 13:57:38 +02:00
$msg = "";
foreach ($this->devicelist as $device => $property)
{
if($indexDevices[$device]->properties[$property] != false)
{
$msg .= $indexDevices[$device]->friendlyName . " is open" . EOL;
2022-07-10 13:57:38 +02:00
}
}
if (!empty($msg))
2022-07-10 13:57:38 +02:00
{
logger(ALERT, $msg, __FILE__ . ":" . __LINE__);
}
return nl2br($msg);
2022-07-10 13:57:38 +02:00
}
2022-01-06 13:03:26 +01:00
}
$hooks["alerte_intrusion"] = new alerte_intrusion();
logger(DEBUG, _("Initializing event"), __FILE__ . ":" . __LINE__);
$function = array($hooks["alerte_intrusion"], "testPortes");
setRecurrentEvent($function, 0, 0, 0, 0, 0, 0, 21, 0, 0, 1, 0, 0, 0);
2022-01-06 13:03:26 +01:00
?>