-
Notifications
You must be signed in to change notification settings - Fork 52
/
editor.php
executable file
·1553 lines (1280 loc) · 49.9 KB
/
editor.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
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
require_once 'lib/editor.inc.php';
require_once 'lib/Weathermap.class.php';
require_once 'lib/geometry.php';
require_once 'lib/WMPoint.class.php';
require_once 'lib/WMVector.class.php';
require_once 'lib/WMLine.class.php';
// so that you can't have the editor active, and not know about it.
$ENABLED=true;
if(! $ENABLED)
{
print "<p>The editor has not been enabled yet. You need to set ENABLED=true at the top of editor.php</p>";
print "<p>Before you do that, you should consider using FilesMatch (in Apache) or similar to limit who can access the editor. There is more information in the install guide section of the manual.</p>";
exit();
}
require_once 'config.inc.php';
if( isset($_COOKIE['wmeditor']))
{
//$parts = preg_split(":",$_COOKIE['wmeditor']);
if( (isset($parts[0])) && (intval($parts[0]) == 1) ) { $use_overlay = TRUE; }
if( (isset($parts[1])) && (intval($parts[1]) == 1) ) { $use_relative_overlay = TRUE; }
if( (isset($parts[2])) && (intval($parts[2]) != 0) ) { $grid_snap_value = intval($parts[2]); }
}
if( isset($config) )
{
$configerror = 'OLD editor config file format. The format of this file changed in version 0.92 - please check the new editor-config.php-dist and update your editor-config.php file. [WMEDIT02]';
}
// check if the goalposts have moved
$librenms_found = false;
if (is_dir($librenms_base) && file_exists($librenms_base . "/.env")) {
// Boot LibreNMS
$init_modules = ['web', 'auth'];
require $librenms_base . '/includes/init.php';
if (!Auth::check()) {
header('Location: /');
exit;
}
chdir($librenms_base . '/html/plugins/Weathermap');
$librenms_found = true;
}
if(! is_writable($mapdir)) {
$configerror = "The map config directory is not writable by the web server user. You will not be able to edit any files until this is corrected. [WMEDIT01]";
}
chdir(dirname(__FILE__));
$action = '';
$mapname = '';
$selected = '';
$newaction = '';
$param = '';
$param2 = '';
$log = '';
if(!wm_module_checks())
{
print "<b>Required PHP extensions are not present in your mod_php/ISAPI PHP module. Please check your PHP setup to ensure you have the GD extension installed and enabled.</b><p>";
print "If you find that the weathermap tool itself is working, from the command-line or Cacti poller, then it is possible that you have two different PHP installations. The Editor uses the same PHP that webpages on your server use, but the main weathermap tool uses the command-line PHP interpreter.<p>";
print "<p>You should also run <a href=\"check.php\">check.php</a> to help make sure that there are no problems.</p><hr/>";
print "Here is a copy of the phpinfo() from your PHP web module, to help debugging this...<hr>";
phpinfo();
exit();
}
if(isset($_REQUEST['action'])) { $action = $_REQUEST['action']; }
if(isset($_REQUEST['mapname'])) { $mapname = $_REQUEST['mapname']; $mapname = wm_editor_sanitize_conffile($mapname); }
if(isset($_REQUEST['selected'])) { $selected = wm_editor_sanitize_selected($_REQUEST['selected']); }
$weathermap_debugging=FALSE;
if($mapname == '')
{
// this is the file-picker/welcome page
show_editor_startpage();
}
else
{
// everything else in this file is inside this else
$mapfile = $mapdir.'/'.$mapname;
wm_debug("==========================================================================================================\n");
wm_debug("Starting Edit Run: action is $action on $mapname\n");
wm_debug("==========================================================================================================\n");
# editor_log("\n\n-----------------------------------------------------------------------------\nNEW REQUEST:\n\n");
# editor_log(var_log($_REQUEST));
$map = new WeatherMap;
$map->context = 'editor';
$fromplug = FALSE;
if(isset($_REQUEST['plug']) && (intval($_REQUEST['plug'])==1) ) { $fromplug = TRUE; }
switch($action)
{
case 'newmap':
$map->WriteConfig($mapfile);
break;
case 'newmapcopy':
if(isset($_REQUEST['sourcemap'])) { $sourcemapname = $_REQUEST['sourcemap']; }
$sourcemapname = wm_editor_sanitize_conffile($sourcemapname);
if($sourcemapname != "") {
$sourcemap = $mapdir.'/'.$sourcemapname;
if( file_exists($sourcemap) && is_readable($sourcemap) ) {
$map->ReadConfig($sourcemap);
$map->WriteConfig($mapfile);
}
}
break;
case 'font_samples':
$map->ReadConfig($mapfile);
ksort($map->fonts);
header('Content-type: image/png');
$keyfont = 2;
$keyheight = imagefontheight($keyfont)+2;
$sampleheight = 32;
// $im = imagecreate(250,imagefontheight(5)+5);
$im = imagecreate(2000,$sampleheight);
$imkey = imagecreate(2000,$keyheight);
$white = imagecolorallocate($im,255,255,255);
$black = imagecolorallocate($im,0,0,0);
$whitekey = imagecolorallocate($imkey,255,255,255);
$blackkey = imagecolorallocate($imkey,0,0,0);
$x = 3;
#for($i=1; $i< 6; $i++)
foreach ($map->fonts as $fontnumber => $font)
{
$string = "Abc123%";
$keystring = "Font $fontnumber";
list($width,$height) = $map->myimagestringsize($fontnumber,$string);
list($kwidth,$kheight) = $map->myimagestringsize($keyfont,$keystring);
if($kwidth > $width) $width = $kwidth;
$y = ($sampleheight/2) + $height/2;
$map->myimagestring($im, $fontnumber, $x, $y, $string, $black);
$map->myimagestring($imkey, $keyfont,$x,$keyheight,"Font $fontnumber",$blackkey);
$x = $x + $width + 6;
}
$im2 = imagecreate($x,$sampleheight + $keyheight);
imagecopy($im2,$im, 0,0, 0,0, $x, $sampleheight);
imagecopy($im2,$imkey, 0,$sampleheight, 0,0, $x, $keyheight);
imagedestroy($im);
imagepng($im2);
imagedestroy($im2);
exit();
break;
case 'draw':
header('Content-type: image/png');
$map->ReadConfig($mapfile);
if($selected != '')
{
if(substr($selected,0,5) == 'NODE:')
{
$nodename = substr($selected,5);
$map->nodes[$nodename]->selected=1;
}
if(substr($selected,0,5) == 'LINK:')
{
$linkname = substr($selected,5);
$map->links[$linkname]->selected=1;
}
}
$map->sizedebug = TRUE;
$map->DrawMap('','',250,TRUE,$use_overlay,$use_relative_overlay);
exit();
break;
case 'show_config':
header('Content-type: text/plain');
// Exclusive code for libreNMS
// Temp fix for CVE-2013-3739 exploit
$check_base = realpath($mapdir);
$check_path = realpath($mapfile);
if($check_path === false || strpos($check_path, $check_base) !== 0){
echo('Bad mapname');
exit();
break;
}
$fd = fopen($mapfile,'r');
while (!feof($fd))
{
$buffer = fgets($fd, 4096);
echo $buffer;
}
fclose($fd);
exit();
break;
case 'fetch_config':
$map->ReadConfig($mapfile);
header('Content-type: text/plain');
$item_name = $_REQUEST['item_name'];
$item_type = $_REQUEST['item_type'];
$ok=FALSE;
if($item_type == 'node'){
if (isset($map->nodes[$item_name])) {
print $map->nodes[$item_name]->WriteConfig();
$ok = TRUE;
}
}
if($item_type == 'link') {
if(isset($map->links[$item_name])) {
print $map->links[$item_name]->WriteConfig();
$ok = TRUE;
}
}
if (! $ok) {
print "# the request item didn't exist. That's probably a bug.\n";
}
exit();
break;
case "set_link_config":
$map->ReadConfig($mapfile);
$link_name = $_REQUEST['link_name'];
$link_config = fix_gpc_string($_REQUEST['item_configtext']);
if(isset($map->links[$link_name])) {
$map->links[$link_name]->config_override = $link_config;
$map->WriteConfig($mapfile);
// now clear and reload the map object, because the in-memory one is out of sync
// - we don't know what changes the user made here, so we just have to reload.
unset($map);
$map = new WeatherMap;
$map->context = 'editor';
$map->ReadConfig($mapfile);
}
break;
case "set_node_config":
$map->ReadConfig($mapfile);
$node_name = $_REQUEST['node_name'];
$node_config = fix_gpc_string($_REQUEST['item_configtext']);
if(isset($map->nodes[$node_name])) {
$map->nodes[$node_name]->config_override = $node_config;
$map->WriteConfig($mapfile);
// now clear and reload the map object, because the in-memory one is out of sync
// - we don't know what changes the user made here, so we just have to reload.
unset($map);
$map = new WeatherMap;
$map->context = 'editor';
$map->ReadConfig($mapfile);
}
break;
case "set_node_properties":
$map->ReadConfig($mapfile);
$node_name = $_REQUEST['node_name'];
$new_node_name = $_REQUEST['node_new_name'];
// first check if there's a rename...
if($node_name != $new_node_name && strpos($new_node_name," ") === false)
{
if(!isset($map->nodes[$new_node_name]))
{
// we need to rename the node first.
$newnode = $map->nodes[$node_name];
$newnode->name = $new_node_name;
$map->nodes[$new_node_name] = $newnode;
unset($map->nodes[$node_name]);
// find the references elsewhere to the old node name.
// First, relatively-positioned NODEs
foreach ($map->nodes as $node)
{
if($node->relative_to == $node_name)
{
$map->nodes[$node->name]->relative_to = $new_node_name;
}
}
// Next, LINKs that use this NODE as an end.
foreach ($map->links as $link)
{
if(isset($link->a))
{
if($link->a->name == $node_name)
{
$map->links[$link->name]->a = $newnode;
}
if($link->b->name == $node_name)
{
$map->links[$link->name]->b = $newnode;
}
// while we're here, VIAs can also be relative to a NODE,
// so check if any of those need to change
if( (count($link->vialist)>0) )
{
$vv=0;
foreach($link->vialist as $v)
{
if(isset($v[2]) && $v[2] == $node_name)
{
// die PHP4, die!
$map->links[$link->name]->vialist[$vv][2] = $new_node_name;
}
$vv++;
}
}
}
}
}
else
{
// silently ignore attempts to rename a node to an existing name
$new_node_name = $node_name;
}
}
// by this point, and renaming has been done, and new_node_name will always be the right name
$map->nodes[$new_node_name]->label = wm_editor_sanitize_string($_REQUEST['node_label']);
$map->nodes[$new_node_name]->infourl[IN] = wm_editor_sanitize_string($_REQUEST['node_infourl']);
$urls = preg_split('/\s+/', $_REQUEST['node_hover'], -1, PREG_SPLIT_NO_EMPTY);
$map->nodes[$new_node_name]->overliburl[IN] = $urls;
$map->nodes[$new_node_name]->overliburl[OUT] = $urls;
$map->nodes[$new_node_name]->x = intval($_REQUEST['node_x']);
$map->nodes[$new_node_name]->y = intval($_REQUEST['node_y']);
if($_REQUEST['node_iconfilename'] == '--NONE--')
{
$map->nodes[$new_node_name]->iconfile='';
}
else
{
// AICONs mess this up, because they're not fully supported by the editor, but it can still break them
if($_REQUEST['node_iconfilename'] != '--AICON--') {
$iconfile = stripslashes($_REQUEST['node_iconfilename']);
$map->nodes[$new_node_name]->iconfile = $iconfile;
}
}
$map->WriteConfig($mapfile);
break;
case "set_link_properties":
$map->ReadConfig($mapfile);
$link_name = $_REQUEST['link_name'];
if(strpos($link_name," ") === false) {
$map->links[$link_name]->width = floatval($_REQUEST['link_width']);
$map->links[$link_name]->infourl[IN] = wm_editor_sanitize_string($_REQUEST['link_infourl']);
$map->links[$link_name]->infourl[OUT] = wm_editor_sanitize_string($_REQUEST['link_infourl']);
$urls = preg_split('/\s+/', $_REQUEST['link_hover'], -1, PREG_SPLIT_NO_EMPTY);
$map->links[$link_name]->overliburl[IN] = $urls;
$map->links[$link_name]->overliburl[OUT] = $urls;
$map->links[$link_name]->comments[IN] = wm_editor_sanitize_string($_REQUEST['link_commentin']);
$map->links[$link_name]->comments[OUT] = wm_editor_sanitize_string($_REQUEST['link_commentout']);
$map->links[$link_name]->commentoffset_in = intval($_REQUEST['link_commentposin']);
$map->links[$link_name]->commentoffset_out = intval($_REQUEST['link_commentposout']);
// $map->links[$link_name]->target = $_REQUEST['link_target'];
$targets = preg_split('/\s+/',$_REQUEST['link_target'],-1,PREG_SPLIT_NO_EMPTY);
$new_target_list = array();
foreach ($targets as $target)
{
// we store the original TARGET string, and line number, along with the breakdown, to make nicer error messages later
$newtarget = array($target,'traffic_in','traffic_out',0,$target);
// if it's an RRD file, then allow for the user to specify the
// DSs to be used. The default is traffic_in, traffic_out, which is
// OK for Cacti (most of the time), but if you have other RRDs...
if(preg_match("/(.*\.rrd):([\-a-zA-Z0-9_]+):([\-a-zA-Z0-9_]+)$/i",$target,$matches))
{
$newtarget[0] = $matches[1];
$newtarget[1] = $matches[2];
$newtarget[2] = $matches[3];
}
// now we've (maybe) messed with it, we'll store the array of target specs
$new_target_list[] = $newtarget;
}
$map->links[$link_name]->targets = $new_target_list;
$bwin = $_REQUEST['link_bandwidth_in'];
$bwout = $_REQUEST['link_bandwidth_out'];
if(isset($_REQUEST['link_bandwidth_out_cb']) && $_REQUEST['link_bandwidth_out_cb'] == 'symmetric')
{
$bwout = $bwin;
}
if(wm_editor_validate_bandwidth($bwin)) {
$map->links[$link_name]->max_bandwidth_in_cfg = $bwin;
$map->links[$link_name]->max_bandwidth_in = unformat_number($bwin, $map->kilo);
}
if(wm_editor_validate_bandwidth($bwout)) {
$map->links[$link_name]->max_bandwidth_out_cfg = $bwout;
$map->links[$link_name]->max_bandwidth_out = unformat_number($bwout, $map->kilo);
}
// $map->links[$link_name]->SetBandwidth($bwin,$bwout);
$map->WriteConfig($mapfile);
}
break;
case "set_map_properties":
$map->ReadConfig($mapfile);
$map->title = wm_editor_sanitize_string($_REQUEST['map_title']);
$map->keytext['DEFAULT'] = wm_editor_sanitize_string($_REQUEST['map_legend']);
$map->stamptext = wm_editor_sanitize_string($_REQUEST['map_stamp']);
$map->htmloutputfile = wm_editor_sanitize_file($_REQUEST['map_htmlfile'],array("html") );
$map->imageoutputfile = wm_editor_sanitize_file($_REQUEST['map_pngfile'],array("png","jpg","gif","jpeg"));
$map->width = intval($_REQUEST['map_width']);
$map->height = intval($_REQUEST['map_height']);
// XXX sanitise this a bit
if($_REQUEST['map_bgfile'] == '--NONE--')
{
$map->background='';
}
else
{
$map->background = wm_editor_sanitize_file(stripslashes($_REQUEST['map_bgfile']),array("png","jpg","gif","jpeg") );
}
$inheritables = array(
array('link','width','map_linkdefaultwidth',"float"),
);
handle_inheritance($map, $inheritables);
$map->links['DEFAULT']->width = intval($_REQUEST['map_linkdefaultwidth']);
$map->links['DEFAULT']->add_note("my_width", intval($_REQUEST['map_linkdefaultwidth']));
$bwin = $_REQUEST['map_linkdefaultbwin'];
$bwout = $_REQUEST['map_linkdefaultbwout'];
$bwin_old = $map->links['DEFAULT']->max_bandwidth_in_cfg;
$bwout_old = $map->links['DEFAULT']->max_bandwidth_out_cfg;
if(! wm_editor_validate_bandwidth($bwin)) {
$bwin = $bwin_old;
}
if(! wm_editor_validate_bandwidth($bwout)) {
$bwout = $bwout_old;
}
if( ($bwin_old != $bwin) || ($bwout_old != $bwout) )
{
$map->links['DEFAULT']->max_bandwidth_in_cfg = $bwin;
$map->links['DEFAULT']->max_bandwidth_out_cfg = $bwout;
$map->links['DEFAULT']->max_bandwidth_in = unformat_number($bwin, $map->kilo);
$map->links['DEFAULT']->max_bandwidth_out = unformat_number($bwout, $map->kilo);
// $map->defaultlink->SetBandwidth($bwin,$bwout);
foreach ($map->links as $link)
{
if( ($link->max_bandwidth_in_cfg == $bwin_old) || ($link->max_bandwidth_out_cfg == $bwout_old) )
{
// $link->SetBandwidth($bwin,$bwout);
$link_name = $link->name;
$map->links[$link_name]->max_bandwidth_in_cfg = $bwin;
$map->links[$link_name]->max_bandwidth_out_cfg = $bwout;
$map->links[$link_name]->max_bandwidth_in = unformat_number($bwin, $map->kilo);
$map->links[$link_name]->max_bandwidth_out = unformat_number($bwout, $map->kilo);
}
}
}
$map->WriteConfig($mapfile);
break;
case 'set_map_style':
$map->ReadConfig($mapfile);
if(wm_editor_validate_one_of($_REQUEST['mapstyle_htmlstyle'],array('static','overlib'),false)) {
$map->htmlstyle = strtolower($_REQUEST['mapstyle_htmlstyle']);
}
$map->keyfont = intval($_REQUEST['mapstyle_legendfont']);
$inheritables = array(
array('link','labelstyle','mapstyle_linklabels',""),
array('link','bwfont','mapstyle_linkfont',"int"),
array('link','arrowstyle','mapstyle_arrowstyle',""),
array('node','labelfont','mapstyle_nodefont',"int")
);
handle_inheritance($map, $inheritables);
$map->WriteConfig($mapfile);
break;
case "add_link":
$map->ReadConfig($mapfile);
$param2 = $_REQUEST['param'];
# $param2 = substr($param2,0,-2);
$newaction = 'add_link2';
# print $newaction;
$selected = 'NODE:'.$param2;
break;
case "add_link2":
$map->ReadConfig($mapfile);
$a = $_REQUEST['param2'];
$b = $_REQUEST['param'];
# $b = substr($b,0,-2);
$log = "[$a -> $b]";
if($a != $b && isset($map->nodes[$a]) && isset($map->nodes[$b]) )
{
$newlink = new WeatherMapLink;
$newlink->Reset($map);
$newlink->a = $map->nodes[$a];
$newlink->b = $map->nodes[$b];
// $newlink->SetBandwidth($map->defaultlink->max_bandwidth_in_cfg, $map->defaultlink->max_bandwidth_out_cfg);
$newlink->width = $map->links['DEFAULT']->width;
// make sure the link name is unique. We can have multiple links between
// the same nodes, these days
$newlinkname = "$a-$b";
while(array_key_exists($newlinkname,$map->links))
{
$newlinkname .= "a";
}
$newlink->name = $newlinkname;
$newlink->defined_in = $map->configfile;
$map->links[$newlinkname] = $newlink;
array_push($map->seen_zlayers[$newlink->zorder], $newlink);
$map->WriteConfig($mapfile);
}
break;
case "place_legend":
$x = snap( intval($_REQUEST['x']) ,$grid_snap_value);
$y = snap( intval($_REQUEST['y']) ,$grid_snap_value);
$scalename = wm_editor_sanitize_name($_REQUEST['param']);
$map->ReadConfig($mapfile);
$map->keyx[$scalename] = $x;
$map->keyy[$scalename] = $y;
$map->WriteConfig($mapfile);
break;
case "place_stamp":
$x = snap( intval($_REQUEST['x']), $grid_snap_value);
$y = snap( intval($_REQUEST['y']), $grid_snap_value);
$map->ReadConfig($mapfile);
$map->timex = $x;
$map->timey = $y;
$map->WriteConfig($mapfile);
break;
case "via_link":
$x = intval($_REQUEST['x']);
$y = intval($_REQUEST['y']);
$link_name = wm_editor_sanitize_name($_REQUEST['link_name']);
$map->ReadConfig($mapfile);
if(isset($map->links[$link_name])) {
$map->links[$link_name]->vialist = array(array(0 =>$x, 1=>$y));
$map->WriteConfig($mapfile);
}
break;
case "move_node":
$x = snap( intval($_REQUEST['x']), $grid_snap_value);
$y = snap( intval($_REQUEST['y']), $grid_snap_value);
$node_name = wm_editor_sanitize_name($_REQUEST['node_name']);
$map->ReadConfig($mapfile);
if(isset($map->nodes[$node_name])) {
// This is a complicated bit. Find out if this node is involved in any
// links that have VIAs. If it is, we want to rotate those VIA points
// about the *other* node in the link
foreach ($map->links as $link)
{
if( (count($link->vialist)>0) && (($link->a->name == $node_name) || ($link->b->name == $node_name)) )
{
// get the other node from us
if($link->a->name == $node_name) $pivot = $link->b;
if($link->b->name == $node_name) $pivot = $link->a;
if( ($link->a->name == $node_name) && ($link->b->name == $node_name) )
{
// this is a wierd special case, but it is possible
# $log .= "Special case for node1->node1 links\n";
$dx = $link->a->x - $x;
$dy = $link->a->y - $y;
for($i=0; $i<count($link->vialist); $i++)
{
$link->vialist[$i][0] = $link->vialist[$i][0]-$dx;
$link->vialist[$i][1] = $link->vialist[$i][1]-$dy;
}
}
else
{
$pivx = $pivot->x;
$pivy = $pivot->y;
$dx_old = $pivx - $map->nodes[$node_name]->x;
$dy_old = $pivy - $map->nodes[$node_name]->y;
$dx_new = $pivx - $x;
$dy_new = $pivy - $y;
$l_old = sqrt($dx_old*$dx_old + $dy_old*$dy_old);
$l_new = sqrt($dx_new*$dx_new + $dy_new*$dy_new);
$angle_old = rad2deg(atan2(-$dy_old,$dx_old));
$angle_new = rad2deg(atan2(-$dy_new,$dx_new));
# $log .= "$pivx,$pivy\n$dx_old $dy_old $l_old => $angle_old\n";
# $log .= "$dx_new $dy_new $l_new => $angle_new\n";
// the geometry stuff uses a different point format, helpfully
$points = array();
foreach($link->vialist as $via)
{
$points[] = $via[0];
$points[] = $via[1];
}
$scalefactor = $l_new/$l_old;
# $log .= "Scale by $scalefactor along link-line";
// rotate so that link is along the axis
rotateAboutPoint($points,$pivx, $pivy, deg2rad($angle_old));
// do the scaling in here
for($i=0; $i<(count($points)/2); $i++)
{
$basex = ($points[$i*2] - $pivx) * $scalefactor + $pivx;
$points[$i*2] = $basex;
}
// rotate back so that link is along the new direction
rotateAboutPoint($points,$pivx, $pivy, deg2rad(-$angle_new));
// now put the modified points back into the vialist again
$v = 0; $i = 0;
foreach($points as $p)
{
// skip a point if it positioned relative to a node. Those shouldn't be rotated (well, IMHO)
if(!isset($link->vialist[$v][2]))
{
$link->vialist[$v][$i]=$p;
}
$i++;
if($i==2) { $i=0; $v++;}
}
}
}
}
$map->nodes[$node_name]->x = $x;
$map->nodes[$node_name]->y = $y;
$map->WriteConfig($mapfile);
}
break;
case "link_tidy":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
if(isset($map->links[$target])) {
// draw a map and throw it away, to calculate all the bounding boxes
$map->DrawMap('null');
tidy_link($map,$target);
$map->WriteConfig($mapfile);
}
break;
case "retidy":
$map->ReadConfig($mapfile);
// draw a map and throw it away, to calculate all the bounding boxes
$map->DrawMap('null');
retidy_links($map);
$map->WriteConfig($mapfile);
break;
case "retidy_all":
$map->ReadConfig($mapfile);
// draw a map and throw it away, to calculate all the bounding boxes
$map->DrawMap('null');
retidy_links($map,TRUE);
$map->WriteConfig($mapfile);
break;
case "untidy":
$map->ReadConfig($mapfile);
// draw a map and throw it away, to calculate all the bounding boxes
$map->DrawMap('null');
untidy_links($map);
$map->WriteConfig($mapfile);
break;
// NOTE: LEGACY CODE FROM 0.97c
case "link_align_horizontal":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
if(isset($map->links[target])) {
$log = "align link ".$target;
$a_y = $map->links[$target]->a->y;
$b_y = $map->links[$target]->b->y;
$diff = $b_y - $a_y;
$newoffset = "0:$diff";
// if we've already done this once, try the other way around...
if($map->links[$target]->a_offset == $newoffset)
{
$diff = $a_y - $b_y;
$newoffset = "0:$diff";
$map->links[$target]->b_offset = $newoffset;
$map->links[$target]->a_offset = "C";
}
else
{
// the standard thing
$map->links[$target]->a_offset = $newoffset;
$map->links[$target]->b_offset = "C";
}
$map->WriteConfig($mapfile);
}
break;
case "link_align_vertical":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
if(isset($map->links[target])) {
$log = "align link ".$target;
$a_x = $map->links[$target]->a->x;
$b_x = $map->links[$target]->b->x;
$diff = $b_x - $a_x;
$newoffset = "$diff:0";
// if we've already done this once, try the other way around...
if($map->links[$target]->a_offset == $newoffset)
{
$diff = $a_x - $b_x;
$newoffset = "$diff:0";
$map->links[$target]->b_offset = $newoffset;
$map->links[$target]->a_offset = "C";
}
else
{
// the standard thing
$map->links[$target]->a_offset = $newoffset;
$map->links[$target]->b_offset = "C";
}
$map->WriteConfig($mapfile);
}
break;
//
case "delete_link":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
$log = "delete link ".$target;
if(isset($map->links[$target])) {
unset($map->links[$target]);
$map->WriteConfig($mapfile);
}
break;
case "add_node":
$x = snap(intval($_REQUEST['x']), $grid_snap_value);
$y = snap(intval($_REQUEST['y']), $grid_snap_value);
$map->ReadConfig($mapfile);
$newnodename = sprintf("node%05d",time()%10000);
while(array_key_exists($newnodename,$map->nodes))
{
$newnodename .= "a";
}
$node = new WeatherMapNode;
$node->name = $newnodename;
$node->template = "DEFAULT";
$node->Reset($map);
$node->x = $x;
$node->y = $y;
$node->defined_in = $map->configfile;
array_push($map->seen_zlayers[$node->zorder], $node);
// only insert a label if there's no LABEL in the DEFAULT node.
// otherwise, respect the template.
if($map->nodes['DEFAULT']->label == $map->nodes[':: DEFAULT ::']->label)
{
$node->label = "Node";
}
$map->nodes[$node->name] = $node;
$log = "added a node called $newnodename at $x,$y to $mapfile";
$map->WriteConfig($mapfile);
break;
case "editor_settings":
// have to do this, otherwise the editor will be unresponsive afterwards - not actually going to change anything!
$map->ReadConfig($mapfile);
$use_overlay = (isset($_REQUEST['editorsettings_showvias']) ? intval($_REQUEST['editorsettings_showvias']) : FALSE);
$use_relative_overlay = (isset($_REQUEST['editorsettings_showrelative']) ? intval($_REQUEST['editorsettings_showrelative']) : FALSE);
$grid_snap_value = (isset($_REQUEST['editorsettings_gridsnap']) ? intval($_REQUEST['editorsettings_gridsnap']) : 0);
break;
case "delete_node":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
if(isset($map->nodes[$target])) {
$log = "delete node ".$target;
foreach ($map->links as $link)
{
if( isset($link->a) )
{
if( ($target == $link->a->name) || ($target == $link->b->name) )
{
unset($map->links[$link->name]);
}
}
}
unset($map->nodes[$target]);
$map->WriteConfig($mapfile);
}
break;
case "clone_node":
$map->ReadConfig($mapfile);
$target = wm_editor_sanitize_name($_REQUEST['param']);
if(isset($map->nodes[$target])) {
$log = "clone node ".$target;
$newnodename = $target;
do
{
$newnodename = $newnodename."_copy";
} while(isset($map->nodes[$newnodename]));
$node = new WeatherMapNode;
$node->Reset($map);
$node->CopyFrom($map->nodes[$target]);
# CopyFrom skips this one, because it's also the function used by template inheritance
# - but for Clone, we DO want to copy the template too
$node->template = $map->nodes[$target]->template;
$node->name = $newnodename;
$node->x += 30;
$node->y += 30;
$node->defined_in = $mapfile;
$map->nodes[$newnodename] = $node;
array_push($map->seen_zlayers[$node->zorder], $node);
$map->WriteConfig($mapfile);
}
break;
// no action was defined - starting a new map?
default:
$map->ReadConfig($mapfile);
break;
}
//by here, there should be a valid $map - either a blank one, the existing one, or the existing one with requested changes
wm_debug("Finished modifying\n");
// now we'll just draw the full editor page, with our new knowledge
$imageurl = '?mapname='.urlencode($mapname) . '&action=draw';
if($selected != '')
{
$imageurl .= '&selected='.urlencode(wm_editor_sanitize_selected($selected));
}
$imageurl .= '&unique='.time();
// build up the editor's list of used images
if($map->background != '') $map->used_images[] = $map->background;
foreach ($map->nodes as $n)
{
if($n->iconfile != '' && ! preg_match("/^(none|nink|inpie|outpie|box|rbox|gauge|round)$/",$n->iconfile))
$map->used_images[] = $n->iconfile;
}
// get the list from the images/ folder too
$imlist = get_imagelist("images");
$fontlist = array();
setcookie("wmeditor", ($use_overlay ? "1":"0") .":". ($use_relative_overlay ? "1":"0") . ":" . intval($grid_snap_value), time()+60*60*24*30 );
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<style type="text/css">
<?php
// if the cacti config was included properly, then
// this will be non-empty, and we can unhide the cacti links in the Link Properties box
// NOTE: change for libreNMS
if( ! isset($config['install_dir']) )
{
echo " .cactilink { display: none; }\n";
echo " .cactinode { display: none; }\n";
}
?>
</style>
<link rel="stylesheet" type="text/css" media="screen" href="editor-resources/oldeditor.css" />
<script src="vendor/jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="editor-resources/editor.js" type="text/javascript"></script>
<script type="text/javascript">