forked from webmin/webmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmb_share.cgi
executable file
·60 lines (55 loc) · 1.41 KB
/
smb_share.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
#!/usr/local/bin/perl
# smb_share.cgi
# Displays a list of shares available on some host
require './mount-lib.pl';
&ReadParse();
&header(&text('smb_choose2', $in{'server'}));
print <<EOF;
<script>
function choose(f)
{
top.opener.ifield.value = f;
window.close();
}
</script>
EOF
&execute_command("$config{'smbclient_path'} -d 0 -L $in{'server'} -N",
undef, \$out, \$out);
if ($?) {
print "<b>",&text('smb_elist2', $in{'server'}),"</b>\n";
exit;
}
elsif ($out =~ /Unknown host/) {
print "<b>",&text('smb_ehost', $in{'server'}),"</b>\n";
exit;
}
elsif ($out =~ /error connecting|connect error/) {
print "<b>",&text('smb_edown', $in{'server'}),"</b>\n";
exit;
}
if ($out =~ /Sharename\s+Type\s+Comment\n((.+\n)+)/) {
@shlist = split(/\n/, $1);
foreach $sh (@shlist) {
if ($sh =~ /^\s+(.{1,7}\S+)\s+Disk\s*(.*)$/) {
push(@names, $1); push(@comms, $2);
}
}
}
if (@names) {
print "<b>$text{'smb_sel2'}</b><br>\n";
print "<table border width=100%>\n";
print "<tr $tb> <td><b>$text{'smb_share'}</b></td> ",
"<td><b>$text{'smb_comment'}</b></td> </tr>\n";
for($i=0; $i<@names; $i++) {
print "<tr $cb> <td><a href=\"\" ",
"onClick='choose(\"$names[$i]\"); ".
"return false'>$names[$i]</a></td>\n";
printf "<td>%s</td> </tr>\n",
$comms[$i] =~ /\S/ ? $comms[$i] : "<br>";
}
print "</table>\n";
}
else {
print "<b>",&text('smb_noshares', $in{'server'}),"</b>\n";
}
&popup_footer();