From a40d927bfd9a9b3012be9e0f85da84aa4dd58344 Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Fri, 20 Dec 2002 15:21:24 +0000 Subject: Bug 173622 - Move template handling into a module. r=justdave, joel, a=justdave --- Bugzilla.pm | 192 +++++++++++++++++ Bugzilla/CGI.pm | 2 +- Bugzilla/Template.pm | 236 +++++++++++++++++++++ Bugzilla/Template/Plugin/Bugzilla.pm | 53 +++++ CGI.pl | 8 +- collectstats.pl | 2 +- globals.pl | 197 ++--------------- .../en/default/bug/create/create-guided.html.tmpl | 22 +- template/en/default/global/help-header.html.tmpl | 5 +- template/en/default/global/help.html.tmpl | 7 +- .../en/default/global/site-navigation.html.tmpl | 7 +- .../en/default/search/search-advanced.html.tmpl | 7 +- template/en/default/search/search.html.tmpl | 7 +- 13 files changed, 538 insertions(+), 207 deletions(-) create mode 100644 Bugzilla.pm create mode 100644 Bugzilla/Template.pm create mode 100644 Bugzilla/Template/Plugin/Bugzilla.pm diff --git a/Bugzilla.pm b/Bugzilla.pm new file mode 100644 index 000000000..f093edaa5 --- /dev/null +++ b/Bugzilla.pm @@ -0,0 +1,192 @@ +# -*- Mode: perl; indent-tabs-mode: nil -*- +# +# The contents of this file are subject to the Mozilla Public +# License Version 1.1 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.mozilla.org/MPL/ +# +# Software distributed under the License is distributed on an "AS +# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or +# implied. See the License for the specific language governing +# rights and limitations under the License. +# +# The Original Code is the Bugzilla Bug Tracking System. +# +# The Initial Developer of the Original Code is Netscape Communications +# Corporation. Portions created by Netscape are +# Copyright (C) 1998 Netscape Communications Corporation. All +# Rights Reserved. +# +# Contributor(s): Bradley Baetz +# + +package Bugzilla; + +use strict; + +use Bugzilla::CGI; +use Bugzilla::Template; + +sub create { + my $class = shift; + my $B = $class->instance; + + # And set up the vars for this request + $B->_init_transient; + + return $B; +} + +# We don't use Class::Singleton, because theres no need. However, I'm keeping +# the same interface in case we do change in the future + +my $_instance; +sub instance { + my $class = shift; + + $_instance = $class->_new_instance unless ($_instance); + + return $_instance; +} + +sub template { return $_[0]->{_template}; } +sub cgi { return $_[0]->{_cgi}; } + +# PRIVATE methods below here + +# Called from instance +sub _new_instance { + my $class = shift; + + my $self = { }; + bless($self, $class); + + $self->_init_persistent; + + return $self; +} + +# Initialise persistent items +sub _init_persistent { + my $self = shift; + + # Set up the template + $self->{_template} = Bugzilla::Template->create(); +} + +# Initialise transient (per-request) items +sub _init_transient { + my $self = shift; + + $self->{_cgi} = new Bugzilla::CGI if exists $::ENV{'GATEWAY_INTERFACE'}; +} + +# Clean up transient items such as database handles +sub _cleanup { + my $self = shift; + + delete $self->{_cgi}; +} + +sub DESTROY { + my $self = shift; + + # Clean up transient items. We can't just let perl handle removing + # stuff from the $self hash because some stuff (eg database handles) + # may need special casing + # under a persistent environment (ie mod_perl) + $self->_cleanup; +} + +1; + +__END__ + +=head1 NAME + +Bugzilla - Semi-persistent collection of various objects used by scripts +and modules + +=head1 SYNOPSIS + + use Bugzilla; + + Bugzilla->create; + + sub someModulesSub { + my $B = Bugzilla->instance; + $B->template->process(...); + } + +=head1 DESCRIPTION + +Several Bugzilla 'things' are used by a variety of modules and scripts. This +includes database handles, template objects, and so on. + +This module is a singleton intended as a central place to store these objects. +This approach has several advantages: + +=over 4 + +=item * + +They're not global variables, so we don't have issues with them staying arround +with mod_perl + +=item * + +Everything is in one central place, so its easy to access, modify, and maintain + +=item * + +Code in modules can get access to these objects without having to have them +all passed from the caller, and the caller's caller, and.... + +=item * + +We can reuse objects across requests using mod_perl where appropriate (eg +templates), whilst destroying those which are only valid for a single request +(such as the current user) + +=back + +Note that items accessible via this object may be loaded when the Bugzilla +object is created, or may be demand-loaded when requested. + +For something to be added to this object, it should either be able to benefit +from persistence when run under mod_perl (such as the a C