X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=cgi-auth-flexible.pm;h=382b845ddc0c45016c9b004fac989b374659f2eb;hb=c8a519df1b5ed6607a02be9394bf9c80bb06840d;hp=54c73cfe7ebfdcd0801baab1aa0cdab71d1c4bfa;hpb=4a3cbe028cd4c8c217fc54ce0784c07f4dd1f081;p=cgi-auth-flexible.git diff --git a/cgi-auth-flexible.pm b/cgi-auth-flexible.pm index 54c73cf..382b845 100644 --- a/cgi-auth-flexible.pm +++ b/cgi-auth-flexible.pm @@ -105,39 +105,63 @@ sub do_redirect_cgi ($$$$) { '', $r->_gt("If you aren't redirected, click to continue."), "", - $c->_ch('gen_end_html')); + $r->_ch('gen_end_html')); } -sub gen_plain_login_form ($$) { - my ($c,$r, $params) = @_; +sub gen_some_form ($$) { + my ($r, $params, $bodyfn) = @_; + # Calls $bodyfn->($c,$r) which returns @formbits + my $c = $r->{Cgi}; my @form; push @form, ('
'. - ''); - my $sz = 'size="'.$r->{S}{form_entry_size}.'"'; - foreach my $up (@{ $r->{S}{username_param_names}}) { - push @form, ('', - ''); - } - push @form, ('', - ''); - push @form, ('', - '
',$r->_gt(ucfirst $up),'
'.$r->_gt('Password').'
', - '
'); + escapeHTML($r->_ch('get_url')).'">'); + push @form, $bodyfn->($c,$r); foreach my $n (keys %$params) { - push @form, (''); + foreach my $val (@{ $params->{$n} }) { + push @form, (''); + } } push @form, ('
'); return join "\n", @form; } -sub gen_login_link ($$) { +sub gen_plain_login_form ($$) { + my ($c,$r, $params) = @_; + return $r->gen_some_form($params, sub { + my @form; + push @form, (''); + my $sz = 'size="'.$r->{S}{form_entry_size}.'"'; + foreach my $up (@{ $r->{S}{username_param_names}}) { + push @form, ('', + ''); + } + push @form, ('', + ''); + push @form, ('', + '
',$r->_gt(ucfirst $up),'
'.$r->_gt('Password').'
', + '
'); + return @form; + }); +} + +sub gen_postmainpage_form ($$$) { + my ($c,$r, $params) = @_; + return $r->gen_some_form($params, sub { + my @form; + push @form, (''); + return @form; + }); +} + +sub gen_plain_login_link ($$) { my ($c,$r, $params) = @_; my $url = $r->url_with_query_params($params); return (''. @@ -165,6 +189,7 @@ sub new_verifier { login_form_timeout => 3600, # seconds key_rollover => 86400, # seconds assoc_param_name => 'caf_assochash', + dummy_param_name => 'caf_dummy', cookie_name => "caf_assocsecret", password_param_name => 'password', username_param_names => [qw(username)], @@ -193,6 +218,7 @@ sub new_verifier { gen_end_html => sub { $_[0]->end_html(); }, gen_login_form => \&gen_plain_login_form, gen_login_link => \&gen_plain_login_link, + gen_postmainpage_form => \&gen_postmainpage_form, gettext => sub { gettext($_[2]); }, print => sub { print $_[2] or die $!; }, }, @@ -279,7 +305,7 @@ print STDERR "DT fn eval ok\n"; print STDERR "DT commit ok\n"; 1; }) { -print STDERR "DT commit eval ok $rv\n"; +print STDERR "DT commit eval ok ",Dumper($rv); return $rv; } print STDERR "DT commit throw?\n"; @@ -718,16 +744,16 @@ sub check_ok ($) { my $cookie = $r->construct_cookie($cookiesecret); if (defined $cookiesecret) { - $params->{$r->{S}{assoc_param_name}} = $r->hash($cookiesecret); + $params->{$r->{S}{assoc_param_name}} = [ $r->hash($cookiesecret) ]; } if ($kind =~ m/^REDIRECT-/) { # for redirects, we honour stored NextParams and SetCookie, # as we would for non-divert if ($kind eq 'REDIRECT-LOGGEDOUT') { - $params->{$r->{S}{loggedout_param_names}[0]} = 1; + $params->{$r->{S}{loggedout_param_names}[0]} = [ 1 ]; } elsif ($kind eq 'REDIRECT-LOGOUT') { - $params->{$r->{S}{logout_param_names}[0]} = 1; + $params->{$r->{S}{logout_param_names}[0]} = [ 1 ]; } elsif ($kind eq 'REDIRECT-LOGGEDIN') { } else { die; @@ -745,7 +771,11 @@ sub check_ok ($) { } elsif ($kind =~ m/^SMALLPAGE-/) { $title = $r->_gt('Not logged in'); push @body, $r->_gt($divert->{Message}); - push @body, $r->_ch('gen_login_link'); + push @body, $r->_ch('gen_login_link', $params); + } elsif ($kind =~ m/^MAINPAGEONLY$/) { + $title = $r->_gt('Entering secure site.'); + push @body, $r->_gt($divert->{Message}); + push @body, $r->_ch('gen_postmainpage_form', $params); } else { die $kind; } @@ -920,7 +950,7 @@ sub secret_cookie_val ($) { sub secret_hidden_val ($) { my ($r) = @_; $r->_assert_checked(); - return defined $r->{AssocSecret} ? r->hash($r->{AssocSecret}) : ''; + return defined $r->{AssocSecret} ? $r->hash($r->{AssocSecret}) : ''; } sub secret_hidden_html ($) {