mirror of
https://github.com/webmin/webmin.git
synced 2026-02-03 06:03:28 +00:00
139 lines
3.0 KiB
Raku
139 lines
3.0 KiB
Raku
|
|
sub mod_tls_directives
|
|
{
|
|
local $rv = [
|
|
[ 'TLSEngine', 0, 7, 'virtual root', 1.27, 10 ],
|
|
[ 'TLSRequired', 0, 7, 'virtual root', 1.27, 9 ],
|
|
[ 'TLSRSACertificateFile', 0, 7, 'virtual root', 1.27, 8 ],
|
|
[ 'TLSRSACertificateKeyFile', 0, 7, 'virtual root', 1.27, 7 ],
|
|
[ 'TLSCACertificateFile', 0, 7, 'virtual root', 1.27, 5 ],
|
|
[ 'TLSECCertificateFile', 0, 7, 'virtual root', 1.35, 4 ],
|
|
[ 'TLSECCertificateKeyFile', 0, 7, 'virtual root', 1.35, 3 ],
|
|
];
|
|
return &make_directives($rv, $_[0], "mod_tls");
|
|
}
|
|
|
|
sub edit_TLSEngine
|
|
{
|
|
return (2, $text{'mod_tls_engine'},
|
|
&choice_input($_[0]->{'value'}, "TLSEngine", "",
|
|
"$text{'yes'},on", "$text{'no'},off",
|
|
"$text{'default'},"));
|
|
}
|
|
sub save_TLSEngine
|
|
{
|
|
return &parse_choice("TLSEngine", "");
|
|
}
|
|
|
|
sub edit_TLSRequired
|
|
{
|
|
return (2, $text{'mod_tls_required'},
|
|
&select_input($_[0]->{'value'}, "TLSRequired", "",
|
|
"$text{'yes'},on", "$text{'no'},off",
|
|
"$text{'mod_tls_ctrl'},ctrl",
|
|
"$text{'mod_tls_auth'},auth",
|
|
"$text{'mod_tls_authdata'},auth+data",
|
|
"$text{'default'},"));
|
|
}
|
|
sub save_TLSRequired
|
|
{
|
|
return &parse_choice("TLSRequired", "");
|
|
}
|
|
|
|
sub edit_TLSRSACertificateFile
|
|
{
|
|
my $n = $_[1]->{'name'};
|
|
return (2, $text{'mod_tls_file'},
|
|
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
|
|
&file_chooser_button($n));
|
|
}
|
|
sub save_TLSRSACertificateFile
|
|
{
|
|
my $n = $_[0]->{'name'};
|
|
if ($in{$n."_def"}) {
|
|
return ( [ ] );
|
|
}
|
|
else {
|
|
-r $in{$n} || &error($text{'mod_tls_efile'});
|
|
return ( [ $in{$n} ] );
|
|
}
|
|
}
|
|
|
|
sub edit_TLSRSACertificateKeyFile
|
|
{
|
|
my $n = $_[1]->{'name'};
|
|
return (2, $text{'mod_tls_key'},
|
|
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
|
|
&file_chooser_button($n));
|
|
}
|
|
sub save_TLSRSACertificateKeyFile
|
|
{
|
|
my $n = $_[0]->{'name'};
|
|
if ($in{$n."_def"}) {
|
|
return ( [ ] );
|
|
}
|
|
else {
|
|
-r $in{$n} || &error($text{'mod_tls_ekey'});
|
|
return ( [ $in{$n} ] );
|
|
}
|
|
}
|
|
|
|
sub edit_TLSCACertificateFile
|
|
{
|
|
my $n = $_[1]->{'name'};
|
|
return (2, $text{'mod_tls_ca'},
|
|
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
|
|
&file_chooser_button($n));
|
|
}
|
|
sub save_TLSCACertificateFile
|
|
{
|
|
my $n = $_[0]->{'name'};
|
|
if ($in{$n."_def"}) {
|
|
return ( [ ] );
|
|
}
|
|
else {
|
|
-r $in{$n} || &error($text{'mod_tls_eca'});
|
|
return ( [ $in{$n} ] );
|
|
}
|
|
}
|
|
|
|
sub edit_TLSECCertificateFile
|
|
{
|
|
my $n = $_[1]->{'name'};
|
|
return (2, $text{'mod_tls_ecfile'},
|
|
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
|
|
&file_chooser_button($n));
|
|
}
|
|
sub save_TLSECCertificateFile
|
|
{
|
|
my $n = $_[0]->{'name'};
|
|
if ($in{$n."_def"}) {
|
|
return ( [ ] );
|
|
}
|
|
else {
|
|
-r $in{$n} || &error($text{'mod_tls_eecfile'});
|
|
return ( [ $in{$n} ] );
|
|
}
|
|
}
|
|
|
|
sub edit_TLSECCertificateKeyFile
|
|
{
|
|
my $n = $_[1]->{'name'};
|
|
return (2, $text{'mod_tls_eckey'},
|
|
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
|
|
&file_chooser_button($n));
|
|
}
|
|
sub save_TLSECCertificateKeyFile
|
|
{
|
|
my $n = $_[0]->{'name'};
|
|
if ($in{$n."_def"}) {
|
|
return ( [ ] );
|
|
}
|
|
else {
|
|
-r $in{$n} || &error($text{'mod_tls_eeckey'});
|
|
return ( [ $in{$n} ] );
|
|
}
|
|
}
|
|
|
|
1;
|