#!/usr/local/bin/perl # index.cgi # Display logging search form use strict; use warnings; require './webminlog-lib.pl'; our (%text, %gconfig, %access_users, %in, %config); &foreign_require("acl", "acl-lib.pl"); &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1); if (!$gconfig{'log'}) { print &text('index_nolog', '/webmin/edit_log.cgi'),"

\n"; } elsif (!$gconfig{'logfiles'}) { print &text('index_nologfiles', '/webmin/edit_log.cgi'),"

\n"; } print &ui_form_start("search.cgi"); print &ui_table_start($text{'index_header'}, undef, 2); my @ulist = sort { $a->{'name'} cmp $b->{'name'} } &acl::list_users(); my @canulist = grep { &can_user($_->{'name'}) } @ulist; if (@canulist == 1) { # Can only show one user, so skip this field print &ui_hidden("uall", 1),"\n"; } else { # Show user selectors my @unames = grep { &can_user($_) } map { $_->{'name'} } @ulist; my @opts = ( [ 1, $text{'index_uall'}."
" ], [ 0, $text{'index_user'}." ". &ui_select("user", undef, \@unames)."
" ] ); if ($access_users{'*'}) { push(@opts, [ 2, $text{'index_nuser'}." ". &ui_select("nuser", undef, \@unames)."
" ]); push(@opts, [ 3, $text{'index_ouser'}." ". &ui_textbox("ouser", undef, 20) ]); } print &ui_table_row($text{'index_susers'}, &ui_radio("uall", 1, \@opts)); } # Modules to search my @mods; if (&can_mod("global")) { push(@mods, [ "global", $text{'index_global'} ]); } foreach my $m (sort { $a->{'desc'} cmp $b->{'desc'} } &get_all_module_infos()) { next if (!&can_mod($m->{'dir'})); my $mdir = &module_root_directory($m->{'dir'}); if (-r "$mdir/log_parser.pl" && &check_os_support($m)) { push(@mods, [ $m->{'dir'}, $m->{'desc'} ]); } } my @opts = ( [ 1, $text{'index_mall'}."
" ], [ 0, $text{'index_module'}." ". &ui_select("module", $in{'module'}, \@mods) ] ); print &ui_table_row($text{'index_smods'}, &ui_radio("mall", 1, \@opts)); # Dates to search print &ui_table_row($text{'index_stimes'}, &ui_radio("tall", 2, [ [ 1, $text{'index_tall'}."
" ], [ 2, $text{'index_today'}."
" ], [ 3, $text{'index_yesterday'}."
" ], [ 4, $text{'index_week'}."
" ], [ 0, &text('index_time', &time_input('from'), &time_input('to')) ] ])); # Search modified files and diff contents if ($gconfig{'logfiles'}) { print &ui_table_row($text{'index_sfile'}, &ui_radio("fall", 1, [ [ 1, $text{'index_fall'}."
" ], [ 0, $text{'index_file'}." ". &ui_textbox("file", undef, 40) ] ])); print &ui_table_row($text{'index_sdiff'}, &ui_radio("dall", 1, [ [ 1, $text{'index_dall'}."
" ], [ 0, $text{'index_diff'}." ". &ui_textbox("diff", undef, 40) ] ])); } # Remote host if ($config{'host_search'}) { print &ui_table_row($text{'index_shost'}, &ui_radio("wall", 1, [ [ 1, $text{'index_wall'}."
" ], [ 0, $text{'index_whost'}." ". &ui_textbox("webmin", undef, 30) ] ])); } # Show full descriptions? print &ui_table_row($text{'index_long'}, &ui_yesno_radio("long", 0)); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'index_search'} ] ]); &ui_print_footer("/", $text{'index'}); sub time_input { my ($name) = @_; return &ui_date_input(undef, undef, undef, $name."_d", $name."_m", $name."_y"). &date_chooser_button($name."_d", $name."_m", $name."_y"); }