From 08aa4418c30cfc18ccc69a0f0f9cb9e17be6c196 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Mon, 12 Aug 2013 09:28:15 +0200 Subject: Update to MediaWiki 1.21.1 --- includes/Hooks.php | 120 ++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 82 insertions(+), 38 deletions(-) (limited to 'includes/Hooks.php') diff --git a/includes/Hooks.php b/includes/Hooks.php index bc39f2fc..8cc7acea 100644 --- a/includes/Hooks.php +++ b/includes/Hooks.php @@ -23,23 +23,47 @@ * @file */ +/** + * @since 1.18 + */ class MWHookException extends MWException {} /** * Hooks class. * * Used to supersede $wgHooks, because globals are EVIL. + * + * @since 1.18 */ class Hooks { protected static $handlers = array(); + /** + * Clears hooks registered via Hooks::register(). Does not touch $wgHooks. + * This is intended for use while testing and will fail if MW_PHPUNIT_TEST is not defined. + * + * @since 1.21 + * + * @param string $name the name of the hook to clear. + * + * @throws MWException if not in testing mode. + */ + public static function clear( $name ) { + if ( !defined( 'MW_PHPUNIT_TEST' ) ) { + throw new MWException( 'can not reset hooks in operation.' ); + } + + unset( self::$handlers[$name] ); + } + /** * Attach an event handler to a given hook * - * @param $name Mixed: name of hook + * @since 1.18 + * + * @param string $name name of hook * @param $callback Mixed: callback function to attach - * @return void */ public static function register( $name, $callback ) { if( !isset( self::$handlers[$name] ) ) { @@ -51,69 +75,84 @@ class Hooks { /** * Returns true if a hook has a function registered to it. + * The function may have been registered either via Hooks::register or in $wgHooks. + * + * @since 1.18 * - * @param $name Mixed: name of hook - * @return Boolean: true if a hook has a function registered to it + * @param string $name name of hook + * @return Boolean: true if the hook has a function registered to it */ public static function isRegistered( $name ) { - if( !isset( self::$handlers[$name] ) ) { - self::$handlers[$name] = array(); - } + global $wgHooks; - return ( count( self::$handlers[$name] ) != 0 ); + return !empty( $wgHooks[$name] ) || !empty( self::$handlers[$name] ); } /** * Returns an array of all the event functions attached to a hook + * This combines functions registered via Hooks::register and with $wgHooks. + * @since 1.18 + * + * @throws MWException + * @throws FatalError + * @param string $name name of the hook * - * @param $name Mixed: name of the hook * @return array */ public static function getHandlers( $name ) { - if( !isset( self::$handlers[$name] ) ) { + global $wgHooks; + + // Return quickly in the most common case + if ( empty( self::$handlers[$name] ) && empty( $wgHooks[$name] ) ) { return array(); } - return self::$handlers[$name]; + if ( !is_array( self::$handlers ) ) { + throw new MWException( "Local hooks array is not an array!\n" ); + } + + if ( !is_array( $wgHooks ) ) { + throw new MWException( "Global hooks array is not an array!\n" ); + } + + if ( empty( Hooks::$handlers[$name] ) ) { + $hooks = $wgHooks[$name]; + } elseif ( empty( $wgHooks[$name] ) ) { + $hooks = Hooks::$handlers[$name]; + } else { + // so they are both not empty... + $hooks = array_merge( Hooks::$handlers[$name], $wgHooks[$name] ); + } + + if ( !is_array( $hooks ) ) { + throw new MWException( "Hooks array for event '$name' is not an array!\n" ); + } + + return $hooks; } /** * Call hook functions defined in Hooks::register * - * Because programmers assign to $wgHooks, we need to be very - * careful about its contents. So, there's a lot more error-checking - * in here than would normally be necessary. + * @param string $event event name + * @param $args Array: parameters passed to hook functions * - * @param $event String: event name - * @param $args Array: parameters passed to hook functions + * @throws MWException + * @throws FatalError * @return Boolean True if no handler aborted the hook */ public static function run( $event, $args = array() ) { global $wgHooks; // Return quickly in the most common case - if ( !isset( self::$handlers[$event] ) && !isset( $wgHooks[$event] ) ) { + if ( empty( self::$handlers[$event] ) && empty( $wgHooks[$event] ) ) { return true; } - if ( !is_array( self::$handlers ) ) { - throw new MWException( "Local hooks array is not an array!\n" ); - } - - if ( !is_array( $wgHooks ) ) { - throw new MWException( "Global hooks array is not an array!\n" ); - } + wfProfileIn( 'hook: ' . $event ); + $hooks = self::getHandlers( $event ); - $new_handlers = (array) self::$handlers; - $old_handlers = (array) $wgHooks; - - $hook_array = array_merge( $new_handlers, $old_handlers ); - - if ( !is_array( $hook_array[$event] ) ) { - throw new MWException( "Hooks array for event '$event' is not an array!\n" ); - } - - foreach ( $hook_array[$event] as $index => $hook ) { + foreach ( $hooks as $hook ) { $object = null; $method = null; $func = null; @@ -131,7 +170,7 @@ class Hooks { if ( count( $hook ) < 1 ) { throw new MWException( 'Empty array in hooks for ' . $event . "\n" ); } elseif ( is_object( $hook[0] ) ) { - $object = $hook_array[$event][$index][0]; + $object = $hook[0]; if ( $object instanceof Closure ) { $closure = true; if ( count( $hook ) > 1 ) { @@ -161,7 +200,7 @@ class Hooks { } elseif ( is_string( $hook ) ) { # functions look like strings, too $func = $hook; } elseif ( is_object( $hook ) ) { - $object = $hook_array[$event][$index]; + $object = $hook; if ( $object instanceof Closure ) { $closure = true; } else { @@ -249,18 +288,23 @@ class Hooks { ); } } elseif ( !$retval ) { + wfProfileOut( 'hook: ' . $event ); return false; } } + wfProfileOut( 'hook: ' . $event ); return true; } /** * This REALLY should be protected... but it's public for compatibility * - * @param $errno int Unused - * @param $errstr String: error message + * @since 1.18 + * + * @param int $errno Unused + * @param string $errstr error message + * @throws MWHookException * @return Boolean: false */ public static function hookErrorHandler( $errno, $errstr ) { -- cgit v1.2.2