Extension:DatabaseFetchHook.php

From Organic Design wiki
Revision as of 08:53, 11 October 2007 by Nad (talk | contribs)

<?php

  1. Extension:DatabaseFetchHookTemplate:Php
Info.svg These are the MediaWiki extensions we're using and/or developing. Please refer to the information on the mediawiki.org wiki for installation and usage details. Extensions here which have no corresponding mediawiki article are either not ready for use or have been superseded. You can also browse our extension code in our local Subversion repository or our GitHub mirror.
  1. - See http://www.mediawiki.org/wiki/Extension:DatabaseFetchHook for installation and usage details
  2. - Started: 2007-03-05
  3. - Licenced under LGPL (http://www.gnu.org/copyleft/lesser.html)

if (!defined('MEDIAWIKI')) die('Not an entry point.');

define('DFH_VERSION','2.0.0, 2007-10-11');

$wgExtensionCredits['parserhook'][] = array( 'name' => "DatabaseFetchHook", 'author' => 'User:Nad', 'description' => 'Dynamically adds a new hook to intercept the database fetchObject and fetchRow methods', 'url' => 'http://www.mediawiki.org/wiki/Extension:DatabaseFetchHook', 'version' => DFH_VERSION );

  1. Create a LoadBalancer2 class by extending the existing LoadBalancer

$LoadBalancer = get_class($wgLoadBalancer); $LoadBalancer2 = $LoadBalancer.'2'; eval("class $eLoadBalancer2 extends $LoadBalancer".' {

# Override the getConnection method to return a secureDatabase connection function &getConnection($i, $fail = true, $groups = array()) { $db =& parent::getConnection($i,$fail,$groups);

# Create a secure subclass of the database class with extended fetchObject method $Database = get_class($db); $Database2 = $Database.'2'; if (!class_exists($Database2)) { eval("class $Database2 extends $Database ".\'{ function fetchObject($res) { $row = parent::fetchObject($res); wfRunHooks("DatabaseFetchHook", array(&$this,&$row)); return $row; } }\'); }

# Replace the DatabaseXXX connection with an identical secureDatabaseXXX connection $db2 = new $Database2; foreach(array_keys(get_class_vars($Database)) as $k) $db2->$k = $db->$k; unset($db);

return $db2; }

}');

  1. Replace the global LoadBalancer object with an identical instance of the new LoadBalancer2 class

$oldLoadBalancer = $wgLoadBalancer; $wgLoadBalancer = new $LoadBalancer2($oldLoadBalancer->mServers); foreach(array_keys(get_class_vars($LoadBalancer)) as $k) $wgLoadBalancer->$k = $oldLoadBalancer->$k; ?>