mirror of
https://github.com/webmin/webmin.git
synced 2025-07-29 11:50:54 +00:00
107 lines
3.5 KiB
Perl
Executable File
107 lines
3.5 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# edit_limit.cgi
|
|
# Display a form for editing some kind of limit section options
|
|
|
|
require './proftpd-lib.pl';
|
|
&ReadParse();
|
|
if ($in{'file'}) {
|
|
$conf = &get_ftpaccess_config($in{'file'});
|
|
}
|
|
else {
|
|
if ($in{'global'}) {
|
|
$conf = &get_config();
|
|
$conf = &get_or_create_global($conf);
|
|
}
|
|
else {
|
|
($conf, $v) = &get_virtual_config($in{'virt'});
|
|
}
|
|
if ($in{'anon'}) {
|
|
$anon = &find_directive_struct("Anonymous", $conf);
|
|
$conf = $anon->{'members'};
|
|
}
|
|
if ($in{'idx'} ne '') {
|
|
$dir = $conf->[$in{'idx'}];
|
|
$conf = $dir->{'members'};
|
|
}
|
|
}
|
|
$l = $conf->[$in{'limit'}];
|
|
$conf = $l->{'members'};
|
|
$ln = $l->{'value'};
|
|
|
|
@dirs = &editable_directives($in{'type'}, 'limit');
|
|
$desc = $in{'file'} ? &text('limit_header6', $ln, &html_escape($in{'file'})) :
|
|
$dir ? &text('limit_header4', $ln, $dir->{'words'}->[0]) :
|
|
$in{'global'} ? &text('limit_header7', $ln) :
|
|
$in{'anon'} ? &text('limit_header5', $ln) :
|
|
$in{'virt'} ? &text('limit_header1', $ln, $v->{'words'}->[0]) :
|
|
&text('limit_header2', $ln);
|
|
&ui_print_header($desc, $text{"type_$in{'type'}"}, "",
|
|
undef, undef, undef, undef, &restart_button());
|
|
|
|
print &ui_form_start("save_limit.cgi", "post");
|
|
print &ui_hidden("type", $in{'type'});
|
|
print &ui_hidden("idx", $in{'idx'});
|
|
print &ui_hidden("limit", $in{'limit'});
|
|
print &ui_hidden("virt", $in{'virt'});
|
|
print &ui_hidden("anon", $in{'anon'});
|
|
print &ui_hidden("global", $in{'global'});
|
|
print &ui_hidden("file", $in{'file'});
|
|
print &ui_table_start(&text('limit_header3', $text{"type_$in{'type'}"},
|
|
$l->{'value'}), "width=100%", 4);
|
|
&generate_inputs(\@dirs, $conf);
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ undef, $text{'save'} ] ]);
|
|
|
|
if ($in{'file'}) {
|
|
&ui_print_footer("limit_index.cgi?file=$in{'file'}&limit=$in{'limit'}",
|
|
$text{'limit_return'},
|
|
"ftpaccess_index.cgi?file=$in{'file'}",$text{'ftpindex_return'},
|
|
"ftpaccess.cgi", $text{'ftpaccess_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
elsif ($in{'idx'} eq '') {
|
|
if ($in{'global'}) {
|
|
&ui_print_footer("limit_index.cgi?limit=$in{'limit'}&global=$in{'global'}",
|
|
$text{'limit_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
elsif ($in{'anon'}) {
|
|
&ui_print_footer("limit_index.cgi?virt=$in{'virt'}&limit=$in{'limit'}&anon=$in{'anon'}",
|
|
$text{'limit_return'},
|
|
"anon_index.cgi?virt=$in{'virt'}",$text{'anon_return'},
|
|
"virt_index.cgi?virt=$in{'virt'}",$text{'virt_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
else {
|
|
&ui_print_footer("limit_index.cgi?virt=$in{'virt'}&limit=$in{'limit'}",
|
|
$text{'limit_return'},
|
|
"virt_index.cgi?virt=$in{'virt'}",$text{'virt_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
}
|
|
else {
|
|
if ($in{'global'}) {
|
|
&ui_print_footer("limit_index.cgi?limit=$in{'limit'}&idx=$in{'idx'}&global=$in{'global'}",
|
|
$text{'limit_return'},
|
|
"dir_index.cgi?idx=$in{'idx'}&global=$in{'global'}",
|
|
$text{'dir_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
elsif ($in{'anon'}) {
|
|
&ui_print_footer("limit_index.cgi?virt=$in{'virt'}&limit=$in{'limit'}&idx=$in{'idx'}&anon=$in{'anon'}",
|
|
$text{'limit_return'},
|
|
"dir_index.cgi?virt=$in{'virt'}&idx=$in{'idx'}&anon=$in{'anon'}", $text{'dir_return'},
|
|
"anon_index.cgi?virt=$in{'virt'}",$text{'anon_return'},
|
|
"virt_index.cgi?virt=$in{'virt'}",$text{'virt_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
else {
|
|
&ui_print_footer("limit_index.cgi?virt=$in{'virt'}&limit=$in{'limit'}&idx=$in{'idx'}",
|
|
$text{'limit_return'},
|
|
"dir_index.cgi?virt=$in{'virt'}&idx=$in{'idx'}&anon=$in{'anon'}", $text{'dir_return'},
|
|
"virt_index.cgi?virt=$in{'virt'}",$text{'virt_return'},
|
|
"", $text{'index_return'});
|
|
}
|
|
}
|
|
|