mirror of
https://github.com/webmin/webmin.git
synced 2025-08-16 14:51:18 +00:00
112 lines
3.7 KiB
Perl
Executable File
112 lines
3.7 KiB
Perl
Executable File
#!/usr/local/bin/perl
|
|
# edit_dserv.cgi
|
|
# Edit <Limit> section details
|
|
|
|
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'}];
|
|
$ln = $l->{'value'};
|
|
$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{'lserv_title'}, "",
|
|
undef, undef, undef, undef, &restart_button());
|
|
|
|
print &ui_form_start("save_lserv.cgi", "post");
|
|
print &ui_hidden("virt", $in{'virt'});
|
|
print &ui_hidden("idx", $in{'idx'});
|
|
print &ui_hidden("limit", $in{'limit'});
|
|
print &ui_hidden("anon", $in{'anon'});
|
|
print &ui_hidden("global", $in{'global'});
|
|
print &ui_hidden("file", $in{'file'});
|
|
print &ui_table_start($text{'lserv_title'}, undef, 2);
|
|
|
|
print &ui_table_row($text{'lserv_cmd'},
|
|
&ui_select("cmd",
|
|
[ map { uc($_) } @{$l->{'words'}} ],
|
|
[ map { uc($_) } ('cwd', 'mkd', 'rnfr', 'dele', 'rmd', 'retr', 'stor') ],
|
|
7, 1)."\n".
|
|
&ui_select("cmd",
|
|
[ map { uc($_) } @{$l->{'words'}} ],
|
|
[ map { uc($_) } ('site_chmod', 'read', 'write', 'dirs', 'login', 'all') ],
|
|
7, 1));
|
|
|
|
print &ui_table_end();
|
|
print &ui_form_end([ [ undef, $text{'save'} ],
|
|
[ 'delete', $text{'lserv_delete'} ] ]);
|
|
|
|
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'});
|
|
}
|
|
}
|