#!/usr/local/bin/perl # Display all Webmin modules visible to the current user BEGIN { push(@INC, ".."); }; use WebminCore; &init_config(); &ReadParse(); $hostname = &get_display_hostname(); $ver = &get_webmin_version(); &get_miniserv_config(\%miniserv); if ($gconfig{'real_os_type'}) { if ($gconfig{'os_version'} eq "*") { $ostr = $gconfig{'real_os_type'}; } else { $ostr = "$gconfig{'real_os_type'} $gconfig{'real_os_version'}"; } } else { $ostr = "$gconfig{'os_type'} $gconfig{'os_version'}"; } %access = &get_module_acl(); # Build a list of all modules @modules = &get_visible_module_infos(); if (!defined($in{'cat'})) { # Maybe redirect to some module after login local $goto = &get_goto_module(\@modules); if ($goto) { &redirect($goto->{'dir'}.'/'); exit; } } $gconfig{'sysinfo'} = 0 if ($gconfig{'sysinfo'} == 1); if ($gconfig{'alt_startpage'}) { # Tim's webmin header &header(&text('main_title', $ver, $hostname, $ostr)); print "\n"; print ""; print "
\n"; print "Version $ver
$hostname
$ostr
\n"; print ""; print ""; print "$text{'main_homepage'}
"; print "$text{'main_feedback'}" if ($gconfig{'nofeedbackcc'} != 2 && $access{'feedback'}); if ($miniserv{'logout'} && !$ENV{'SSL_USER'} && !$ENV{'LOCAL_USER'} && $ENV{'HTTP_USER_AGENT'} !~ /webmin/i) { print "

\n"; if ($main::session_id) { print "", "$text{'main_logout'}"; } else { print "$text{'main_switch'}"; } } print "

\n\n"; } else { # Standard webmin header if ($gconfig{'texttitles'}) { @args = ( $text{'main_title2'}, undef ); } else { @args = ( $gconfig{'nohostname'} ? $text{'main_title2'} : &text('main_title', $ver, $hostname, $ostr), "images/webmin-blue.png" ); if ($gconfig{'showlogin'}) { $args[0] = $remote_user." : ".$args[0]; } } &header(@args, undef, undef, 1, 1, $tconfig{'brand'} ? "$tconfig{'brand'}" : $gconfig{'brand'} ? "$gconfig{'brand'}" : "$text{'main_homepage'}". ($gconfig{'nofeedbackcc'} == 2 || !$access{'feedback'} ? "" : "
$text{'main_feedback'}") ); print "

", &text('main_version', $ver, $hostname, $ostr),"
\n" if (!$gconfig{'nohostname'}); print "

\n"; } print $text{'main_header'}; if (!@modules) { # use has no modules! print "

$text{'main_none'}

\n"; } elsif ($gconfig{"notabs_${base_remote_user}"} == 2 || $gconfig{"notabs_${base_remote_user}"} == 0 && $gconfig{'notabs'}) { # Generate main menu with all modules on one page print "

\n"; $pos = 0; $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4; $per = 100.0 / $cols; foreach $m (@modules) { if ($pos % $cols == 0) { print "\n"; } print "\n"; if ($pos % $cols == $cols - 1) { print "\n"; } $pos++; } print "
\n"; local $idx = $m->{'index_link'}; print "
{'dir'}/$idx>", "{'dir'}/images/icon.gif border=0 ", "width=48 height=48>
\n"; print "{'dir'}/$idx>$m->{'desc'}


\n"; } else { # Display under categorised tabs &ReadParse(); %cats = &list_categories(\@modules); @cats = sort { $b cmp $a } keys %cats; $cats = @cats; $per = $cats ? 100.0 / $cats : 100; if (!defined($in{'cat'})) { # Use default category if (defined($gconfig{'deftab'}) && &indexof($gconfig{'deftab'}, @cats) >= 0) { $in{'cat'} = $gconfig{'deftab'}; } else { $in{'cat'} = $cats[0]; } } elsif (!$cats{$in{'cat'}}) { $in{'cat'} = ""; } print "\n"; $usercol = defined($gconfig{'cs_header'}) || defined($gconfig{'cs_table'}) || defined($gconfig{'cs_page'}); foreach $c (@cats) { $t = $cats{$c}; if ($in{'cat'} eq $c) { print "\n"; print "\n"; print "\n"; } else { print "\n"; print "\n"; print "\n"; } print "\n"; } print "
", $usercol ? "
" : "\"\"","
 $t ", $usercol ? "
" : "\"\"","
", $usercol ? "
" : "\"\"","
 ", "$t ", $usercol ? "
" : "\"\"","
\n"; print "
\n"; # Display the modules in this category $pos = 0; $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4; $per = 100.0 / $cols; foreach $m (@modules) { next if ($m->{'category'} ne $in{'cat'}); if ($pos % $cols == 0) { print "\n"; } local $idx = $m->{'index_link'}; print "\n"; if ($pos++ % $cols == $cols - 1) { print "\n"; } } while($pos++ % $cols) { print "\n"; } print "
\n"; print "
{'dir'}/$idx>", "{'dir'}/images/icon.gif alt=\"\" border=0>", "
\n"; print "{'dir'}/$idx>$m->{'desc'}


\n"; } # Check for incorrect OS if (&foreign_check("webmin")) { &foreign_require("webmin", "webmin-lib.pl"); &webmin::show_webmin_notifications(); } if ($miniserv{'logout'} && !$gconfig{'alt_startpage'} && !$ENV{'SSL_USER'} && !$ENV{'LOCAL_USER'} && !$ENV{'ANONYMOUS_USER'} && $ENV{'HTTP_USER_AGENT'} !~ /webmin/i) { print "\n"; if ($main::session_id) { print "\n"; } else { print "\n"; } print "
", "$text{'main_logout'}", "$text{'main_switch'}
\n"; } print $text{'main_footer'}; &footer();