-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinterface.php
749 lines (575 loc) · 25.2 KB
/
interface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
<?php
// CCU User -> Falls authentifizierung notwendig, bitte in "config/config.php" wie folgt eintragen:
/*
$ccu_user = ""; // in die Anführungsstriche den Benutzernamen
$ccu_pass = ""; // in die Anführungsstriche das dazugehörige Kennwort
*/
if (!file_exists(__DIR__.'/config/config.php')) {
header('Location: setup.php');
exit;
}
require_once(__DIR__.'/config/config.php');
// Konfiguration als Array aus Config-Variablen zusammenbauen
if (empty($ccu) or !is_array($ccu)) $ccu = array(
'host' => $homematicIp,
'https' => !empty($ccu_https),
'user' => ( isset($ccu_user) ? $ccu_user : false ),
'pw' => ( isset($ccu_pass) ? $ccu_pass : false ),
);
// --
$ccu['url'] = "http".(!empty($ccu['https']) ? 's' : '')."://" . $ccu['host'] . ":".(!empty($ccu['https']) ? '4' : '')."8181/homehub.exe";
function ccu_remote($ccu, $ccu_request, $plain_result = false) {
// Als indikator für die Rückgabe, um den Overhead zu filtern
$delimeter = '---'.uniqid('hm-end').'---';
if (!$plain_result) {
$ccu_request = str_replace(array('<','>'), array('*<*','*>*'), $ccu_request);
$ccu_request = $ccu_request."\nWriteLine(\"".$delimeter."\");";
}
// curl Anfrage bauen
$curl = curl_init($ccu['url']);
if (!empty($ccu['user']) and !empty($ccu['pw'])) curl_setopt($curl, CURLOPT_USERPWD, $ccu['user'].':'.$ccu['pw']);
curl_setopt($curl, CURLOPT_POST, 1);
curl_setopt($curl, CURLOPT_POSTFIELDS, $ccu_request);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl, CURLOPT_TIMEOUT, 20);
curl_setopt($curl, CURLOPT_FAILONERROR, true);
if (!empty($ccu['https'])) {
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
}
$content = curl_exec($curl);
if ($content === false) {
die(basename(__FILE__) . " - CURL error " . curl_getinfo($curl_handle, CURLINFO_HTTP_CODE) . " " . curl_error($curl_handle));
}
curl_close($curl);
#var_dump("\n\nCCU remote", $content, "\n ---------- \n\n");
// Trenne Rückgabe vom Overhead
if (!$plain_result) $content = strstr($content, $delimeter, true);
if (!$plain_result) {
if (strpos($content, '<') !== false) {
// Konvertiere XML kritische Zeichen in HTML-Format # Maskierung sollte eigentlich nicht notwendig sein.
$content = str_replace('<', '<', $content); # Ggf. sollten wir uns eine elegantere Variante überlegen, RegEx oder ähnliches,
$content = str_replace('>', '>', $content); # oder im HM-Skript mit .replace() maskieren.
$content = str_replace('*<*', '<', $content);
$content = str_replace('*>*', '>', $content);
}
}
return $content;
}
// ALLE STATES
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "statelist.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_statelist($ccu, isset($_GET['debug']));
}
function api_statelist($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("<stateList>");
integer show_remote = 1;
integer show_internal = 1;
string id;
! Alle Datenpunkte durchlaufen
!foreach(id, dom.GetObject(ID_DEVICES).EnumUsedIDs()) {
foreach(id, root.Devices().EnumUsedIDs()) {
! Einzelnen Datenpunkt holen
object oDevice = dom.GetObject(id);
integer iDevInterfaceId = oDevice.Interface();
object oDeviceInterface = dom.GetObject(iDevInterfaceId);
! Namen und Wert des Elements ausgeben - geht nicht -> logged info
boolean bDevReady = oDevice.ReadyConfig();
boolean isRemote = ( ("#HMW-RCV-50" == oDevice.HssType()) || ("#HM-RCV-50" == oDevice.HssType()) || ("#HmIP-RCV-50" == oDevice.HssType()) );
if( (oDeviceInterface) && (true == bDevReady) && ( ( isRemote == false ) || ( show_remote == 1 ) ) ) {
string sDevInterface = oDeviceInterface.Name();
string sDevType = oDevice.HssType();
WriteLine("<device name='" # oDevice.Name() #"' ise_id='" # oDevice.ID() # "' unreach='false' sticky_unreach='false' config_pending='false'>");
string cid;
integer x = 0;
! Alle Datenpunkte durchlaufen
foreach(cid, oDevice.Channels()) {
! Einzelnen Kanal holen
var ch = dom.GetObject(cid);
! Namen und Wert des Kanals ausgeben
Write("<channel name='"#ch.Name()#"' ise_id='"#ch.ID()#"' direction='' index='"# x #"'");
if (false == ch.Internal()) {
Write(" visible='" # ch.Visible() # "'");
} else {
Write(" visible=''");
}
Write(" ready_config='' operate='");
if (false == ch.Internal()) {
if( ch.UserAccessRights(iulOtherThanAdmin) == iarFullAccess ) {
Write("true");
} else {
Write("false");
}
}
Write("'>");
WriteLine("");
string did;
! Alle Datenpunkte durchlaufen
foreach(did, ch.DPs().EnumUsedIDs()) {
var dp = dom.GetObject(did);
string dpA = dp.Name().StrValueByIndex(".", 2);
if( (dpA != "ON_TIME") && (dpA != "INHIBIT") && (dpA != "CMD_RETS") && (dpA != "CMD_RETL") && (dpA != "CMD_SETS") && (dpA != "CMD_SETL") ) {
WriteLine("<datapoint name='"#dp.Name()#"' type='" # dp.Name().StrValueByIndex(".", 2) #"' ise_id='"#dp.ID()#"' state='"#dp.Value()#"' value='"#dp.Value()#"' valuetype='"#dp.ValueType()#"' valueunit='" # dp.ValueUnit() # "' timestamp='" # dp.Timestamp().ToInteger()# "' operations='"#dp.Operations()#"'/>");
}
}
WriteLine("</channel>");
x=x+1;
}
WriteLine("</device>");
}
}
WriteLine("</stateList>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// ALLE STATES
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "statelistall.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_statelistall($ccu, isset($_GET['debug']));
}
function api_statelistall($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("<stateList>");
integer show_remote = 1;
integer show_internal = 1;
string id;
! Alle Datenpunkte durchlaufen
!foreach(id, dom.GetObject(ID_DEVICES).EnumUsedIDs()) {
foreach(id, root.Devices().EnumUsedIDs()) {
! Einzelnen Datenpunkt holen
object oDevice = dom.GetObject(id);
integer iDevInterfaceId = oDevice.Interface();
object oDeviceInterface = dom.GetObject(iDevInterfaceId);
! Namen und Wert des Elements ausgeben - geht nicht -> logged info
boolean bDevReady = oDevice.ReadyConfig();
string sDevInterface = oDeviceInterface.Name();
string sDevType = oDevice.HssType();
WriteLine("<device name='" # oDevice.Name() #"' ise_id='" # oDevice.ID() # "' unreach='false' sticky_unreach='false' config_pending='false'>");
string cid;
integer x = 0;
! Alle Datenpunkte durchlaufen
foreach(cid, oDevice.Channels()) {
! Einzelnen Kanal holen
var ch = dom.GetObject(cid);
! Namen und Wert des Kanals ausgeben
Write("<channel name='"#ch.Name()#"' ise_id='"#ch.ID()#"' direction='' index='"# x #"' timestamp='" # ch.LastTimestamp().ToInteger()# "'");
if (false == ch.Internal()) {
Write(" visible='" # ch.Visible() # "'");
} else {
Write(" visible=''");
}
Write(" ready_config='' operate='");
if (false == ch.Internal()) {
if( ch.UserAccessRights(iulOtherThanAdmin) == iarFullAccess ) {
Write("true");
} else {
Write("false");
}
}
Write("'>");
WriteLine("");
string did;
! Alle Datenpunkte durchlaufen
foreach(did, ch.DPs()) {
var dp = dom.GetObject(did);
string dpA = dp.Name().StrValueByIndex(".", 2);
if( (dpA != "ON_TIME") && (dpA != "INHIBIT") && (dpA != "CMD_RETS") && (dpA != "CMD_RETL") && (dpA != "CMD_SETS") && (dpA != "CMD_SETL") ) {
WriteLine("<datapoint name='"#dp.Name()#"' type='" # dp.Name().StrValueByIndex(".", 2) #"' ise_id='"#dp.ID()#"' state='"#dp.Value()#"' value='"#dp.Value()#"' valuetype='"#dp.ValueType()#"' valueunit='" # dp.ValueUnit() # "' timestamp='" # dp.LastTimestamp().ToInteger()# "' operations='"#dp.Operations()#"'/>");
}
}
WriteLine("</channel>");
x=x+1;
}
WriteLine("</device>");
}
WriteLine("</stateList>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// ALLE DEVICES
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "devicelist.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_devicelist($ccu, isset($_GET['debug']));
}
function api_devicelist($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("");
string PARTNER_INVALID = "65535";
integer show_internal = "} 1 {";
integer show_remote = "} 1 {";
WriteLine("<deviceList>");
string id;
! Alle Datenpunkte durchlaufen
!foreach(id, root.Devices().EnumUsedIDs()) {
foreach(id, dom.GetObject(ID_DEVICES).EnumUsedIDs()) {
! Einzelnen Datenpunkt holen
object oDevice = dom.GetObject(id);
integer iDevInterfaceId = oDevice.Interface();
object oDeviceInterface = dom.GetObject(iDevInterfaceId);
boolean bDevReady = oDevice.ReadyConfig();
boolean isRemote = ( ("#HMW-RCV-50" == oDevice.HssType()) || ("#HM-RCV-50" == oDevice.HssType()) || ("#HmIP-RCV-50" == oDevice.HssType()) );
if( (oDeviceInterface) && (true == bDevReady) && ( ( isRemote == false ) || ( show_remote == 1 ) ) ) {
! Namen und Wert des Elements ausgeben - geht nicht -> logged info
boolean bDevReady = oDevice.ReadyConfig();
string sDevInterface = oDeviceInterface.Name();
string sDevType = oDevice.HssType();
Write("<device name='" # oDevice.Name() #"' address='" # oDevice.Address() # "' ise_id='" # oDevice.ID() # "' interface='" # sDevInterface # "' device_type='" # sDevType # "' ready_config='" # bDevReady # "' >");
WriteLine("");
string cid;
integer x = 0;
! Alle Datenpunkte durchlaufen
foreach(cid, oDevice.Channels()) {
! Einzelnen Kanal holen
var ch = dom.GetObject(cid);
! Namen und Wert des Kanals ausgeben
!WriteLine(ch.Name() # ": " # ch.ID());
string sChnPartnerId = ch.ChnGroupPartnerId();
if (PARTNER_INVALID == sChnPartnerId) { sChnPartnerId = ""; }
Write("<channel name='"#ch.Name()#"' type='"#ch.ChannelType()#"' address='"#ch.Address()#"' ise_id='"#ch.ID()#"' direction='' parent_device='"#ch.Device()#"' index='"# x #"' group_partner='" # sChnPartnerId # "' aes_available='' transmission_mode=''");
if (false == ch.Internal()) {
Write(" visible='" # ch.Visible() # "'");
} else {
Write(" visible=''");
}
Write(" ready_config='' operate='");
if (false == ch.Internal()) {
if( ch.UserAccessRights(iulOtherThanAdmin) == iarFullAccess ) {
Write("true");
} else {
Write("false");
}
}
Write("' />");
WriteLine("");
x=x+1;
}
WriteLine("</device>");
}
}
WriteLine("</deviceList>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// ALLE PROGRAMME
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "programlist.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_programlist($ccu, isset($_GET['debug']));
}
function api_programlist($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("<programList>");
string id;
! Alle Datenpunkte durchlaufen
foreach(id, dom.GetObject(ID_PROGRAMS).EnumUsedIDs()) {
! Einzelnen Datenpunkt holen
var sysProgram = dom.GetObject(id);
! Namen und Wert des Elements ausgeben - speziell -> operate=''
Write("<program id='" # sysProgram.ID() # "' active='" # sysProgram.Active() # "' timestamp='" # sysProgram.ProgramLastExecuteTime().ToInteger() # "' name='" # sysProgram.Name() # "' description='" # sysProgram.PrgInfo() # "' visible='" # sysProgram.Visible() # "' operate='");
object o_sysVar = dom.GetObject(sysProgram.ID());
if( o_sysVar.UserAccessRights(iulOtherThanAdmin) == iarFullAccess ) {
Write("true'/>");
} else {
Write("false'/>");
}
WriteLine("");
}
WriteLine("</programList>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// ALLE SYSTEMVARIABLEN
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "sysvarlist.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_sysvarlist($ccu, isset($_GET['debug']));
}
function api_sysvarlist($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("<systemVariables>\n");
string id;
! Alle Datenpunkte durchlaufen
foreach(id, dom.GetObject(ID_SYSTEM_VARIABLES).EnumUsedIDs()){
! Einzelnen Datenpunkt holen
var oSysVar = dom.GetObject(id);
! Namen und Wert des Elements ausgeben - fehlt -> visible
Write("<systemVariable name='" # oSysVar.Name() # "' ");
if (oSysVar.ValueSubType() == 6) {
Write("variable='" # oSysVar.AlType() # "' ");
} else {
Write("variable='" # oSysVar.Variable() # "' ");
}
Write("value='" # oSysVar.Value() # "' ");
Write("value_list='");
if (oSysVar.ValueType() == 16) {
Write( oSysVar.ValueList());
}
Write("' ise_id='"#oSysVar.ID()#"' ");
Write(" min='");
if (oSysVar.ValueType() == 4) {
Write( oSysVar.ValueMin());
}
Write("' max='");
if (oSysVar.ValueType() == 4) {
Write( oSysVar.ValueMax());
}
Write("' ");
Write("unit='" # oSysVar.ValueUnit() # "' type='" # oSysVar.ValueType() # "' subtype='" # oSysVar.ValueSubType() # "' logged='" # oSysVar.DPArchive() # "' visible='" # oSysVar.Visible() # "' timestamp='" # oSysVar.Timestamp().ToInteger()# "' value_name_0='" # oSysVar.ValueName0() # "' value_name_1='" # oSysVar.ValueName1() # "' info='" # oSysVar.DPInfo() # "'/>");
}
WriteLine("</systemVariables>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// PROGRAMM
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "runprogram.cgi") !== false)) {
$prog_id = ( !empty($_GET['program_id']) ? intval($_GET['program_id']) : false );
// Beende wenn keine Program_ID übergeben wird
if(empty($prog_id))
{
die('Program-ID fehlt');
}
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_runprogram($ccu, $prog_id, isset($_GET['debug']));
}
function api_runprogram($ccu, int $prog_id, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
!WriteLine("<runprogram>");
!Write(dom.GetObject("$prog_id"));
!WriteLine("</runprogram>");
dom.GetObject("$prog_id").ProgramExecute();
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request, true);
}
// PROGRAMM aktiv inaktiv schalten
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "setprogrammode.cgi") !== false)) {
$prog_id = ( !empty($_GET['program_id']) ? intval($_GET['program_id']) : false );
// Beende wenn keine Program_ID übergeben wird
if(empty($prog_id))
{
die('Program-ID fehlt');
}
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_setprogrammode($ccu, $prog_id, isset($_GET['debug']));
}
function api_setprogrammode($ccu, int $prog_id, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
!WriteLine("<setprogrammode>");
!Write(dom.GetObject("$prog_id"));
!WriteLine("</setprogrammode>");
object oDatapoint = dom.GetObject("$prog_id");
if (oDatapoint.IsTypeOf(OT_PROGRAM)) {
if (oDatapoint.Active()) { oDatapoint.Active(false); }
else { oDatapoint.Active(true); }
}
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request, true);
}
// WERTÄNDERUNG
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "statechange.cgi") !== false)) {
// Beende, wenn keine Ise_ID übergeben wird
if (empty($_GET['ise_id'])) die('Ise-ID fehlt');
// Beende, wenn keine Werte übergeben werden
if (!isset($_GET['new_value'])) die('Wert fehlt');
// Trenne ise_id und new_value anhand , auf und setze als assoziatives Array zusammen
$iseids = $_GET['ise_id'];
$a_iseids = str_getcsv($iseids, ',', '"', '\\');
$iseids = ( count($a_iseids) ? $a_iseids : array($iseids) );
$newvalues = $_GET['new_value'];
$a_newvalues = str_getcsv($newvalues, ',', '"', '\\');
$newvalues = ( count($a_newvalues) ? array_map('rawurldecode', $a_newvalues) : array(rawurldecode($newvalues)) );
if (count($iseids) != count($newvalues)) die('Anzahl Parameter stimmt nicht überein');
$set = array_combine($iseids, $newvalues);
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_statechange($ccu, $set, isset($_GET['debug']));
}
function api_statechange($ccu, $set, $debug = false) {
// $set : assoziatives Array im Format ["ise_id" => "wert"]
// Baue Skript zusammen
$ccu_request = '';
#$ccu_request = $ccu_request."WriteLine(\"<statechange>\");\n";
foreach ($set as $ise_id => $new_value) {
if (ctype_digit($ise_id)) {
#$ccu_request = $ccu_request."WriteLine(dom.GetObject(\"".$ise_id."\"));\n";
$ccu_request = $ccu_request."dom.GetObject(\"".$ise_id."\").State(\"".addslashes($new_value)."\");\n";
}
}
#$ccu_request = $ccu_request."WriteLine(\"</statechange>\");\n";
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request, true);
}
//SYSVAR
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "sysvar.cgi") !== false)) {
// Beende, wenn keine Ise_ID übergeben wird
if (empty($_GET['ise_id'])) die('Ise-ID fehlt');
$ise_id = $_GET['ise_id'];
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_sysvar($ccu, $ise_id, isset($_GET['debug']));
}
function api_sysvar($ccu, $ise_id, $debug = false) {
// Baue Skript zusammen # Warum braucht man hier eine Schleife? Man könnte doch die SV direkt mit dom.GetObject("ise_id") aufrufen und ggf. den Typ prüfen.
$ccu_request = <<<EOHM
WriteLine("<systemVariables>");
string id;
! Alle Datenpunkte durchlaufen
foreach(id, dom.GetObject(ID_SYSTEM_VARIABLES).EnumUsedIDs()){
! Einzelnen Datenpunkt holen
var sysVar = dom.GetObject(id);
if($ise_id == sysVar.ID()) {
! Namen und Wert des Elements ausgeben - fehlt -> visible
Write("<systemVariable name='" # sysVar.Name() # "' variable='" # sysVar.Variable() # "' value='" # sysVar.Value() # "' value_list='" # sysVar.ValueList() # "' ise_id='" # sysVar.ID() # "' min='" # sysVar.ValueMin() # "' max='" # sysVar.ValueMax() # "' unit='" # sysVar.ValueUnit() # "' type='" # sysVar.ValueType() # "' subtype='" # sysVar.ValueSubType() # "' logged='" # sysVar.DPArchive() # "' visible='" # sysVar.Visible() # "' timestamp='" # sysVar.Timestamp().ToInteger()# "' value_name_0='" # sysVar.ValueName0() # "' value_name_1='" # sysVar.ValueName1() # "' info='" # sysVar.DPInfo() # "'/>");
WriteLine("");
}
}
WriteLine("</systemVariables>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
function strip_a(string $str) {
return str_replace('a', '', $str);
}
function strip_t(string $str) {
return str_replace('t', '', $str);
}
// STATUS
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "state.cgi") !== false)) {
// Beende, wenn keine Program_ID übergeben wird # => führt zu Problemen mit nicht-HM Seiten (zB. iframe) !!!
# if (empty($_GET['datapoint_id'])) die('Datapoint-ID fehlt'); # Der fehlerhafte / unnötige Aufruf der state.cgi müsste im dortigen Code korrigiert werden.
$datapoints = $_GET['datapoint_id'];
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_state($ccu, $datapoints, isset($_GET['onlyvalue']), isset($_GET['debug']));
}
function api_state($ccu, $datapoints, bool $onlyvalue = false, $debug = false) {
if (!is_array($datapoints)) {
if (strpos($datapoints, ',') !== false) $a_datapoints = str_getcsv($datapoints, ',', '"', '\\');
else $a_datapoints = array($datapoints);
} else {
if (array_is_list($datapoints)) $a_datapoints = $datapoints;
else $a_datapoints = array_values($datapoints);
}
$a_datapoints = array_map('strip_a', $a_datapoints);
$a_datapoints = array_map('strip_t', $a_datapoints);
//Bei Diagram Collect darf nicht optimiert werden
if (empty($onlyvalue)) $a_datapoints = array_unique($a_datapoints);
$ccu_request = "WriteLine(\"<state>\");\r\n";
foreach ($a_datapoints as $datapoint) {
if (ctype_digit($datapoint)) {
$ccu_request = $ccu_request . "object oDatapoint = dom.GetObject(".$datapoint.");\r\n";
// Wenn es sich um ein Datenpunkt handelt gib value aus
$ccu_request = $ccu_request . "if (oDatapoint.IsTypeOf(OT_DP)) {\r\n";
$ccu_request = $ccu_request . "WriteLine(\"<datapoint ise_id='".$datapoint."' value='\"#dom.GetObject(".$datapoint.").Value().ToString()#\"'/>\");\r\n";
$ccu_request = $ccu_request . "}\r\n";
// Wenn es sich um ein Programm handelt gibt aus ob aktiv oder inaktiv
$ccu_request = $ccu_request . "if (oDatapoint.IsTypeOf(OT_PROGRAM)) {\r\n";
$ccu_request = $ccu_request . "if (oDatapoint.Active()) {\r\nWriteLine(\"<datapoint ise_id='".$datapoint."a' value='true'/>\");}\r\n";
$ccu_request = $ccu_request . "else {\r\nWriteLine(\"<datapoint ise_id='".$datapoint."a' value='false'/>\"); }\r\n";
$ccu_request = $ccu_request . "}\r\n";
if (empty($onlyvalue)) {
// Wenn es sich um einen Channel handelt gib Timestamp aus
$ccu_request = $ccu_request . "if (oDatapoint.IsTypeOf(OT_CHANNEL)) {\r\n";
$ccu_request = $ccu_request . "WriteLine(\"<datapoint ise_id='".$datapoint."t' value='\"#dom.GetObject(".$datapoint.").LastDPActionTime().ToString(\"%m.%d.%Y %H:%M:%S\")#\"'/>\");";
$ccu_request = $ccu_request . "}\r\n";
// Wenn es sich um einen Datenpunkt handelt gib Timestamp aus
$ccu_request = $ccu_request . "if (oDatapoint.IsTypeOf(OT_DP)) {\r\n";
$ccu_request = $ccu_request . "WriteLine(\"<datapoint ise_id='".$datapoint."t' value='\"#dom.GetObject(".$datapoint.").Timestamp().ToString(\"%m.%d.%Y %H:%M:%S\")#\"'/>\");";
$ccu_request = $ccu_request . "}\r\n";
// Wenn es sich um ein Programm handelt gib Timestamp aus
$ccu_request = $ccu_request . "if (oDatapoint.IsTypeOf(OT_PROGRAM)) {\r\n";
$ccu_request = $ccu_request . "WriteLine(\"<datapoint ise_id='".$datapoint."t' value='\"#dom.GetObject(".$datapoint.").ProgramLastExecuteTime().ToString(\"%m.%d.%Y %H:%M:%S\")#\"'/>\");";
$ccu_request = $ccu_request . "}\r\n";
}
}
}
$ccu_request = $ccu_request . "WriteLine(\"</state>\");\r\n";
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// SYSTEMNOTIFICATION
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "systemNotification.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_systemNotification($ccu, $prog_id, isset($_GET['debug']));
}
function api_systemNotification($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
WriteLine("<systemNotification>");
string id;
! Alle Datenpunkte durchlaufen
foreach(id, dom.GetObject(ID_SERVICES).EnumUsedIDs()){
! Einzelnen Datenpunkt holen
var serviceVar = dom.GetObject(id);
object trigDP = dom.GetObject(serviceVar.AlTriggerDP());
if( serviceVar.IsTypeOf( OT_ALARMDP ) && ( serviceVar.AlState() == asOncoming ) ){
! Namen und Wert des Elements ausgeben - fehlt -> visible
Write("<notification ise_id='" # serviceVar.AlTriggerDP() # "' name='" # trigDP.Name() # "' type='" # trigDP.HssType() # "' timestamp='" # serviceVar.LastTriggerTime().ToInteger() # "'/>");
WriteLine("");
}
}
WriteLine("</systemNotification>");
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request);
}
// SYSTEMNOTIFICATIONCLEAR
if (isset($_SERVER['QUERY_STRING']) and (strpos($_SERVER['QUERY_STRING'], "systemNotificationClear.cgi") !== false)) {
header("Content-Type: text/xml; charset=ISO-8859-1");
echo api_systemNotificationClear($ccu, isset($_GET['debug']));
}
function api_systemNotificationClear($ccu, $debug = false) {
// Baue Skript zusammen
$ccu_request = <<<EOHM
string itemID;
string address;
object aldp_obj;
foreach(itemID, dom.GetObject(ID_DEVICES).EnumUsedIDs()) {
address = dom.GetObject(itemID).Address();
aldp_obj = dom.GetObject(\"AL-\" # address # \":0.STICKY_UNREACH\");
if (aldp_obj) {
if (aldp_obj.Value()) {
aldp_obj.AlReceipt();
}
}
}
EOHM;
// Debug Mode
if ($debug) return($ccu_request);
// Schreibe Ausgabe
return "<?xml version='1.0' encoding='ISO-8859-1' ?>\n".ccu_remote($ccu, $ccu_request, true);
}
?>