1
0
moha/class/main.php

130 lines
2.6 KiB
PHP
Raw Normal View History

2022-01-02 13:07:02 +01:00
<?php
2022-01-28 23:05:58 +01:00
logger(DEBUG, _("Including class main.php"), __FILE__ . ":" . __LINE__);
2022-01-17 00:18:50 +01:00
2022-01-02 13:07:02 +01:00
class Message
{
public $id;
public $state = false;
public $msg;
}
class topic {
public $mid;
public $status;
public $info;
public $devices;
public $groups;
public $extensions;
public $config;
public $callback;
2022-01-02 13:07:02 +01:00
}
class device
{
2022-01-19 00:22:34 +01:00
public $method; //0 = auto or 1 = manual
2022-01-02 13:07:02 +01:00
public $topic;
public $device;
public $ieeeAddress;
public $groupID;
public $friendlyName;
public $powerSource;
public $description;
public $functions;
public $payload;
2022-01-19 00:22:34 +01:00
public $availability;
2022-01-23 09:46:06 +01:00
public $toConfirm;
public $triggerDevice;
2022-01-02 13:07:02 +01:00
public function __construct()
2022-01-02 13:07:02 +01:00
{
2022-01-19 00:22:34 +01:00
$this->availability = array("value" => null, "functions" => array());
}
public function set($method=0) //, $event = null)
{
$this->method = $method;
publish($this->topic . "/" . $this->friendlyName, $this->payload, "set"); //, $event);
2022-01-02 13:07:02 +01:00
}
public function get()
{
2022-01-19 00:22:34 +01:00
publish($this->topic . "/" . $this->friendlyNames, $this->payload, "get"); //, $event);
2022-01-02 13:07:02 +01:00
}
}
class ranges
{
public $start; //datetime
public $end; //datetime
}
class event
{
public $ieeeAddress;
public $topic;
public $param;
public $value;
public $device;
public $published;
public $dateTimeEvent; // datetime : next occurence for recurrent event
public $startDatetime;
public $stopDatetime;
public $recurrenceInterval; // interval : for recurrent event
public $exceptionInterval; // array of object ranges
}
2022-01-30 00:21:50 +01:00
class watch
{
public $topic;
public $property;
public $device;
public $function;
private $conditions = array(
"<", ">", "==", ">=", "<="
);
public function __construct($topic, $fn, $property, $condition, $value)
{
logger(DEBUG, _("New Notify object"), __FILE__ . ":" . __LINE__);
if (($this->device = getDevice($topic, $fn)) === false)
{
$this->topic = $topic;
if (array_key_exist($property, $this->device))
{
$this->property = $property;
if ( !is_numeric($value))
{
logger(ERROR, _("Value is not numeric"), __FILE__ . ":" . __LINE__ );
return false;
}
if (array_search($condition, $conditions))
{
$this->function = '$arg ' . $condition . " " . $value;
logger(DEBUG, _("Test function is ") . $this->function);
}else
{
logger(ERROR, _("Condition is not one of the permitted once"), __FILE__ . ":" . __LINE__ );
return false;
}
}else
{
logger(ERROR, _("Property do not exists"), __FILE__ . ":" . __LINE__ );
return false;
}
}else
{
logger(ERROR, _("Device do not exists"), __FILE__ . ":" . __LINE__ );
return false;
}
return $this;
}
}
2022-01-02 13:07:02 +01:00
class interval
{
public $startDate;
public $endDate;
}
?>