From 174a7ab2679560840c91b366a82d0732c55b78f0 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" Date: Thu, 7 Sep 2006 23:41:33 +0000 Subject: [PATCH] Bug 350217: Extensions need to be able to update Bugzilla's DB schema Patch By Max Kanat-Alexander r=ghendricks, a=myk --- webtools/bugzilla/Bugzilla.pm | 11 +++ webtools/bugzilla/Bugzilla/DB/Schema.pm | 11 +++ webtools/bugzilla/Bugzilla/Hook.pm | 100 ++++++++++++++++++++--- webtools/bugzilla/Bugzilla/Install/DB.pm | 3 + webtools/bugzilla/enter_bug.cgi | 2 +- 5 files changed, 116 insertions(+), 11 deletions(-) diff --git a/webtools/bugzilla/Bugzilla.pm b/webtools/bugzilla/Bugzilla.pm index 0fb223e9ef2e..24e93edc7349 100644 --- a/webtools/bugzilla/Bugzilla.pm +++ b/webtools/bugzilla/Bugzilla.pm @@ -343,6 +343,12 @@ sub custom_field_names { @{Bugzilla::Field->match({ custom=>1, obsolete=>0 })}); } +sub hook_args { + my ($class, $args) = @_; + $class->request_cache->{hook_args} = $args if $args; + return $class->request_cache->{hook_args}; +} + sub request_cache { if ($ENV{MOD_PERL}) { require Apache2::RequestUtil; @@ -556,4 +562,9 @@ The current Parameters of Bugzilla, as a hashref. If C does not exist, then we return an empty hashref. If C is unreadable or is not valid perl, we C. +=item C + +If you are running inside a code hook (see L) this +is how you get the arguments passed to the hook. + =back diff --git a/webtools/bugzilla/Bugzilla/DB/Schema.pm b/webtools/bugzilla/Bugzilla/DB/Schema.pm index ea25a125a186..4c270e68c8a3 100644 --- a/webtools/bugzilla/Bugzilla/DB/Schema.pm +++ b/webtools/bugzilla/Bugzilla/DB/Schema.pm @@ -35,9 +35,11 @@ package Bugzilla::DB::Schema; use strict; use Bugzilla::Error; +use Bugzilla::Hook; use Bugzilla::Util; use Bugzilla::Constants; +use Hash::Util qw(lock_value unlock_hash lock_keys unlock_keys); use Safe; # Historical, needed for SCHEMA_VERSION = '1.00' use Storable qw(dclone freeze thaw); @@ -1168,6 +1170,15 @@ sub _initialize { $abstract_schema ||= ABSTRACT_SCHEMA; + # Let extensions add tables, but make sure they can't modify existing + # tables. If we don't lock/unlock keys, lock_value complains. + lock_keys(%$abstract_schema); + lock_value(%$abstract_schema, $_) foreach (keys %$abstract_schema); + unlock_keys(%$abstract_schema); + Bugzilla::Hook::process('db_schema-abstract_schema', + { schema => $abstract_schema }); + unlock_hash(%$abstract_schema); + $self->{schema} = dclone($abstract_schema); # While ABSTRACT_SCHEMA cannot be modified, # $self->{abstract_schema} can be. So, we dclone it to prevent diff --git a/webtools/bugzilla/Bugzilla/Hook.pm b/webtools/bugzilla/Bugzilla/Hook.pm index 8ce1482c1466..be4a70077ca6 100644 --- a/webtools/bugzilla/Bugzilla/Hook.pm +++ b/webtools/bugzilla/Bugzilla/Hook.pm @@ -29,8 +29,7 @@ use Bugzilla::Error; use strict; sub process { - my $name = shift; - trick_taint($name); + my ($name, $args) = @_; # get a list of all extensions my @extensions = glob(bz_locations()->{'extensionsdir'} . "/*"); @@ -43,6 +42,7 @@ sub process { # worry about, so we can safely detaint them: trick_taint($extension); if (-e $extension.'/code/'.$name.'.pl') { + Bugzilla->hook_args($args); do($extension.'/code/'.$name.'.pl'); ThrowCodeError('extension_invalid', { name => $name, extension => $extension }) if $@; @@ -61,26 +61,106 @@ Bugzilla::Hook - Extendible extension hooks for Bugzilla code =head1 SYNOPSIS - use Bugzilla::Hook; + use Bugzilla::Hook; - Bugzilla::Hook::process("hookname"); + Bugzilla::Hook::process("hookname", { arg => $value, arg2 => $value2 }); =head1 DESCRIPTION Bugzilla allows extension modules to drop in and add routines at arbitrary points in Bugzilla code. These points are refered to as hooks. When a piece of standard Bugzilla code wants to allow an extension -to perform additional functions, it uses Bugzilla::Hook's process() +to perform additional functions, it uses Bugzilla::Hook's L subroutine to invoke any extension code if installed. -=over 4 +=head2 How Hooks Work + +When a hook named C is run, Bugzilla will attempt to invoke any +source files named F. + +So, for example, if your extension is called "testopia", and you +want to have code run during the L hook, you +would have a file called F +that contained perl code to run during that hook. + +=head2 Arguments Passed to Hooks + +Some L have params that are passed to them. + +These params are accessible through L. +That returns a hashref. Very frequently, if you want your +hook to do anything, you have to modify these variables. + +=head1 SUBROUTINES + +=over =item C -Invoke any code hooks with a matching name from any installed extensions. -When this subroutine is called with hook name foo, Bugzilla will attempt -to invoke any source files in C. +=over + +=item B + +Invoke any code hooks with a matching name from any installed extensions. + See C in the Bugzilla Guide for more information on -Bugzilla's extension mechanism. +Bugzilla's extension mechanism. + +=item B + +=over + +=item C<$name> - The name of the hook to invoke. + +=item C<$args> - A hashref. The named args to pass to the hook. +They will be accessible to the hook via L. + +=back + +=item B (nothing) + +=back + +=back + +=head1 HOOKS + +This describes what hooks exist in Bugzilla currently. + +=head2 enter_bug-entrydefaultvars + +This happens right before the template is loaded on enter_bug.cgi. + +Params: + +=over + +=item C - A hashref. The variables that will be passed into the template. + +=back + +=head2 install-update_db + +This happens at the very end of all the tables being updated +during an installation or upgrade. If you need to modify your custom +schema, do it here. No params are passed. + +=head2 db_schema-abstract_schema + +This allows you to add tables to Bugzilla. Note that we recommend that you +prefix the names of your tables with some word, so that they don't conflict +with any future Bugzilla tables. + +If you wish to add new I to existing Bugzilla tables, do that +in L. + +Params: + +=over + +=item C - A hashref, in the format of +L. Add new hash keys to make new table +definitions. F will automatically add these tables to the +database when run. =back diff --git a/webtools/bugzilla/Bugzilla/Install/DB.pm b/webtools/bugzilla/Bugzilla/Install/DB.pm index d7918f6ac3be..e4e4e97fe9e4 100644 --- a/webtools/bugzilla/Bugzilla/Install/DB.pm +++ b/webtools/bugzilla/Bugzilla/Install/DB.pm @@ -23,6 +23,7 @@ use strict; use Bugzilla::Bug qw(is_open_state); use Bugzilla::Constants; +use Bugzilla::Hook; use Bugzilla::Util; use Bugzilla::Series; @@ -490,6 +491,8 @@ sub update_table_definitions { ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ + + Bugzilla::Hook::process('install-update_db'); } # Subroutines should be ordered in the order that they are called. diff --git a/webtools/bugzilla/enter_bug.cgi b/webtools/bugzilla/enter_bug.cgi index a138d5edfc92..62abdcd81e42 100755 --- a/webtools/bugzilla/enter_bug.cgi +++ b/webtools/bugzilla/enter_bug.cgi @@ -547,7 +547,7 @@ foreach my $row (@$grouplist) { $vars->{'group'} = \@groups; -Bugzilla::Hook::process("enter_bug-entrydefaultvars"); +Bugzilla::Hook::process("enter_bug-entrydefaultvars", { vars => $vars }); $vars->{'default'} = \%default;