forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit_mod.cgi
executable file
·199 lines (180 loc) · 5.42 KB
/
edit_mod.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
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
#!/usr/local/bin/perl
# edit_mod.cgi
# Display details of a module or theme
require './cluster-usermin-lib.pl';
&ReadParse();
$type = $in{'tedit'} || !$in{'mod'} ? 'theme' : 'mod';
$name = $in{$type};
&ui_print_header(undef, $text{"edit_title_$type"}, "");
# Find all hosts with the module or theme
@hosts = &list_usermin_hosts();
@servers = &list_servers();
foreach $h (@hosts) {
local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers;
foreach $m ($type eq 'theme' ? @{$h->{'themes'}}
: @{$h->{'modules'}}) {
if ($m->{'dir'} eq $name) {
$s->{'module'} = $m;
push(@got, $s);
push(@goth, $h);
$mod = $m if (!$mod);
if (!$checkon && ($s->{'id'} == $in{'host'} ||
!$s->{'id'} && !defined($in{'host'}))) {
$checkon = $s;
$checkonh = $h;
}
}
}
}
# Get the details from this host, or the first in the list
if (!$checkon) {
$checkonh = $goth[0];
$checkon = $got[0];
}
#&remote_foreign_require($checkon->{'host'}, "software", "software-lib.pl");
#@pinfo = &remote_foreign_call($checkon->{'host'}, "software", "package_info",
# $in{'package'});
# Show module/theme details
print "<table border width=100%>\n";
print "<tr $tb> <td><b>",&text("edit_header_$type", &server_name($checkon)),
"</b></td> </tr>\n";
print "<tr $cb> <td><table width=100%>\n";
print "<tr> <td><b>$text{'edit_desc'}</b></td>\n";
print "<td>",$mod->{'desc'},"</td>\n";
print "<td><b>$text{'edit_ver'}</b></td>\n";
print "<td>",$mod->{'version'} ? $mod->{'version'}
: $text{'edit_nover'},"</td> </tr>\n";
if ($type eq 'mod') {
# Show details of module
foreach $m (@{$checkonh->{'modules'}}) {
$modmap{$m->{'dir'}} = $m;
foreach $d (split(/\s+/, $m->{'depends'})) {
push(@{$ondeps{$d}}, $m);
}
}
&read_file("$usermin::config{'usermin_dir'}/webmin.catnames",
\%catnames);
%utext = &get_usermin_text();
print "<tr> <td><b>$text{'edit_cat'}</b></td>\n";
$c = $mod->{'category'};
print "<td>",$catname{$c} ? $catname{$c} :
$utext{"category_$c"} ? $utext{"category_$c"} :
$utext{"category_"},"</td>\n";
print "<td><b>$text{'edit_dir'}</b></td>\n";
print "<td><tt>$mod->{'dir'}</tt></td> </tr>\n";
# Show operating systems
print "<tr> <td valign=top><b>$text{'edit_os'}</b></td>\n";
print "<td colspan=3>\n";
$oss = $mod->{'os_support'};
if (!$oss) {
print $text{'edit_osall'};
}
else {
open(OSLIST, "<$root_directory/os_list.txt");
while(<OSLIST>) {
chop;
if (/^([^\t]+)\t+([^\t]+)\t+(\S+)\t+(\S+)\t*(.*)$/) {
$osname{$3} = $1 if (!$osname{$3});
}
}
close(OSLIST);
$osname{"*-linux"} = "Linux";
while(1) {
local ($os, $ver, $codes);
if ($oss =~ /^([^\/\s]+)\/([^\{\s]+)\{([^\}]*)\}\s*(.*)$/) {
$os = $1; $ver = $2; $codes = $3; $oss = $4;
}
elsif ($oss =~ /^([^\/\s]+)\/([^\/\s]+)\s*(.*)$/) {
$os = $1; $ver = $2; $oss = $3;
}
elsif ($oss =~ /^([^\{\s]+)\{([^\}]*)\}\s*(.*)$/) {
$os = $1; $codes = $2; $oss = $3;
}
elsif ($oss =~ /^\{([^\}]*)\}\s*(.*)$/) {
$codes = $1; $oss = $2;
}
elsif ($oss =~ /^(\S+)\s*(.*)$/) {
$os = $1; $oss = $2;
}
else { last; }
print " , \n" if ($doneone++);
$osn = $osname{$os} ? $osname{$os} : $os;
$osn =~ s/\s/ /g;
if ($ver) {
print "$osn $ver";
}
elsif ($os) {
print "$osn";
}
if ($codes) {
$codes =~ s/\s/ /g;
if ($os) {
print " (",&text('edit_codes',
"<tt>$codes</tt>"),")";
}
else {
print &text('edit_codes',
"<tt>$codes</tt>");
}
}
}
}
print "</td> </tr>\n";
# Show which modules this module depends upon
local @deps = grep { !/^[0-9\.]+$/ } split(/\s+/, $mod->{'depends'});
local @pdeps = split(/\s+/, $mod->{'perldepends'});
print "<tr> <td valign=top><b>$text{'edit_deps'}</b></td>\n";
print "<td valign=top>\n";
if (@deps || @pdeps) {
foreach $d (@deps) {
local $mm = $modmap{$d};
print $mm->{'desc'}," (<tt>$mm->{'dir'}</tt>)<br>\n";
}
foreach $d (@pdeps) {
print &text('edit_pdep', "<tt>$d</tt>"),"<br>\n";
}
}
else {
print "$text{'edit_nodeps'}\n";
}
print "</td>\n";
# Show which other modules depend on this one
print "<td valign=top><b>$text{'edit_ondeps'}</b></td>\n";
print "<td valign=top>\n";
if ($ondeps{$mod->{'dir'}}) {
foreach $d (@{$ondeps{$mod->{'dir'}}}) {
print $d->{'desc'}," (<tt>$d->{'dir'}</tt>)<br>\n";
}
}
else {
print "$text{'edit_nodeps'}\n";
}
print "</td> </tr>\n";
}
else {
# Show details of theme
}
print "</table></td></tr></table><p>\n";
print "<table width=100%><tr>\n";
print "<td><form action=delete_mod.cgi>\n";
print "<input type=hidden name=type value=\"$type\">\n";
print "<input type=hidden name=mod value=\"$name\">\n";
print "<input type=submit value='",$text{"edit_uninst_$type"},"'>\n";
print "<select name=server>\n";
print "<option value=-1>$text{'edit_all'}</option>\n";
foreach $s (@got) {
print "<option value='$s->{'id'}'>",&server_name($s),"</option>\n";
}
print "</select></form></td>\n";
print "</tr></table>\n";
# Show hosts with the module or theme
print &ui_hr();
print &ui_subheading($text{'edit_hosts'});
@icons = map { "/servers/images/$_->{'type'}.gif" } @got;
@links = map { "edit_host.cgi?id=$_->{'id'}" } @got;
@titles = map { &server_name($_).
($_->{'module'}->{'version'} ? " ($text{'host_version2'} $_->{'module'}->{'version'})" : "") } @got;
&icons_table(\@links, \@titles, \@icons);
print "<br>";
&remote_finished();
&ui_print_footer("", $text{'index_return'});