X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FController%2FBase.pm;h=c4f66dce8ad99d38c114813a8de3436703efb56b;hb=bdeaaa3531ff10e2a1ad16207b386a4c0b3fe73f;hp=06fd7fbdd753bc78ae9921f9410343f69fe3090b;hpb=41400107ec8929d6ea107de7f5238006e9de029c;p=kivitendo-erp.git diff --git a/SL/Controller/Base.pm b/SL/Controller/Base.pm index 06fd7fbdd..c4f66dce8 100644 --- a/SL/Controller/Base.pm +++ b/SL/Controller/Base.pm @@ -2,29 +2,83 @@ package SL::Controller::Base; use parent qw(Rose::Object); +use Carp; use List::Util qw(first); -sub parse_html_template { - my $self = shift; - my $name = shift; - - return $::form->parse_html_template($name, { @_, SELF => $self }); -} +# +# public/helper functions +# sub url_for { my $self = shift; - return $_[0] if scalar(@_) == 1; + return $_[0] if (scalar(@_) == 1) && !ref($_[0]); - my %params = @_; + my %params = ref($_[0]) eq 'HASH' ? %{ $_[0] } : @_; my $controller = delete($params{controller}) || $self->_controller_name; my $action = delete($params{action}) || 'dispatch'; - $params{action} = "${controller}::${action}"; + $params{action} = "${controller}/${action}"; my $query = join('&', map { $::form->escape($_) . '=' . $::form->escape($params{$_}) } keys %params); return "controller.pl?${query}"; } +sub redirect_to { + my $self = shift; + my $url = $self->url_for(@_); + + print $::cgi->redirect($url); +} + +sub render { + my $self = shift; + my $template = shift; + my ($options, %locals) = (@_ && ref($_[0])) ? @_ : ({ }, @_); + + my $source; + if ($options->{inline}) { + $source = \$template; + + } else { + $source = "templates/webpages/${template}.html"; + croak "Template file ${source} not found" unless -f $source; + } + + if (!$options->{partial} && !$options->{inline}) { + $::form->{title} = $locals{title} if $locals{title}; + $::form->header; + } + + my %params = ( %locals, + AUTH => $::auth, + FORM => $::form, + LOCALE => $::locale, + LXCONFIG => { dbcharset => $::dbcharset, + webdav => $::webdav, + lizenzen => $::lizenzen, + latex_templates => $::latex, + opendocument_templates => $::opendocument_templates, + vertreter => $::vertreter, + show_best_before => $::show_best_before, + }, + LXDEBUG => $::lxdebug, + MYCONFIG => \%::myconfig, + SELF => $self, + ); + + my $output; + my $parser = $self->_template_obj; + $parser->process($source, \%params, \$output) || croak $parser->error; + + print $output unless $options->{inline}; + + return $output; +} + +# +# private functions -- for use in Base only +# + sub _run_action { my $self = shift; my $action = "action_" . shift; @@ -48,4 +102,232 @@ sub _dispatch { $self->$action(@_); } +sub _template_obj { + my ($self) = @_; + + $self->{__basepriv_template_obj} ||= + Template->new({ INTERPOLATE => 0, + EVAL_PERL => 0, + ABSOLUTE => 1, + CACHE_SIZE => 0, + PLUGIN_BASE => 'SL::Template::Plugin', + INCLUDE_PATH => '.:templates/webpages', + COMPILE_EXT => '.tcc', + COMPILE_DIR => $::userspath . '/templates-cache', + }) || croak; + + return $self->{__basepriv_template_obj}; +} + 1; + +__END__ + +=head1 NAME + +SL::Controller::Base - base class for all action controllers + +=head1 SYNOPSIS + +=head2 OVERVIEW + +This is a base class for all action controllers. Action controllers +provide subs that are callable by special URLs. + +For each request made to the web server an instance of the controller +will be created. After the request has been served that instance will +handed over to garbage collection. + +This base class is derived from L. + +=head2 CONVENTIONS + +The URLs have the following properties: + +=over 2 + +=item * + +The script part of the URL must be C. + +=item * + +There must be a GET or POST parameter named C containing the +name of the controller and the sub to call separated by C, +e.g. C. + +=item * + +The controller name is the package's name without the +C prefix. At the moment only packages in the +C namespace are valid; sub-namespaces are not +allowed. The package name must start with an upper-case letter. + +=item * + +The sub part of the C parameter is the name of the sub to +call. However, the sub's name is automatically prefixed with +C. Therefore for the example C the sub +C would be called. This in turn means +that subs whose name does not start with C cannot be invoked +directly via the URL. + +=back + +=head2 INDIRECT DISPATCHING + +In the case that there are several submit buttons on a page it is +often impractical to have a single C parameter match up +properly. For such a case a special dispatcher method is available. In +that case the C parameter of the URL must be +C. + +The C method will iterate over all +subs in the controller package whose names start with C. The +first one for which there's a GET or POST parameter with the same name +and that's trueish is called. + +Usage from a template usually looks like this: + +
+ ... + + + +
+ +The dispatching is handled by the function L. + +=head1 FUNCTIONS + +=head2 PUBLIC HELPER FUNCTIONS + +These functions are supposed to be called by sub-classed controllers. + +=over 4 + +=item C + +Renders the template C<$template>. Provides other variables than +C does. + +C<$options>, if present, must be a hash reference. All remaining +parameters are slurped into C<%locals>. + +What is rendered and how C<$template> is interpreted is determined by +C<< $options->{inline} >> and C<< $options->{partial} >>. + +If C<< $options->{inline} >> is trueish then C<$template> is a string +containing the template code to interprete. Additionally the output +will not be sent to the browser. Instead it is only returned to the +caller. + +If C<< $options->{inline} >> is falsish then C<$template> is +interpreted as the name of a template file. It is prefixed with +"templates/webpages/" and postfixed with ".html". An exception will be +thrown if that file does not exist. + +If C<< $options->{partial} >> is trueish then C<< $::form->header >> +will not be called. Otherwise C<< $::form->{header} >> will be set to +C<$locals{header}> (only if $locals{header} is trueish) and +C<< $::form->header >> will be called before the template itself is +processed. + +The template itself has access to the following variables: + +=over 2 + +=item * C -- C<$::auth> + +=item * C
-- C<$::form> + +=item * C -- C<$::locale> + +=item * C -- all parameters from C with +the same name they appear in the file (e.g. C, C +etc) + +=item * C -- C<$::lxdebug> + +=item * C -- C<%::myconfig> + +=item * C -- the controller instance + +=item * All items from C<%locals> + +=back + +Unless C<< $options->{inline} >> is trueish the function will send the +output to the browser. + +The function will always return the output. + +=item C + +=item C + +=item C + +Creates an URL for the given parameters suitable for calling an action +controller. If there's only one scalar parameter then it is returned +verbatim. + +Otherwise the parameters are given either as a single hash ref +parameter or as a normal hash. + +The controller to call is given by C<$params{controller}>. It defaults +to the current controller as returned by +L. + +The action to call is given by C<$params{action}>. It defaults to +C. + +All other key/value pairs in C<%params> are appended as GET parameters +to the URL. + +Usage from a template might look like this: + + create new message + +=item redirect_to %url_params + +Redirects the browser to a new URL by outputting a HTTP redirect +header. The URL is generated by calling L with +C<%url_params>. + +=back + +=head2 PRIVATE FUNCTIONS + +These functions are supposed to be used from this base class only. + +=over 4 + +=item C<_controller_name> + +Returns the name of the curernt controller package without the +C prefix. + +=item C<_dispatch> + +Implements the method lookup for indirect dispatching mentioned in the +section L. + +=item C<_run_action $action> + +Executes a sub based on the value of C<$action>. C<$action> is the sub +name part of the C GET or POST parameter as described in +L. + +If C<$action> equals C then the sub L in this +base class is called for L. Otherwise +C<$action> is prefixed with C, and that sub is called on the +current controller instance. + +=back + +=head1 AUTHOR + +Moritz Bunkus Em.bunkus@linet-services.deE + +=cut