mirror of
https://github.com/webmin/webmin.git
synced 2025-07-21 23:40:34 +00:00
179 lines
5.3 KiB
Perl
Executable File
179 lines
5.3 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# index.cgi
|
|
# Display logging search form
|
|
|
|
use strict;
|
|
use warnings;
|
|
no warnings 'redefine';
|
|
no warnings 'uninitialized';
|
|
require './webminlog-lib.pl';
|
|
our (%text, %gconfig, %access_users, %in, %config, %access);
|
|
&ReadParse();
|
|
&foreign_require("acl", "acl-lib.pl");
|
|
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
|
|
|
|
my @tabs = ( [ 'search', $text{'index_searchtab'} ] );
|
|
if ($access{'notify'}) {
|
|
push(@tabs, [ 'notify', $text{'index_notifytab'} ]);
|
|
}
|
|
print &ui_tabs_start(\@tabs, 'mode', $in{'mode'} || 'search', 1);
|
|
|
|
print &ui_tabs_start_tab('mode', 'search');
|
|
|
|
if (!$gconfig{'log'}) {
|
|
print &text('index_nolog', '/webmin/edit_log.cgi'),"<p>\n";
|
|
}
|
|
elsif (!$gconfig{'logfiles'}) {
|
|
print &text('index_nologfiles', '/webmin/edit_log.cgi'),"<p>\n";
|
|
}
|
|
else {
|
|
print $text{'index_searchdesc'},"<p>\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;
|
|
my @unames = grep { &can_user($_) } map { $_->{'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 @opts = ( [ 1, $text{'index_uall'}."<br>" ],
|
|
[ 0, $text{'index_user'}." ".
|
|
&ui_select("user", undef, \@unames)."<br>" ] );
|
|
if ($access_users{'*'}) {
|
|
push(@opts, [ 2, $text{'index_nuser'}." ".
|
|
&ui_select("nuser", undef, \@unames)."<br>" ]);
|
|
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'}."<br>" ],
|
|
[ 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'}."<br>" ],
|
|
[ 2, $text{'index_today'}."<br>" ],
|
|
[ 3, $text{'index_yesterday'}."<br>" ],
|
|
[ 4, $text{'index_week'}."<br>" ],
|
|
[ 0, "<span class='ui_data'>".
|
|
&text('index_time', &time_input('from'),
|
|
&time_input('to'))."</span>" ] ]));
|
|
|
|
# Action description to match
|
|
print &ui_table_row($text{'index_sdesc'},
|
|
&ui_textbox("desc", undef, 40));
|
|
|
|
# Search modified files and diff contents
|
|
if ($gconfig{'logfiles'}) {
|
|
print &ui_table_row($text{'index_sfile'},
|
|
&ui_radio("fall", 1,
|
|
[ [ 1, $text{'index_fall'}."<br>" ],
|
|
[ 0, $text{'index_file'}." ".
|
|
&ui_textbox("file", undef, 40) ] ]));
|
|
|
|
print &ui_table_row($text{'index_sdiff'},
|
|
&ui_radio("dall", 1,
|
|
[ [ 1, $text{'index_dall'}."<br>" ],
|
|
[ 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'}."<br>" ],
|
|
[ 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'} ] ]);
|
|
print &ui_tabs_end_tab('mode', 'search');
|
|
|
|
if ($access{'notify'}) {
|
|
print &ui_tabs_start_tab('mode', 'notify');
|
|
|
|
print $text{'index_notifydesc'},"<p>\n";
|
|
|
|
print &ui_form_start("save_notify.cgi", "post");
|
|
print &ui_table_start($text{'index_header2'}, undef, 2);
|
|
|
|
# Notifications enabled?
|
|
print &ui_table_row($text{'index_notify'},
|
|
&ui_yesno_radio("notify", $gconfig{'logemail'} ? 1 : 0));
|
|
|
|
# Send notification to
|
|
print &ui_table_row($text{'index_notify_email'},
|
|
&ui_textbox("email", $gconfig{'logemail'}, 60));
|
|
|
|
# Message subject options
|
|
print &ui_table_row($text{'index_notify_usub'},
|
|
&ui_yesno_radio("usub", $gconfig{'logemailusub'}));
|
|
print &ui_table_row($text{'index_notify_msub'},
|
|
&ui_yesno_radio("msub", $gconfig{'logemailmsub'}));
|
|
|
|
# Notify for which modules
|
|
my @msel = split(/\s+/, $gconfig{'logmodulesemail'});
|
|
print &ui_table_row($text{'index_notify_mods'},
|
|
&ui_radio("mods_all", @msel ? 0 : 1,
|
|
[ [ 1, $text{'index_mall'} ],
|
|
[ 0, $text{'index_modules'}."<br>".
|
|
&ui_select("mods", \@msel, \@mods, 10, 1) ] ]));
|
|
|
|
# Notify for which users
|
|
my @usel = split(/\s+/, $gconfig{'logusersemail'});
|
|
print &ui_table_row($text{'index_notify_users'},
|
|
&ui_radio("users_all", @usel ? 0 : 1,
|
|
[ [ 1, $text{'index_uall'} ],
|
|
[ 0, $text{'index_users'}."<br>".
|
|
&ui_select("users", \@usel, \@unames, 10, 1) ] ]));
|
|
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ undef, $text{'save'} ] ]);
|
|
|
|
print &ui_tabs_end_tab('mode', 'notify');
|
|
}
|
|
|
|
print &ui_tabs_end(1);
|
|
|
|
&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");
|
|
}
|
|
|