X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=lib%2FCGI%2FEx%2FApp.pm;h=9b4f8c4bbda4c8ba3121321a9e6d4eb600c5146c;hb=HEAD;hp=545c318679b5693299195621c0c17ad87ef5bb22;hpb=f30b8252fcf71659a2fd3b5895e009ff8e39299d;p=chaz%2Fp5-CGI-Ex diff --git a/lib/CGI/Ex/App.pm b/lib/CGI/Ex/App.pm index 545c318..9b4f8c4 100644 --- a/lib/CGI/Ex/App.pm +++ b/lib/CGI/Ex/App.pm @@ -1,216 +1,130 @@ package CGI::Ex::App; -###----------------------------------------------------------------### +###---------------------### # See the perldoc in CGI/Ex/App.pod -# Copyright 2007 - Paul Seamons # -# Distributed under the Perl Artistic License without warranty # -###----------------------------------------------------------------### +# Copyright 2004-2012 - Paul Seamons +# Distributed under the Perl Artistic License without warranty use strict; -use vars qw($VERSION); - +use Carp qw(croak); BEGIN { - $VERSION = '2.10'; - - Time::HiRes->import('time') if eval {require Time::HiRes}; - eval {require Scalar::Util}; -} - -sub croak { - my $msg = shift; - $msg = 'Something happened' if ! defined $msg; - die $msg if ref $msg || $msg =~ /\n\z/; - my ($pkg, $file, $line, $sub) = caller(1); - die "$msg in ${sub}() at $file line $line\n"; + eval { use Time::HiRes qw(time) }; + eval { use Scalar::Util }; } - -###----------------------------------------------------------------### +our $VERSION = '2.37'; sub new { - my $class = shift || croak "Usage: Package->new"; - my $self = shift || {}; + my $class = shift || croak "Usage: ".__PACKAGE__."->new"; + my $self = ref($_[0]) ? shift() : (@_ % 2) ? {} : {@_}; bless $self, $class; $self->init; + $self->init_from_conf; return $self; } sub init {} +sub init_from_conf { + my $self = shift; + return if ! $self->load_conf; + my $conf = $self->conf; + @{ $self }{ keys %$conf } = values %$conf; + return; +} -sub destroy {} +sub import { # only ever called with explicit use CGI::Ex::App qw() - not with use base + my $class = shift; + if (@_ = grep { /^:?App($|__)/ } @_) { + require CGI::Ex::App::Constants; + unshift @_, 'CGI::Ex::App::Constants'; + goto &CGI::Ex::App::Constants::import; + } +} -###----------------------------------------------------------------### +###---------------------### sub navigate { my ($self, $args) = @_; $self = $self->new($args) if ! ref $self; $self->{'_time'} = time; - eval { - ### allow for authentication - my $ref = $self->require_auth; - if ($ref && ! ref $ref) { - return $self if ! $self->get_valid_auth; - } - - ### a chance to do things at the very beginning return $self if ! $self->{'_no_pre_navigate'} && $self->pre_navigate; - - ### run the step loop - eval { - local $self->{'__morph_lineage_start_index'} = $#{$self->{'__morph_lineage'} || []}; - $self->nav_loop; - }; - if ($@) { - ### rethrow the error unless we long jumped out of recursive nav_loop calls - croak $@ if $@ ne "Long Jump\n"; - } - - ### one chance to do things at the very end - $self->post_navigate if ! $self->{'_no_post_navigate'}; - - + local $self->{'_morph_lineage_start_index'} = $#{$self->{'_morph_lineage'} || []}; + $self->nav_loop; }; - $self->handle_error($@) if $@; # catch any errors - - $self->{'_time'} = time; + my $err = $@; + if ($err && (ref($err) || $err ne "Long Jump\n")) { # catch any errors + die $err if ! $self->can('handle_error'); + if (! eval { $self->handle_error($err); 1 }) { + die "$err\nAdditionally, the following happened while calling handle_error: $@"; + } + } + $self->handle_error($@) if ! $self->{'_no_post_navigate'} && ! eval { $self->post_navigate; 1 } && $@ && $@ ne "Long Jump\n"; $self->destroy; - return $self; } sub nav_loop { my $self = shift; - ### keep from an infinate nesting - local $self->{'recurse'} = $self->{'recurse'} || 0; - if ($self->{'recurse'} ++ >= $self->recurse_limit) { + local $self->{'_recurse'} = $self->{'_recurse'} || 0; + if ($self->{'_recurse'}++ >= $self->recurse_limit) { my $err = "recurse_limit (".$self->recurse_limit.") reached"; $err .= " number of jumps (".$self->{'jumps'}.")" if ($self->{'jumps'} || 0) > 1; croak $err; } my $path = $self->path; + return if $self->pre_loop($path); - ### allow for an early return - return if $self->pre_loop($path); # a true value means to abort the navigate - - my $req_auth = ref($self->require_auth) ? $self->require_auth : undef; - - ### iterate on each step of the path - foreach ($self->{'path_i'} ||= 0; - $self->{'path_i'} <= $#$path; - $self->{'path_i'} ++) { + foreach ($self->{'path_i'} ||= 0; $self->{'path_i'} <= $#$path; $self->{'path_i'}++) { my $step = $path->[$self->{'path_i'}]; - if ($step !~ /^([^\W0-9]\w*)$/) { # don't process the step if it contains odd characters + if ($step !~ /^([^\W0-9]\w*)$/) { $self->stash->{'forbidden_step'} = $step; - $self->replace_path($self->forbidden_step); - next; + $self->goto_step($self->forbidden_step); } $step = $1; # untaint - ### allow for per-step authentication - if ($req_auth - && $req_auth->{$step} - && ! $self->get_valid_auth) { - return; + if (! $self->is_authed) { + my $req = $self->run_hook('require_auth', $step, 1); + return if (ref($req) ? $req->{$step} : $req) && ! $self->run_hook('get_valid_auth', $step); } - ### allow for becoming another package (allows for some steps in external files) - $self->morph($step); - - ### allow for mapping path_info pieces to form elements - if (my $info = $ENV{'PATH_INFO'}) { - my $maps = $self->run_hook('path_info_map', $step) || []; - croak 'Usage: sub path_info_map { [[qr{/path_info/(\w+)}, "keyname"]] }' - if ! UNIVERSAL::isa($maps, 'ARRAY') || (@$maps && ! UNIVERSAL::isa($maps->[0], 'ARRAY')); - foreach my $map (@$maps) { - my @match = $info =~ $map->[0]; - next if ! @match; - $self->form->{$map->[$_]} = $match[$_ - 1] foreach grep {! defined $self->form->{$map->[$_]}} 1 .. $#$map; - last; - } - } + $self->run_hook('morph', $step); # let steps be in external modules - ### run the guts of the step - my $handled = $self->run_hook('run_step', $step); + # allow for mapping path_info pieces to form elements + $self->parse_path_info('path_info_map', $self->run_hook('path_info_map', $step)); - ### Allow for the run_step to intercept. - ### A true status means the run_step took over navigation. - if ($handled) { - $self->unmorph($step); + if ($self->run_hook('run_step', $step)) { + $self->run_hook('unmorph', $step); return; } - ### if there are no future steps - allow for this step to designate one to follow my $is_at_end = $self->{'path_i'} >= $#$path ? 1 : 0; - $self->run_hook('refine_path', $step, $is_at_end); - - $self->unmorph($step); + $self->run_hook('refine_path', $step, $is_at_end); # no more steps - allow for this step to designate one to follow + $self->run_hook('unmorph', $step); } - ### allow for one exit point after the loop - return if $self->post_loop($path); # a true value means to abort the navigate + return if $self->post_loop($path); - ### run the default step as a last resort - $self->insert_path($self->default_step); + $self->insert_path($self->default_step); # run the default step as a last resort $self->nav_loop; # go recursive return; } -sub pre_navigate { 0 } # true means to not enter nav_loop - -sub post_navigate {} - -sub pre_loop { 0 } # true value means to abort the nav_loop routine - -sub post_loop { 0 } # true value means to abort the nav_loop - don't recurse - -sub recurse_limit { shift->{'recurse_limit'} || 15 } - -### default die handler - show what happened and die (so its in the error logs) -sub handle_error { - my $self = shift; - my $err = shift; - - die $err; -} - -###----------------------------------------------------------------### - -sub default_step { shift->{'default_step'} || 'main' } - -sub js_step { shift->{'js_step'} || 'js' } - -sub forbidden_step { shift->{'forbidden_step'} || '__forbidden' } - -sub step_key { shift->{'step_key'} || 'step' } - sub path { my $self = shift; - if (! $self->{'path'}) { - my $path = $self->{'path'} = []; # empty path - - ### add initial items to the form hash from path_info - if (my $info = $ENV{'PATH_INFO'}) { - my $maps = $self->path_info_map_base || []; - croak 'Usage: sub path_info_map_base { [[qr{/path_info/(\w+)}, "keyname"]] }' - if ! UNIVERSAL::isa($maps, 'ARRAY') || (@$maps && ! UNIVERSAL::isa($maps->[0], 'ARRAY')); - foreach my $map (@$maps) { - my @match = $info =~ $map->[0]; - next if ! @match; - $self->form->{$map->[$_]} = $match[$_ - 1] foreach grep {! defined $self->form->{$map->[$_]}} 1 .. $#$map; - last; - } - } + return $self->{'path'} ||= do { + my $path = []; - ### make sure the step is valid - my $step = $self->form->{$self->step_key}; + $self->parse_path_info('path_info_map_base', $self->path_info_map_base); # add initial items to the form hash from path_info + my $step = $self->form->{$self->step_key}; # make sure the step is valid if (defined $step) { + $step =~ s|^/+||; $step =~ s|/|__|g; if ($step =~ /^_/) { # can't begin with _ $self->stash->{'forbidden_step'} = $step; push @$path, $self->forbidden_step; @@ -224,545 +138,661 @@ sub path { push @$path, $step; } } - } - - return $self->{'path'}; + $path; + }; } -sub path_info_map_base { - my $self = shift; - return [[qr{/(\w+)}, $self->step_key]]; +sub parse_path_info { + my ($self, $type, $maps, $info, $form) = @_; + $info ||= $self->path_info || return; + $form ||= $self->form; + return if ! $maps; + croak "Usage: sub $type { [] }" if ! UNIVERSAL::isa($maps, 'ARRAY'); + foreach my $map (@$maps) { + croak "Usage: sub $type { [[qr{/path_info/(\\w+)}, 'keyname']] }" if ! UNIVERSAL::isa($map, 'ARRAY'); + my @match = $info =~ $map->[0]; + next if ! @match; + if (UNIVERSAL::isa($map->[1], 'CODE')) { + $map->[1]->($form, @match); + } else { + $form->{$map->[$_]} = $match[$_ - 1] foreach grep {! defined $form->{$map->[$_]}} 1 .. $#$map; + } + last; + } } -sub set_path { - my $self = shift; - my $path = $self->{'path'} ||= []; - croak "Cannot call set_path after the navigation loop has begun" if $self->{'path_i'}; - splice @$path, 0, $#$path + 1, @_; # change entries in the ref (which updates other copies of the ref) -} +sub run_hook { + my ($self, $hook, $step, @args) = @_; + my ($code, $found); + if (ref $hook eq 'CODE') { + $code = $hook; + $hook = $found = 'coderef'; + } else { + ($code, $found) = @{ $self->find_hook($hook, $step) }; + } + croak "Could not find a method named ${step}_${hook} or ${hook}" if ! $code; + croak "Value for $hook ($found) is not a code ref ($code)" if ! UNIVERSAL::isa($code, 'CODE'); -### legacy - same as append_path -sub add_to_path { - my $self = shift; - push @{ $self->path }, @_; -} + my $hist; + if (! $self->{'no_history'}) { + push @{ $self->history }, ($hist = {step => $step, meth => $hook, found => $found, time => time, level => $self->{'_level'}}); + $hist->{'elapsed'} = time - $hist->{'time'}; + } + local $self->{'_level'} = 1 + ($self->{'_level'} || 0); -sub append_path { - my $self = shift; - push @{ $self->path }, @_; -} + my $resp = $self->$code($step, @args); -sub replace_path { - my $self = shift; - my $ref = $self->path; - my $i = $self->{'path_i'} || 0; - if ($i + 1 > $#$ref) { - push @$ref, @_; - } else { - splice(@$ref, $i + 1, $#$ref - $i, @_); # replace remaining entries + if (! $self->{'no_history'}) { + $hist->{'elapsed'} = time - $hist->{'time'}; + $hist->{'response'} = $resp; } -} -sub insert_path { - my $self = shift; - my $ref = $self->path; - my $i = $self->{'path_i'} || 0; - if ($i + 1 > $#$ref) { - push @$ref, @_; - } else { - splice(@$ref, $i + 1, 0, @_); # insert a path at the current location - } + return $resp; } -### a hash of paths that are allowed, default undef is all are allowed -sub valid_steps {} - -###----------------------------------------------------------------### -### allow for checking where we are in the path and for jumping around +sub run_hook_as { + my ($self, $hook, $step, $pkg, @args) = @_; + croak "Missing hook" if ! $hook; + croak "Missing step" if ! $step; + croak "Missing package" if ! $pkg; + $self->morph($step, 2, $pkg); + my $resp = $self->run_hook($hook, $step, @args); + $self->unmorph; + return $resp; +} -sub exit_nav_loop { +sub run_step { my $self = shift; + my $step = shift; - ### undo morphs - if (my $ref = $self->{'__morph_lineage'}) { - ### use the saved index - this allows for early "morphers" to only get rolled back so far - my $index = $self->{'__morph_lineage_start_index'}; - $index = -1 if ! defined $index; - $self->unmorph while $#$ref != $index; - } + return 1 if $self->run_hook('pre_step', $step); # if true exit the nav_loop + return 0 if $self->run_hook('skip', $step); # if true skip this step - ### long jump back - die "Long Jump\n"; -} + # check for complete valid information for this step + if ( ! $self->run_hook('prepare', $step) + || ! $self->run_hook('info_complete', $step) + || ! $self->run_hook('finalize', $step)) { -sub jump { - my $self = shift; - my $i = @_ == 1 ? shift : 1; - my $path = $self->path; - my $path_i = $self->{'path_i'}; - croak "Can't jump if nav_loop not started" if ! defined $path_i; - - ### validate where we are jumping to - if ($i =~ /^\w+$/) { - if ($i eq 'FIRST') { - $i = - $path_i - 1; - } elsif ($i eq 'LAST') { - $i = $#$path - $path_i; - } elsif ($i eq 'NEXT') { - $i = 1; - } elsif ($i eq 'CURRENT') { - $i = 0; - } elsif ($i eq 'PREVIOUS') { - $i = -1; - } else { # look for a step by that name - for (my $j = $#$path; $j >= 0; $j --) { - if ($path->[$j] eq $i) { - $i = $j - $path_i; - last; - } - } - } - } - if ($i !~ /^-?\d+$/) { - require Carp; - Carp::croak("Invalid jump index ($i)"); - } + $self->run_hook('prepared_print', $step); # show the page requesting the information + $self->run_hook('post_print', $step); # a hook after the printing process - ### manipulate the path to contain the new jump location - my @replace; - my $cut_i = $path_i + $i; - if ($cut_i > $#$path) { - push @replace, $self->default_step; - } elsif ($cut_i < 0) { - push @replace, @$path; - } else { - push @replace, @$path[$cut_i .. $#$path]; + return 1; } - $self->replace_path(@replace); - - ### record the number of jumps - $self->{'jumps'} ||= 0; - $self->{'jumps'} ++; - ### run the newly fixed up path (recursively) - $self->{'path_i'} ++; # move along now that the path is updated - $self->nav_loop; - $self->exit_nav_loop; + return 1 if $self->run_hook('post_step', $step); # if true exit the nav_loop + return 0; # let the nav_loop continue searching the path } -sub step_by_path_index { +sub prepared_print { my $self = shift; - my $i = shift || 0; - my $ref = $self->path; - return '' if $i < 0; - return $self->default_step if $i > $#$ref; - return $ref->[$i]; + my $step = shift; + my $hash_form = $self->run_hook('hash_form', $step) || {}; + my $hash_base = $self->run_hook('hash_base', $step) || {}; + my $hash_comm = $self->run_hook('hash_common', $step) || {}; + my $hash_swap = $self->run_hook('hash_swap', $step) || {}; + my $hash_fill = $self->run_hook('hash_fill', $step) || {}; + my $hash_errs = $self->run_hook('hash_errors', $step) || {}; + $hash_errs->{$_} = $self->format_error($hash_errs->{$_}) foreach keys %$hash_errs; + $hash_errs->{'has_errors'} = 1 if scalar keys %$hash_errs; + + my $swap = {%$hash_form, %$hash_base, %$hash_comm, %$hash_swap, %$hash_errs}; + my $fill = {%$hash_form, %$hash_base, %$hash_comm, %$hash_fill}; + $self->run_hook('print', $step, $swap, $fill); } -sub previous_step { - my $self = shift; - return $self->step_by_path_index( ($self->{'path_i'} || 0) - 1 ); +sub print { + my ($self, $step, $swap, $fill) = @_; + my $file = $self->run_hook('file_print', $step); # get a filename relative to template_path + my $out = $self->run_hook('swap_template', $step, $file, $swap); + $self->run_hook('fill_template', $step, \$out, $fill); + $self->run_hook('print_out', $step, \$out); } -sub current_step { - my $self = shift; - return $self->step_by_path_index( ($self->{'path_i'} || 0) ); +sub handle_error { + my ($self, $err) = @_; + die $err if $self->{'_handling_error'}; + local @{ $self }{'_handling_error', '_recurse' } = (1, 0); # allow for this next step - even if we hit a recurse error + $self->stash->{'error_step'} = $self->current_step; + $self->stash->{'error'} = $err; + eval { + my $step = $self->error_step; + $self->morph($step); # let steps be in external modules + $self->run_hook('run_step', $step) && $self->unmorph($step); + }; + die $@ if $@ && $@ ne "Long Jump\n"; +} + +###---------------------### +# read only accessors + +sub allow_morph { $_[0]->{'allow_morph'} } +sub auth_args { $_[0]->{'auth_args'} } +sub charset { $_[0]->{'charset'} || '' } +sub conf_args { $_[0]->{'conf_args'} } +sub conf_die_on_fail { $_[0]->{'conf_die_on_fail'} || ! defined $_[0]->{'conf_die_on_fail'} } +sub conf_path { $_[0]->{'conf_path'} || $_[0]->base_dir_abs } +sub conf_validation { $_[0]->{'conf_validation'} } +sub default_step { $_[0]->{'default_step'} || 'main' } +sub error_step { $_[0]->{'error_step'} || '__error' } +sub fill_args { $_[0]->{'fill_args'} } +sub forbidden_step { $_[0]->{'forbidden_step'} || '__forbidden' } +sub form_name { $_[0]->{'form_name'} || 'theform' } +sub history { $_[0]->{'history'} ||= [] } +sub js_step { $_[0]->{'js_step'} || 'js' } +sub login_step { $_[0]->{'login_step'} || '__login' } +sub mimetype { $_[0]->{'mimetype'} || 'text/html' } +sub path_info { defined $_[0]->{'path_info'} ? $_[0]->{'path_info'} : $_[0]->cgix->env->{'PATH_INFO'} || '' } +sub path_info_map_base { $_[0]->{'path_info_map_base'} ||[[qr{/(\w+)}, $_[0]->step_key]] } +sub recurse_limit { $_[0]->{'recurse_limit'} || 15 } +sub script_name { defined $_[0]->{'script_name'} ? $_[0]->{'script_name'} : $_[0]->cgix->env->{'SCRIPT_NAME'} || $0 } +sub stash { $_[0]->{'stash'} ||= {} } +sub step_key { $_[0]->{'step_key'} || 'step' } +sub template_args { $_[0]->{'template_args'} } +sub template_path { $_[0]->{'template_path'} || $_[0]->base_dir_abs } +sub val_args { $_[0]->{'val_args'} } +sub val_path { $_[0]->{'val_path'} || $_[0]->template_path } + +sub conf_obj { + my $self = shift; + return $self->{'conf_obj'} || do { + my $args = $self->conf_args || {}; + $args->{'paths'} ||= $self->conf_path; + $args->{'directive'} ||= 'MERGE'; + require CGI::Ex::Conf; + CGI::Ex::Conf->new($args); + }; } -sub next_step { # method and hook - my $self = shift; - return $self->step_by_path_index( ($self->{'path_i'} || 0) + 1 ); +sub template_obj { + my ($self, $args) = @_; + return $self->{'template_obj'} || do { + require Template::Alloy; + Template::Alloy->new($args); + }; } -sub last_step { - my $self = shift; - return $self->step_by_path_index( $#{ $self->path } ); +sub auth_obj { + my ($self, $args) = @_; + return $self->{'auth_obj'} || do { + require CGI::Ex::Auth; + CGI::Ex::Auth->new($args); + }; } -sub first_step { +sub val_obj { my $self = shift; - return $self->step_by_path_index( 0 ); + return $self->{'val_obj'} || do { + my $args = $self->val_args || {}; + $args->{'cgix'} ||= $self->cgix; + require CGI::Ex::Validate; + CGI::Ex::Validate->new($args); + }; } -###----------------------------------------------------------------### -### hooks and history - -sub find_hook { - my $self = shift; - my $hook = shift || do { require Carp; Carp::confess("Missing hook name") }; - my $step = shift || ''; - my $code; - if ($step && ($code = $self->can("${step}_${hook}"))) { - return [$code, "${step}_${hook}"], - - } elsif ($code = $self->can($hook)) { - return [$code, $hook]; +###---------------------### +# read/write accessors - } else { - return []; +sub auth_data { (@_ == 2) ? $_[0]->{'auth_data'} = pop : $_[0]->{'auth_data'} } +sub base_dir_abs { (@_ == 2) ? $_[0]->{'base_dir_abs'} = pop : $_[0]->{'base_dir_abs'} || ['.'] } +sub base_dir_rel { (@_ == 2) ? $_[0]->{'base_dir_rel'} = pop : $_[0]->{'base_dir_rel'} || '' } +sub cgix { (@_ == 2) ? $_[0]->{'cgix'} = pop : $_[0]->{'cgix'} ||= do { require CGI::Ex; CGI::Ex->new } } +sub cookies { (@_ == 2) ? $_[0]->{'cookies'} = pop : $_[0]->{'cookies'} ||= $_[0]->cgix->get_cookies } +sub ext_conf { (@_ == 2) ? $_[0]->{'ext_conf'} = pop : $_[0]->{'ext_conf'} || 'pl' } +sub ext_print { (@_ == 2) ? $_[0]->{'ext_print'} = pop : $_[0]->{'ext_print'} || 'html' } +sub ext_val { (@_ == 2) ? $_[0]->{'ext_val'} = pop : $_[0]->{'ext_val'} || 'val' } +sub form { (@_ == 2) ? $_[0]->{'form'} = pop : $_[0]->{'form'} ||= $_[0]->cgix->get_form } +sub load_conf { (@_ == 2) ? $_[0]->{'load_conf'} = pop : $_[0]->{'load_conf'} } +sub conf { + my $self = shift; + $self->{'conf'} = pop if @_ == 1; + return $self->{'conf'} ||= do { + my $conf = $self->conf_file; + if (! ref $conf) { + $conf = $self->conf_obj->read($conf, {no_warn_on_fail => 1}) || ($self->conf_die_on_fail ? croak $@ : {}); + } + my $hash = $self->conf_validation; + if ($hash && scalar keys %$hash) { + my $err_obj = $self->val_obj->validate($conf, $hash); + croak "$err_obj" if $err_obj; + } + $conf; } } -sub run_hook { - my $self = shift; - my $hook = shift; - my $step = shift; - - my ($code, $found) = @{ $self->find_hook($hook, $step) }; - if (! $code) { - croak "Could not find a method named ${step}_${hook} or ${hook}"; - } elsif (! UNIVERSAL::isa($code, 'CODE')) { - croak "Value for $hook ($found) is not a code ref ($code)"; - } - - ### record history - my $hist = { - step => $step, - meth => $hook, - found => $found, - time => time, +sub conf_file { + my $self = shift; + $self->{'conf_file'} = pop if @_ == 1; + return $self->{'conf_file'} ||= do { + my $module = $self->name_module || croak 'Missing name_module during conf_file call'; + $module .'.'. $self->ext_conf; }; +} - push @{ $self->history }, $hist; - - $hist->{'level'} = $self->{'_level'}; - local $self->{'_level'} = 1 + ($self->{'_level'} || 0); - - $hist->{'elapsed'} = time - $hist->{'time'}; - - my $resp = $self->$code($step, @_); +###---------------------### +# general methods + +sub add_to_base { my $self = shift; $self->add_to_hash($self->hash_base, @_) } +sub add_to_common { my $self = shift; $self->add_to_hash($self->hash_common, @_) } +sub add_to_errors { shift->add_errors(@_) } +sub add_to_fill { my $self = shift; $self->add_to_hash($self->hash_fill, @_) } +sub add_to_form { my $self = shift; $self->add_to_hash($self->hash_form, @_) } +sub add_to_path { shift->append_path(@_) } # legacy +sub add_to_swap { my $self = shift; $self->add_to_hash($self->hash_swap, @_) } +sub append_path { my $self = shift; push @{ $self->path }, @_ } +sub cleanup_user { my ($self, $user) = @_; $user } +sub current_step { $_[0]->step_by_path_index($_[0]->{'path_i'} || 0) } +sub destroy {} +sub first_step { $_[0]->step_by_path_index(0) } +sub fixup_after_morph {} +sub fixup_before_unmorph {} +sub format_error { my ($self, $error) = @_; $error } +sub get_pass_by_user { croak "get_pass_by_user is a virtual method and needs to be overridden for authentication to work" } +sub has_errors { scalar keys %{ $_[0]->hash_errors } } +sub last_step { $_[0]->step_by_path_index($#{ $_[0]->path }) } +sub path_info_map {} +sub post_loop { 0 } # true value means to abort the nav_loop - don't recurse +sub post_navigate {} +sub pre_loop { 0 } # true value means to abort the nav_loop routine +sub pre_navigate { 0 } # true means to not enter nav_loop +sub previous_step { $_[0]->step_by_path_index(($_[0]->{'path_i'} || 0) - 1) } +sub valid_steps {} +sub verify_user { 1 } - $hist->{'elapsed'} = time - $hist->{'time'}; - $hist->{'response'} = $resp; +sub add_errors { + my $self = shift; + my $hash = $self->hash_errors; + my $args = ref($_[0]) ? shift : {@_}; + foreach my $key (keys %$args) { + my $_key = ($key =~ /error$/) ? $key : "${key}_error"; + if ($hash->{$_key}) { + $hash->{$_key} .= '
' . $args->{$key}; + } else { + $hash->{$_key} = $args->{$key}; + } + } + $hash->{'has_errors'} = 1; +} - return $resp; +sub add_to_hash { + my $self = shift; + my $old = shift; + my $new = shift; + $new = {$new, @_} if ! ref $new; # non-hashref + $old->{$_} = $new->{$_} foreach keys %$new; } -sub history { - return shift->{'history'} ||= []; +sub clear_app { + my $self = shift; + delete @{ $self }{qw(cgix cookies form hash_common hash_errors hash_fill hash_swap history + _morph_lineage _morph_lineage_start_index path path_i stash val_obj)}; + return $self; } sub dump_history { - my $self = shift; - my $all = shift || 0; + my ($self, $all) = @_; + my $hist = $self->history; - my $dump = []; - push @$dump, sprintf("Elapsed: %.5f", time - $self->{'_time'}); + my $dump = [sprintf "Elapsed: %.5f", time - $self->{'_time'}]; - ### show terse - yet informative info foreach my $row (@$hist) { - if (! ref($row) - || ref($row) ne 'HASH' - || ! exists $row->{'elapsed'}) { + if (! ref($row) || ref($row) ne 'HASH' || ! exists $row->{'elapsed'}) { push @$dump, $row; + next; + } + my $note = (' ' x ($row->{'level'} || 0)) + . join(' - ', $row->{'step'}, $row->{'meth'}, $row->{'found'}, sprintf('%.5f', $row->{'elapsed'})); + my $resp = $row->{'response'}; + if ($all) { + $note = [$note, $resp]; } else { - my $note = (' ' x ($row->{'level'} || 0)) - . join(' - ', $row->{'step'}, $row->{'meth'}, $row->{'found'}, sprintf('%.5f', $row->{'elapsed'})); - my $resp = $row->{'response'}; - if (ref($resp) eq 'HASH' && ! scalar keys %$resp) { - $note .= ' - {}'; - } elsif (ref($resp) eq 'ARRAY' && ! @$resp) { - $note .= ' - []'; - } elsif (! ref $resp || ! $all) { - my $max = $self->{'history_max'} || 30; - if (length($resp) > $max) { - $resp = substr($resp, 0, $max); - $resp =~ s/\n.+//s; - $resp = "$resp ..."; - } - $note .= " - $resp"; - } else { - $note = [$note, $resp]; - } - - push @$dump, $note; + $note .= ' - ' + .(! defined $resp ? 'undef' + : ref($resp) eq 'ARRAY' && ! @$resp ? '[]' + : ref($resp) eq 'HASH' && ! scalar keys %$resp ? '{}' + : do { + $resp = $1 if $resp =~ /^(.+)\n/; + length($resp) > 30 ? substr($resp, 0, 30)." ..." : $resp; + }); + $note .= ' - '.$row->{'info'} if defined $row->{'info'}; } + push @$dump, $note; } return $dump; } -###----------------------------------------------------------------### -### utility methods to allow for storing separate steps in other modules +sub exit_nav_loop { + my $self = shift; + if (my $ref = $self->{'_morph_lineage'}) { # undo morphs + my $index = $self->{'_morph_lineage_start_index'}; # allow for early "morphers" to only get rolled back so far + $index = -1 if ! defined $index; + $self->unmorph while $#$ref != $index; + } + die "Long Jump\n"; +} + +sub find_hook { + my ($self, $hook, $step) = @_; + croak "Missing hook name" if ! $hook; + if ($step && (my $code = $self->can("${step}_${hook}"))) { + return [$code, "${step}_${hook}"], + } elsif ($code = $self->can($hook)) { + return [$code, $hook]; + } + return []; +} + +sub insert_path { + my $self = shift; + my $ref = $self->path; + my $i = $self->{'path_i'} || 0; + if ($i + 1 > $#$ref) { push @$ref, @_ } + else { splice(@$ref, $i + 1, 0, @_) } # insert a path at the current location +} + +sub jump { shift->goto_step(@_) } + +sub goto_step { + my $self = shift; + my $i = @_ == 1 ? shift : 1; + my $path = $self->path; + my $path_i = $self->{'path_i'} || 0; + + if ( $i eq 'FIRST' ) { $i = - $path_i - 1 } + elsif ($i eq 'LAST' ) { $i = $#$path - $path_i } + elsif ($i eq 'NEXT' ) { $i = 1 } + elsif ($i eq 'CURRENT' ) { $i = 0 } + elsif ($i eq 'PREVIOUS') { $i = -1 } + elsif ($i !~ /^-?\d+/) { # look for a step by that name in the current remaining path + my $found; + for (my $j = $path_i; $j < @$path; $j++) { + if ($path->[$j] eq $i) { + $i = $j - $path_i; + $found = 1; + last; + } + } + if (! $found) { + $self->replace_path($i); + $i = $#$path; + } + } + croak "Invalid jump index ($i)" if $i !~ /^-?\d+$/; + + my $cut_i = $path_i + $i; # manipulate the path to contain the new jump location + my @replace = ($cut_i > $#$path) ? $self->default_step + : ($cut_i < 0) ? @$path + : @$path[$cut_i .. $#$path]; + $self->replace_path(@replace); + + $self->{'jumps'} = ($self->{'jumps'} || 0) + 1; + $self->{'path_i'}++; # move along now that the path is updated -sub allow_morph { - my $self = shift; - return $self->{'allow_morph'} ? 1 : 0; + my $lin = $self->{'_morph_lineage'} || []; + $self->unmorph if @$lin; + $self->nav_loop; # recurse on the path + $self->exit_nav_loop; } -sub allow_nested_morph { - my $self = shift; - return $self->{'allow_nested_morph'} ? 1 : 0; +sub js_uri_path { + my $self = shift; + my $script = $self->script_name; + my $js_step = $self->js_step; + return ($self->can('path') == \&CGI::Ex::App::path + && $self->can('path_info_map_base') == \&CGI::Ex::App::path_info_map_base) + ? $script .'/'. $js_step # try to use a cache friendly URI (if path is our own) + : $script .'?'. $self->step_key .'='. $js_step .'&js='; # use one that works with more paths } + sub morph { my $self = shift; + my $ref = $self->history->[-1]; + if (! $ref || ! $ref->{'meth'} || $ref->{'meth'} ne 'morph') { + push @{ $self->history }, ($ref = {meth => 'morph', found => 'morph', elapsed => 0, step => 'unknown', level => $self->{'_level'}}); + } my $step = shift || return; - my $allow = $self->allow_morph($step) || return; - - ### place to store the lineage - my $lin = $self->{'__morph_lineage'} ||= []; - my $cur = ref $self; # what are we currently - push @$lin, $cur; # store so subsequent unmorph calls can do the right thing - - my $hist = { - step => $step, - meth => 'morph', - found => 'morph', - time => time, - elapsed => 0, - response => 0 - }; - push @{ $self->history }, $hist; + my $allow = shift || $self->run_hook('allow_morph', $step) || return; + my $new = shift; # optionally allow passing in the package to morph to + my $lin = $self->{'_morph_lineage'} ||= []; + my $ok = 0; + my $cur = ref $self; - if (ref($allow) && ! $allow->{$step}) { # hash - but no step - record for unbless - $hist->{'found'} .= " (not allowed to morph to that step)"; - return 0; - } + push @$lin, $cur; # store so subsequent unmorph calls can do the right thing - ### make sure we haven't already been reblessed - if ($#$lin != 0 # is this the second morph call - && (! ($allow = $self->allow_nested_morph($step)) # not true - || (ref($allow) && ! $allow->{$step}) # hash - but no step - )) { - $hist->{'found'} .= $allow ? " (not allowed to nested_morph to that step)" : " (nested_morph disabled)"; - return 0; # just return - don't die so that we can morph early - } + # hash - but no step - record for unbless + if (ref($allow) && ! ($allow = $allow->{$step})) { + $ref->{'info'} = "not allowed to morph to that step"; + + } elsif (! ($new ||= $self->run_hook('morph_package', $step))) { + $ref->{'info'} = "Missing morph_package for step $step"; + + } elsif ($cur eq $new) { + $ref->{'info'} = "already isa $new"; + $ok = 1; ### if we are not already that package - bless us there - my $new = $self->run_hook('morph_package', $step); - if ($cur ne $new) { - my $file = $new .'.pm'; - $file =~ s|::|/|g; - if (UNIVERSAL::can($new, 'can') # check if the package space exists - || eval { require $file }) { # check for a file that holds this package - ### become that package - bless $self, $new; - $hist->{'found'} .= " (changed $cur to $new)"; + } else { + (my $file = "$new.pm") =~ s|::|/|g; + if (UNIVERSAL::can($new, 'fixup_after_morph') # check if the package space exists + || (eval { require $file } # check for a file that holds this package + && UNIVERSAL::can($new, 'fixup_after_morph'))) { + bless $self, $new; # become that package $self->fixup_after_morph($step); - } else { - if ($@) { - if ($@ =~ /^\s*(Can\'t locate \S+ in \@INC)/) { # let us know what happened - $hist->{'found'} .= " (failed from $cur to $new: $1)"; - } else { - $hist->{'found'} .= " (failed from $cur to $new: $@)"; - my $err = "Trouble while morphing to $file: $@"; - warn $err; - } + $ref->{'info'} = "changed $cur to $new"; + } elsif ($@) { + if ($allow eq '1' && $@ =~ /^\s*(Can\'t locate \S+ in \@INC)/) { # let us know what happened + $ref->{'info'} = "failed from $cur to $new: $1"; + } else { + $ref->{'info'} = "failed from $cur to $new: $@"; + die "Trouble while morphing from $cur to $new: $@"; } + } elsif ($allow ne '1') { + $ref->{'info'} = "package $new doesn't support CGI::Ex::App API"; + die "Found package $new, but $new doesn't support CGI::Ex::App API"; } + $ok = 1; } - $hist->{'response'} = 1; - return 1; + return $ok; } -sub unmorph { +sub replace_path { my $self = shift; - my $step = shift || '__no_step'; - my $lin = $self->{'__morph_lineage'} || return; - my $cur = ref $self; - - my $prev = pop(@$lin) || croak "unmorph called more times than morph - current ($cur)"; - delete $self->{'__morph_lineage'} if ! @$lin; + my $ref = $self->path; + my $i = $self->{'path_i'} || 0; + if ($i + 1 > $#$ref) { push @$ref, @_; } + else { splice(@$ref, $i + 1, $#$ref - $i, @_); } # replace remaining entries +} - ### if we are not already that package - bless us there - my $hist = { - step => $step, - meth => 'unmorph', - found => 'unmorph', - time => time, - elapsed => 0, - response => 0, - }; - push @{ $self->history }, $hist; +sub set_path { + my $self = shift; + my $path = $self->{'path'} ||= []; + croak "Cannot call set_path after the navigation loop has begun" if $self->{'path_i'}; + splice @$path, 0, $#$path + 1, @_; # change entries in the ref (which updates other copies of the ref) +} + +sub step_by_path_index { + my $self = shift; + my $i = shift || 0; + my $ref = $self->path; + return '' if $i < 0; + return $ref->[$i]; +} + +sub unmorph { + my $self = shift; + my $step = shift || '_no_step'; + my $ref = $self->history->[-1] || {}; + if (! $ref || ! $ref->{'meth'} || $ref->{'meth'} ne 'unmorph') { + push @{ $self->history }, ($ref = {meth => 'unmorph', found => 'unmorph', elapsed => 0, step => $step, level => $self->{'_level'}}); + } + my $lin = $self->{'_morph_lineage'} || return; + my $cur = ref $self; + my $prev = pop(@$lin) || croak "unmorph called more times than morph (current: $cur)"; + delete $self->{'_morph_lineage'} if ! @$lin; if ($cur ne $prev) { $self->fixup_before_unmorph($step); bless $self, $prev; - $hist->{'found'} .= " (changed from $cur to $prev)"; + $ref->{'info'} = "changed from $cur to $prev"; } else { - $hist->{'found'} .= " (already isa $cur)"; + $ref->{'info'} = "already isa $cur"; } - $hist->{'response'} = 1; - return $self; + return 1; } -sub fixup_after_morph {} +###---------------------### +# hooks -sub fixup_before_unmorph {} +sub file_print { + my ($self, $step) = @_; + my $base_dir = $self->base_dir_rel; + my $module = $self->run_hook('name_module', $step); + my $_step = $self->run_hook('name_step', $step) || croak "Missing name_step"; + $_step =~ s|\B__+|/|g; + $_step .= '.'. $self->ext_print if $_step !~ /\.\w+$/; + foreach ($base_dir, $module) { $_ .= '/' if length($_) && ! m|/$| } -###----------------------------------------------------------------### -### allow for authentication + return $base_dir . $module . $_step; +} -sub navigate_authenticated { - my ($self, $args) = @_; - $self = $self->new($args) if ! ref $self; +sub file_val { + my ($self, $step) = @_; - $self->require_auth(1); + my $abs = $self->val_path || []; + $abs = $abs->() if UNIVERSAL::isa($abs, 'CODE'); + $abs = [$abs] if ! UNIVERSAL::isa($abs, 'ARRAY'); + return {} if @$abs == 0; - return $self->navigate; -} + my $base_dir = $self->base_dir_rel; + my $module = $self->run_hook('name_module', $step); + my $_step = $self->run_hook('name_step', $step) || croak "Missing name_step"; + $_step =~ s|\B__+|/|g; + $_step =~ s/\.\w+$//; + $_step .= '.'. $self->ext_val; -sub require_auth { - my $self = shift; - $self->{'require_auth'} = shift if @_ == 1; - return $self->{'require_auth'}; -} + foreach (@$abs, $base_dir, $module) { $_ .= '/' if length($_) && ! m|/$| } -sub is_authed { shift->auth_data } + if (@$abs > 1) { + foreach my $_abs (@$abs) { + my $path = $_abs . $base_dir . $module . $_step; + return $path if -e $path; + } + } -sub auth_data { - my $self = shift; - $self->{'auth_data'} = shift if @_ == 1; - return $self->{'auth_data'}; + return $abs->[0] . $base_dir . $module . $_step; } -sub get_valid_auth { - my $self = shift; - return 1 if $self->is_authed; - - ### augment the args with sensible defaults - my $args = $self->auth_args; - $args->{'cgix'} ||= $self->cgix; - $args->{'form'} ||= $self->form; - $args->{'cookies'} ||= $self->cookies; - $args->{'js_uri_path'} ||= $self->js_uri_path; - $args->{'get_pass_by_user'} ||= sub { my ($auth, $user) = @_; $self->get_pass_by_user($user, $auth) }; - $args->{'verify_user'} ||= sub { my ($auth, $user) = @_; $self->verify_user( $user, $auth) }; - $args->{'cleanup_user'} ||= sub { my ($auth, $user) = @_; $self->cleanup_user( $user, $auth) }; - $args->{'login_print'} ||= sub { - my ($auth, $template, $hash) = @_; - my $out = $self->run_hook('swap_template', '__login', $template, $hash); - $self->run_hook('fill_template', '__login', \$out, $hash); - $self->run_hook('print_out', '__login', $out); - }; +sub fill_template { + my ($self, $step, $outref, $fill) = @_; + return if ! $fill || ! scalar keys %$fill; + my $args = $self->run_hook('fill_args', $step) || {}; + local @{ $args }{'text', 'form'} = ($outref, $fill); + require CGI::Ex::Fill; + CGI::Ex::Fill::fill($args); +} - require CGI::Ex::Auth; - my $obj = CGI::Ex::Auth->new($args); - my $resp = $obj->get_valid_auth; +sub finalize { 1 } # false means show step - my $data = $obj->last_auth_data; - delete $data->{'real_pass'} if defined $data; # data may be defined but false - $self->auth_data($data); # failed authentication may still have auth_data +sub hash_base { + my ($self, $step) = @_; - return ($resp && $data) ? 1 : 0; -} + my $hash = $self->{'hash_base'} ||= { + script_name => $self->script_name, + path_info => $self->path_info, + }; -sub auth_args { {} } + my $copy = $self; eval { require Scalar::Util; Scalar::Util::weaken($copy) }; + $hash->{'js_validation'} = sub { $copy->run_hook('js_validation', $step, shift) }; + $hash->{'generate_form'} = sub { $copy->run_hook('generate_form', $step, (ref($_[0]) ? (undef, shift) : shift)) }; + $hash->{'form_name'} = $self->run_hook('form_name', $step); + $hash->{$self->step_key} = $step; -sub get_pass_by_user { die "get_pass_by_user is a virtual method and needs to be overridden for authentication to work" } -sub cleanup_user { my ($self, $user) = @_; $user } -sub verify_user { 1 } + return $hash; +} -###----------------------------------------------------------------### -### a few standard base accessors +sub hash_common { $_[0]->{'hash_common'} ||= {} } +sub hash_errors { $_[0]->{'hash_errors'} ||= {} } +sub hash_fill { $_[0]->{'hash_fill'} ||= {} } +sub hash_form { $_[0]->form } +sub hash_swap { $_[0]->{'hash_swap'} ||= {} } -sub form { - my $self = shift; - $self->{'form'} = shift if @_ == 1; - return $self->{'form'} ||= $self->cgix->get_form; +sub hash_validation { + my ($self, $step) = @_; + return $self->{'hash_validation'}->{$step} ||= do { + my $file = $self->run_hook('file_val', $step); + $file ? $self->val_obj->get_validation($file) : {}; # if the file is not found, errors will be in the webserver logs (all else dies) + }; } -sub cookies { - my $self = shift; - $self->{'cookies'} = shift if @_ == 1; - return $self->{'cookies'} ||= $self->cgix->get_cookies; +sub info_complete { + my ($self, $step) = @_; + return 0 if ! $self->run_hook('ready_validate', $step); + return 0 if ! $self->run_hook('validate', $step, $self->form); + return 1; } -sub cgix { - my $self = shift; - $self->{'cgix'} = shift if @_ == 1; - return $self->{'cgix'} ||= do { - require CGI::Ex; - CGI::Ex->new; # return of the do - }; +sub js_validation { + my ($self, $step) = @_; + my $form_name = $_[2] || $self->run_hook('form_name', $step); + my $hash_val = $_[3] || $self->run_hook('hash_validation', $step); + my $js_uri = $self->js_uri_path; + return '' if ! $form_name || ! ref($hash_val) || ! scalar keys %$hash_val; + return $self->val_obj->generate_js($hash_val, $form_name, $js_uri); } -sub vob { - my $self = shift; - $self->{'vob'} = shift if @_ == 1; - return $self->{'vob'} ||= do { - require CGI::Ex::Validate; - CGI::Ex::Validate->new($self->vob_args); # return of the do - }; +sub generate_form { + my ($self, $step) = @_; + my $form_name = $_[2] || $self->run_hook('form_name', $step); + my $args = ref($_[3]) eq 'HASH' ? $_[3] : {}; + my $hash_val = $self->run_hook('hash_validation', $step); + return '' if ! $form_name || ! ref($hash_val) || ! scalar keys %$hash_val; + local $args->{'js_uri_path'} = $self->js_uri_path; + return $self->val_obj->generate_form($hash_val, $form_name, $args); } -sub vob_args { - my $self = shift; - return { - cgix => $self->cgix, - }; +sub morph_base { my $self = shift; ref($self) } +sub morph_package { + my ($self, $step) = @_; + my $cur = $self->morph_base; # default to using self as the base for morphed modules + my $new = ($cur ? $cur .'::' : '') . ($step || croak "Missing step"); + $new =~ s/\B__+/::/g; # turn Foo::my_nested__step info Foo::my_nested::step + $new =~ s/(?:_+|\b)(\w)/\u$1/g; # turn Foo::my_step_name into Foo::MyStepName + return $new; } -### provide a place for placing variables -sub stash { - my $self = shift; - return $self->{'stash'} ||= {}; +sub name_module { + my ($self, $step) = @_; + return $self->{'name_module'} ||= ($self->script_name =~ m/ (\w+) (?:\.\w+)? $/x) + ? $1 # allow for cgi-bin/foo or cgi-bin/foo.pl to resolve to "foo" + : die "Couldn't determine module name from \"name_module\" lookup (".($step||'').")"; } -sub clear_app { - my $self = shift; - - delete @{ $self }{qw( - cgix - vob - form - cookies - stash - path - path_i - history - __morph_lineage_start_index - __morph_lineage - hash_errors - hash_fill - hash_swap - hash_common - )}; +sub name_step { my ($self, $step) = @_; $step } +sub next_step { $_[0]->step_by_path_index(($_[0]->{'path_i'} || 0) + 1) } +sub post_print { 0 } +sub post_step { 0 } # true indicates we handled step (exit loop) +sub pre_step { 0 } # true indicates we handled step (exit loop) +sub prepare { 1 } # false means show step - return $self; +sub print_out { + my ($self, $step, $out) = @_; + $self->cgix->print_content_type($self->mimetype($step), $self->charset($step)); + $self->cgix->print_body(ref($out) eq 'SCALAR' ? $$out : $out); } -###----------------------------------------------------------------### -### default hook implementations - -sub path_info_map { } - -sub run_step { - my $self = shift; - my $step = shift; - - ### if the pre_step exists and returns true, exit the nav_loop - return 1 if $self->run_hook('pre_step', $step); - - ### allow for skipping this step (but stay in the nav_loop) - return 0 if $self->run_hook('skip', $step); - - ### see if we have complete valid information for this step - ### if so, do the next step - ### if not, get necessary info and print it out - if ( ! $self->run_hook('prepare', $step) - || ! $self->run_hook('info_complete', $step) - || ! $self->run_hook('finalize', $step)) { - - ### show the page requesting the information - $self->run_hook('prepared_print', $step); - - ### a hook after the printing process - $self->run_hook('post_print', $step); - - return 1; +sub ready_validate { + my ($self, $step) = @_; + if ($self->run_hook('validate_when_data', $step)) { + if (my @keys = keys %{ $self->run_hook('hash_validation', $step) || {} }) { + my $form = $self->form; + return (grep { exists $form->{$_} } @keys) ? 1 : 0; + } } - - ### a hook before end of loop - ### if the post_step exists and returns true, exit the nav_loop - return 1 if $self->run_hook('post_step', $step); - - ### let the nav_loop continue searching the path - return 0; + return ($self->cgix->env->{'REQUEST_METHOD'} && $self->cgix->env->{'REQUEST_METHOD'} eq 'POST') ? 1 : 0; } sub refine_path { @@ -775,193 +805,35 @@ sub refine_path { return 1; } -sub prepared_print { +sub set_ready_validate { # hook and method my $self = shift; - my $step = shift; - - my $hash_base = $self->run_hook('hash_base', $step) || {}; - my $hash_comm = $self->run_hook('hash_common', $step) || {}; - my $hash_form = $self->run_hook('hash_form', $step) || {}; - my $hash_fill = $self->run_hook('hash_fill', $step) || {}; - my $hash_swap = $self->run_hook('hash_swap', $step) || {}; - my $hash_errs = $self->run_hook('hash_errors', $step) || {}; - - ### fix up errors - $hash_errs->{$_} = $self->format_error($hash_errs->{$_}) - foreach keys %$hash_errs; - $hash_errs->{'has_errors'} = 1 if scalar keys %$hash_errs; - - ### layer hashes together - my $fill = {%$hash_form, %$hash_base, %$hash_comm, %$hash_fill}; - my $swap = {%$hash_form, %$hash_base, %$hash_comm, %$hash_swap, %$hash_errs}; - - ### run the print hook - passing it the form and fill info - $self->run_hook('print', $step, $swap, $fill); -} - -sub print { - my ($self, $step, $swap, $fill) = @_; - - my $file = $self->run_hook('file_print', $step); # get a filename relative to base_dir_abs - - my $out = $self->run_hook('swap_template', $step, $file, $swap); - - $self->run_hook('fill_template', $step, \$out, $fill); - - $self->run_hook('print_out', $step, $out); + my ($step, $is_ready) = (@_ == 2) ? @_ : (undef, shift); + $self->cgix->env->{'REQUEST_METHOD'} = ($is_ready) ? 'POST' : 'GET'; + return $is_ready; } -sub print_out { - my ($self, $step, $out) = @_; - - $self->cgix->print_content_type; - print $out; -} +sub skip { 0 } # success indicates to skip the step (and continue loop) sub swap_template { my ($self, $step, $file, $swap) = @_; - my $args = $self->run_hook('template_args', $step); - my $copy = $self; - eval {require Scalar::Util; Scalar::Util::weaken($copy)}; - $args->{'INCLUDE_PATH'} ||= sub { - my $dir = $copy->base_dir_abs || die "Could not find base_dir_abs while looking for template INCLUDE_PATH on step \"$step\""; - $dir = $dir->() if UNIVERSAL::isa($dir, 'CODE'); - return $dir; - }; + my $args = $self->run_hook('template_args', $step) || {}; + $args->{'INCLUDE_PATH'} ||= $args->{'include_path'} || $self->template_path; - my $t = $self->template_obj($args); + my $t = $self->template_obj($args); my $out = ''; - $t->process($file, $swap, \$out) || die $t->error; - return $out; } -sub template_args { {} } - -sub template_obj { - my ($self, $args) = @_; - - require CGI::Ex::Template; - my $t = CGI::Ex::Template->new($args); -} - -sub fill_template { - my ($self, $step, $outref, $fill) = @_; - - return if ! $fill; - - my $args = $self->run_hook('fill_args', $step); - local $args->{'text'} = $outref; - local $args->{'form'} = $fill; - - require CGI::Ex::Fill; - CGI::Ex::Fill::fill($args); -} - -sub fill_args { {} } - -sub pre_step { 0 } # success indicates we handled step (don't continue step or loop) -sub skip { 0 } # success indicates to skip the step (and continue loop) -sub prepare { 1 } # failure means show step -sub finalize { 1 } # failure means show step -sub post_print { 0 } -sub post_step { 0 } # success indicates we handled step (don't continue step or loop) - -sub morph_package { - my $self = shift; - my $step = shift || ''; - my $cur = ref $self; # default to using self as the base for morphed modules - my $new = $cur .'::'. $step; - $new =~ s/(\b|_+)(\w)/\u$2/g; # turn Foo::my_step_name into Foo::MyStepName - return $new; -} - -sub name_module { - my $self = shift; - my $step = shift || ''; - - return $self->{'name_module'} ||= do { - # allow for cgi-bin/foo or cgi-bin/foo.pl to resolve to "foo" - my $script = $ENV{'SCRIPT_NAME'} || $0; - $script =~ m/ (\w+) (?:\.\w+)? $/x || die "Couldn't determine module name from \"name_module\" lookup ($step)"; - $1; # return of the do - }; -} - -sub name_step { - my ($self, $step) = @_; - return $step; -} - -sub file_print { - my $self = shift; - my $step = shift; - - my $base_dir = $self->base_dir_rel; - my $module = $self->run_hook('name_module', $step); - my $_step = $self->run_hook('name_step', $step) || die "Missing name_step"; - $_step .= '.'. $self->ext_print if $_step !~ /\.\w+$/; - - foreach ($base_dir, $module) { $_ .= '/' if length($_) && ! m|/$| } - - return $base_dir . $module . $_step; -} - -sub file_val { - my $self = shift; - my $step = shift; - - ### determine the path to begin looking for files - allow for an arrayref - my $abs = $self->base_dir_abs || []; - $abs = $abs->() if UNIVERSAL::isa($abs, 'CODE'); - $abs = [$abs] if ! UNIVERSAL::isa($abs, 'ARRAY'); - return {} if @$abs == 0; - - my $base_dir = $self->base_dir_rel; - my $module = $self->run_hook('name_module', $step); - my $_step = $self->run_hook('name_step', $step) || die "Missing name_step"; - $_step .= '.'. $self->ext_val if $_step !~ /\.\w+$/; - - foreach (@$abs, $base_dir, $module) { $_ .= '/' if length($_) && ! m|/$| } - - if (@$abs > 1) { - foreach my $_abs (@$abs) { - my $path = $_abs . $base_dir . $module . $_step; - return $path if -e $path; - } - } - - return $abs->[0] . $base_dir . $module . $_step; -} - -sub info_complete { - my ($self, $step) = @_; - return 0 if ! $self->run_hook('ready_validate', $step); - return 0 if ! $self->run_hook('validate', $step, $self->form); - return 1; -} - -sub ready_validate { - my ($self, $step) = @_; - return ($ENV{'REQUEST_METHOD'} && $ENV{'REQUEST_METHOD'} eq 'POST') ? 1 : 0; -} - -sub set_ready_validate { # hook and method - my $self = shift; - my ($step, $is_ready) = (@_ == 2) ? @_ : (undef, shift); - $ENV{'REQUEST_METHOD'} = ($is_ready) ? 'POST' : 'GET'; - return $is_ready; -} - sub validate { my ($self, $step, $form) = @_; my $hash = $self->run_hook('hash_validation', $step); my $what_was_validated = []; - my $err_obj = eval { $self->vob->validate($form, $hash, $what_was_validated) }; + return 1 if ! ref($hash) || ! scalar keys %$hash; + my $err_obj = eval { $self->val_obj->validate($form, $hash, $what_was_validated) }; die "Step $step: $@" if $@ && ! $err_obj; ### had an error - store the errors and return false @@ -984,175 +856,101 @@ sub validate { return 1; } -### creates javascript suitable for validating the form -sub js_validation { - my $self = shift; - my $step = shift; - return '' if $self->ext_val =~ /^html?$/; # let htm validation do it itself - - my $form_name = shift || $self->run_hook('form_name', $step); - my $hash_val = shift || $self->run_hook('hash_validation', $step); - my $js_uri = $self->js_uri_path; - return '' if UNIVERSAL::isa($hash_val, 'HASH') && ! scalar keys %$hash_val - || UNIVERSAL::isa($hash_val, 'ARRAY') && ! @$hash_val; - - return $self->vob->generate_js($hash_val, $form_name, $js_uri); -} - -sub form_name { 'theform' } - -sub hash_validation { - my ($self, $step) = @_; - - return $self->{'hash_validation'}->{$step} ||= do { - my $hash; - my $file = $self->run_hook('file_val', $step); - - ### allow for returning the validation hash in the filename - ### a scalar ref means it is a yaml document to be read by get_validation - if (ref($file) && ! UNIVERSAL::isa($file, 'SCALAR')) { - $hash = $file; - - ### read the file - if it is not found, errors will be in the webserver logs (all else dies) - } elsif ($file) { - $hash = $self->vob->get_validation($file) || {}; +sub validate_when_data { $_[0]->{'validate_when_data'} } - } else { - $hash = {}; - } +###---------------------### +# authentication - $hash; # return of the do - }; -} - -sub hash_base { - my ($self, $step) = @_; - - return $self->{'hash_base'} ||= do { - ### create a weak copy of self to use in closures - my $copy = $self; - eval {require Scalar::Util; Scalar::Util::weaken($copy)}; - my $hash = { - script_name => $ENV{'SCRIPT_NAME'} || $0, - path_info => $ENV{'PATH_INFO'} || '', - js_validation => sub { $copy->run_hook('js_validation', $step, shift) }, - form_name => sub { $copy->run_hook('form_name', $step) }, - $self->step_key => $step, - }; # return of the do - }; +sub navigate_authenticated { + my ($self, $args) = @_; + $self = $self->new($args) if ! ref $self; + croak "Can't call navigate_authenticated method if default require_auth method is overwritten" + if $self->can('require_auth') != \&CGI::Ex::App::require_auth; + $self->require_auth(1); + return $self->navigate; } -sub hash_common { shift->{'hash_common'} ||= {} } -sub hash_form { shift->form } -sub hash_fill { shift->{'hash_fill'} ||= {} } -sub hash_swap { shift->{'hash_swap'} ||= {} } -sub hash_errors { shift->{'hash_errors'} ||= {} } - -###----------------------------------------------------------------### -### routines to support the base hooks - -sub add_errors { +sub require_auth { my $self = shift; - my $hash = $self->hash_errors; - my $args = ref($_[0]) ? shift : {@_}; - foreach my $key (keys %$args) { - my $_key = ($key =~ /error$/) ? $key : "${key}_error"; - if ($hash->{$_key}) { - $hash->{$_key} .= '
' . $args->{$key}; - } else { - $hash->{$_key} = $args->{$key}; - } - } - $hash->{'has_errors'} = 1; + $self->{'require_auth'} = shift if @_ == 1 && (! defined($_[0]) || ref($_[0]) || $_[0] =~ /^[01]$/); + return $self->{'require_auth'} || 0; } -sub has_errors { scalar keys %{ shift->hash_errors } } +sub is_authed { my $data = shift->auth_data; $data && ! $data->{'error'} } -sub format_error { - my ($self, $error) = @_; - return $error; +sub check_valid_auth { + return shift->_do_auth({ + login_print => sub {}, # check only - don't login if not + location_bounce => sub {}, # call get_valid_auth - but don't bounce to other locations + }); } -sub add_to_errors { shift->add_errors(@_) } -sub add_to_swap { my $self = shift; $self->add_to_hash($self->hash_swap, @_) } -sub add_to_fill { my $self = shift; $self->add_to_hash($self->hash_fill, @_) } -sub add_to_form { my $self = shift; $self->add_to_hash($self->hash_form, @_) } -sub add_to_common { my $self = shift; $self->add_to_hash($self->hash_common, @_) } -sub add_to_base { my $self = shift; $self->add_to_hash($self->hash_base, @_) } - -sub add_to_hash { +sub get_valid_auth { my $self = shift; - my $old = shift; - my $new = shift; - $new = {$new, @_} if ! ref $new; # non-hashref - $old->{$_} = $new->{$_} foreach keys %$new; + return $self->_do_auth({ + login_print => sub { # use CGI::Ex::Auth - but use our formatting and printing + my ($auth, $template, $hash) = @_; + local $self->{'__login_file_print'} = $template; + local $self->{'__login_hash_common'} = $hash; + return $self->goto_step($self->login_step); + } + }); } -sub base_dir_rel { - my $self = shift; - $self->{'base_dir_rel'} = shift if $#_ != -1; - return $self->{'base_dir_rel'} || ''; -} - -sub base_dir_abs { - my $self = shift; - $self->{'base_dir_abs'} = shift if $#_ != -1; - return $self->{'base_dir_abs'} || ''; -} +sub _do_auth { + my ($self, $extra) = @_; + return $self->auth_data if $self->is_authed; -sub ext_print { - my $self = shift; - $self->{'ext_print'} = shift if $#_ != -1; - return $self->{'ext_print'} || 'html'; -} + my $args = { %{ $self->auth_args || {} }, %{ $extra || {} } }; + $args->{'script_name'} ||= $self->script_name; + $args->{'path_info'} ||= $self->path_info; + $args->{'cgix'} ||= $self->cgix; + $args->{'form'} ||= $self->form; + $args->{'cookies'} ||= $self->cookies; + $args->{'js_uri_path'} ||= $self->js_uri_path; + $args->{'get_pass_by_user'} ||= sub { my ($auth, $user) = @_; $self->get_pass_by_user($user, $auth) }; + $args->{'verify_user'} ||= sub { my ($auth, $user) = @_; $self->verify_user( $user, $auth) }; + $args->{'cleanup_user'} ||= sub { my ($auth, $user) = @_; $self->cleanup_user( $user, $auth) }; -sub ext_val { - my $self = shift; - $self->{'ext_val'} = shift if $#_ != -1; - return $self->{'ext_val'} || 'val'; -} + my $obj = $self->auth_obj($args); + my $resp = $obj->get_valid_auth; + my $data = $obj->last_auth_data; + delete $data->{'real_pass'} if defined $data; # data may be defined but false + $self->auth_data($data); # failed authentication may still have auth_data -### where to find the javascript files -### default to using this script as a handler -sub js_uri_path { - my $self = shift; - my $script = $ENV{'SCRIPT_NAME'} || return ''; - my $js_step = $self->js_step; - return ($self->can('path') == \&CGI::Ex::App::path) - ? $script .'/'. $js_step # try to use a cache friendly URI (if path is our own) - : $script . '?'.$self->step_key.'='.$js_step.'&js='; # use one that works with more paths + return ($resp && $data) ? $data : undef; } -###----------------------------------------------------------------### -### a simple step that allows for printing javascript libraries that -### are stored in perls @INC. Which ever step is in js_step should do something similar. +###---------------------### +# default steps -sub js_run_step { +sub js_run_step { # step that allows for printing javascript libraries that are stored in perls @INC. my $self = shift; - - ### make sure path info looks like /js/CGI/Ex/foo.js - my $file = $self->form->{'js'} || $ENV{'PATH_INFO'} || ''; - $file = ($file =~ m!^(?:/js/|/)?(\w+(?:/\w+)*\.js)$!) ? $1 : ''; + my $file = $self->form->{'js'} || $self->path_info; + $file = ($file =~ m!^(?:/js/|/)?(\w+(?:/\w+)*\.js)$!) ? $1 : ''; # make sure path info looks like /js/CGI/Ex/foo.js $self->cgix->print_js($file); $self->{'_no_post_navigate'} = 1; return 1; } -###----------------------------------------------------------------### -### a step that will be used if a valid_steps is defined -### and the current step of the path is not in valid_steps -### or if the step is a "hidden" step that begins with _ -### or if the step name contains \W - -sub __forbidden_info_complete { 0 } - -sub __forbidden_hash_swap { {forbidden_step => shift->stash->{'forbidden_step'}} } +sub __forbidden_require_auth { 0 } +sub __forbidden_allow_morph { shift->allow_morph(@_) && 1 } +sub __forbidden_info_complete { 0 } # step that will be used the path method determines it is forbidden +sub __forbidden_hash_common { shift->stash } +sub __forbidden_file_print { \ "

Denied

You do not have access to the step \"[% forbidden_step.html %]\"" } -sub __forbidden_file_print { \ "

Denied

You do not have access to the step \"[% forbidden_step %]\"" } +sub __error_allow_morph { shift->allow_morph(@_) && 1 } +sub __error_info_complete { 0 } # step that is used by the default handle_error +sub __error_hash_common { shift->stash } +sub __error_file_print { \ "

A fatal error occurred

Step: \"[% error_step.html %]\"
[% TRY; CONFIG DUMP => {header => 0}; DUMP error; END %]" } -###----------------------------------------------------------------### +sub __login_require_auth { 0 } +sub __login_allow_morph { shift->allow_morph(@_) && 1 } +sub __login_info_complete { 0 } # step used by default authentication +sub __login_hash_common { shift->{'__login_hash_common'} || {error => "hash_common not set during default __login"} } +sub __login_file_print { shift->{'__login_file_print'} || \ "file_print not set during default __login
[% login_error %]" } 1;