forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_host.cgi
executable file
·113 lines (97 loc) · 3.38 KB
/
edit_host.cgi
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
#!/usr/local/bin/perl
# edit_host.cgi
# Show details of a managed host, and all the modules on it
require './cluster-usermin-lib.pl';
&ReadParse();
&ui_print_header(undef, $text{'host_title'}, "");
@hosts = &list_usermin_hosts();
($host) = grep { $_->{'id'} eq $in{'id'} } @hosts;
$server = &foreign_call("servers", "get_server", $in{'id'});
@modules = @{$host->{'modules'}};
@themes = @{$host->{'themes'}};
@users = @{$host->{'users'}};
@groups = @{$host->{'groups'}};
# Show host details
print "<input type=hidden name=id value=$in{'id'}>\n";
print "<table border width=100%>\n";
print "<tr $tb> <td><b>$text{'host_header'}</b></td> </tr>\n";
print "<tr $cb> <td><table width=100%>\n";
print "<tr> <td><b>$text{'host_name'}</b></td>\n";
if ($server->{'id'}) {
printf "<td>%s</td>\n",
$server->{'desc'} ? $server->{'desc'} : $server->{'host'};
}
else {
print "<td>$text{'this_server'}</td>\n";
}
if ($server->{'id'}) {
print "<td><b>$text{'host_type'}</b></td> <td>\n";
foreach $t (@servers::server_types) {
print $t->[1] if ($t->[0] eq $server->{'type'});
}
print "</td>\n";
}
print "</tr>\n";
print "<tr> <td><b>$text{'host_count'}</b></td>\n";
printf "<td>%d</td>\n", scalar(@modules);
print "<td><b>$text{'host_tcount'}</b></td>\n";
printf "<td>%d</td> </tr>\n", scalar(@themes);
print "<tr> <td><b>$text{'host_os'}</b></td>\n";
print "<td>$host->{'real_os_type'} $host->{'real_os_version'}</td>\n";
print "<td><b>$text{'host_version'}</b></td>\n";
printf "<td>%s</td> </tr>\n", $host->{'version'};
print "</table></td></tr></table>\n";
# Show delete and refresh buttons
print "<p></p><table width=100%><tr>\n";
print "<td><form action=delete_host.cgi>\n";
print "<input type=hidden name=id value=$in{'id'}>\n";
print "<input type=submit value='$text{'host_delete'}'>\n";
print "</form></td>\n";
print "<td align=right><form action=refresh.cgi>\n";
print "<input type=hidden name=id value=$in{'id'}>\n";
print "<input type=submit value='$text{'host_refresh'}'>\n";
print "</form></td>\n";
print "</tr></table>\n";
# Show table of modules and themes
print "<p></p><table border width=100%>\n";
print "<tr $tb> <td><b>$text{'host_header_m'}</b></td> </tr>\n";
print "<tr $cb> <td><table width=100%>\n";
$i = 0;
my $total_cells = scalar(@modules);
foreach $m (sort { $a->{'desc'} cmp $b->{'desc'} } @modules) {
my $colspan = '';
if ($total_cells == $i + 1 && $total_cells%$i == 1) {
if ($i%3 == 0) {
$colspan = " colspan=3 ";
} elsif($i%3 == 1) {
$colspan = " colspan=2 ";
}
}
print "<tr>\n" if ($i%3 == 0);
print "<td $colspan width=33%><a href='edit_mod.cgi?mod=$m->{'dir'}&host=$in{'id'}'>",$m->{'desc'},"</td>\n";
print "</tr>\n" if ($i%3 == 2);
$i++;
}
if (@themes) {
$i = 0;
print "</table></td></tr>\n";
print "<tr $tb> <td><b>$text{'host_header_t'}</b></td> </tr>\n";
print "<tr $cb> <td><table width=100%>\n";
my $total_cells_themes = scalar(@themes);
foreach $t (sort { $a->{'desc'} cmp $b->{'desc'} } @themes) {
my $colspan = '';
if ($total_cells_themes == $i + 1 && $total_cells_themes%$i == 1) {
if ($i%3 == 0) {
$colspan = " colspan=3 ";
} elsif($i%3 == 1) {
$colspan = " colspan=2 ";
}
}
print "<tr>\n" if ($i%3 == 0);
print "<td $colspan width=33%><a href='edit_mod.cgi?theme=$t->{'dir'}$in{'id'}'>",$t->{'desc'},"</td>\n";
print "</tr>\n" if ($i%3 == 2);
$i++;
}
}
print "</table></td></tr></table><br>\n";
&ui_print_footer("", $text{'index_return'});