updaters.inc

来自「php 开发的内容管理系统」· INC 代码 · 共 836 行 · 第 1/2 页

INC
836
字号
		echo "......maxold is {$maxold}\n";		echo wfTimestamp();		global $wgLegacySchemaConversion;		if( $wgLegacySchemaConversion ) {			// Create HistoryBlobCurStub entries.			// Text will be pulled from the leftover 'cur' table at runtime.			echo "......Moving metadata from cur; using blob references to text in cur table.\n";			$cur_text = "concat('O:18:\"historyblobcurstub\":1:{s:6:\"mCurId\";i:',cur_id,';}')";			$cur_flags = "'object'";		} else {			// Copy all cur text in immediately: this may take longer but avoids			// having to keep an extra table around.			echo "......Moving text from cur.\n";			$cur_text = 'cur_text';			$cur_flags = "''";		}		$wgDatabase->query( "INSERT INTO $old (old_namespace, old_title, old_text, old_comment, old_user, old_user_text,    				old_timestamp, old_minor_edit, old_flags)  			SELECT cur_namespace, cur_title, $cur_text, cur_comment, cur_user, cur_user_text, cur_timestamp, cur_minor_edit, $cur_flags  			FROM $cur", $fname );		echo wfTimestamp();		echo "......Setting up revision table.\n";		$wgDatabase->query( "INSERT INTO $revision (rev_id, rev_page, rev_comment, rev_user, rev_user_text, rev_timestamp,    				rev_minor_edit)			SELECT old_id, cur_id, old_comment, old_user, old_user_text,    				old_timestamp, old_minor_edit			FROM $old,$cur WHERE old_namespace=cur_namespace AND old_title=cur_title", $fname );		echo wfTimestamp();		echo "......Setting up page table.\n";		$wgDatabase->query( "INSERT INTO $page (page_id, page_namespace, page_title, page_restrictions, page_counter,    				page_is_redirect, page_is_new, page_random, page_touched, page_latest, page_len)  			SELECT cur_id, cur_namespace, cur_title, cur_restrictions, cur_counter, cur_is_redirect, cur_is_new,    				cur_random, cur_touched, rev_id, LENGTH(cur_text)  			FROM $cur,$revision  			WHERE cur_id=rev_page AND rev_timestamp=cur_timestamp AND rev_id > {$maxold}", $fname );		echo wfTimestamp();		echo "......Unlocking tables.\n";		$wgDatabase->query( "UNLOCK TABLES", $fname );		echo wfTimestamp();		echo "......Renaming old.\n";		$wgDatabase->query( "ALTER TABLE $old RENAME TO $text", $fname );		echo wfTimestamp();		echo "...done.\n";	}}function do_inverse_timestamp() {	global $wgDatabase;	$fname="do_schema_restructuring";	if( $wgDatabase->fieldExists( 'revision', 'inverse_timestamp' ) ) {		echo "Removing revision.inverse_timestamp and fixing indexes... ";		dbsource( archive( 'patch-inverse_timestamp.sql' ), $wgDatabase );		echo "ok\n";	} else {		echo "revision timestamp indexes already up to 2005-03-13\n";	}}function do_text_id() {	global $wgDatabase;	if( $wgDatabase->fieldExists( 'revision', 'rev_text_id' ) ) {		echo "...rev_text_id already in place.\n";	} else {		echo "Adding rev_text_id field... ";		dbsource( archive( 'patch-rev_text_id.sql' ), $wgDatabase );		echo "ok\n";	}}function do_namespace_size() {	$tables = array(		'page'          => 'page',		'archive'       => 'ar',		'recentchanges' => 'rc',		'watchlist'     => 'wl',		'querycache'    => 'qc',		'logging'       => 'log',	);	foreach( $tables as $table => $prefix ) {		do_namespace_size_on( $table, $prefix );		flush();	}}function do_namespace_size_on( $table, $prefix ) {	global $wgDatabase, $wgDBtype;	if ($wgDBtype != 'mysql')		return;	$field = $prefix . '_namespace';	$tablename = $wgDatabase->tableName( $table );	$result = $wgDatabase->query( "SHOW COLUMNS FROM $tablename LIKE '$field'" );	$info = $wgDatabase->fetchObject( $result );	$wgDatabase->freeResult( $result );	if( substr( $info->Type, 0, 3 ) == 'int' ) {		echo "...$field is already a full int ($info->Type).\n";	} else {		echo "Promoting $field from $info->Type to int... ";		$sql = "ALTER TABLE $tablename MODIFY $field int NOT NULL";		$wgDatabase->query( $sql );		echo "ok\n";	}}function do_pagelinks_update() {	global $wgDatabase;	if( $wgDatabase->tableExists( 'pagelinks' ) ) {		echo "...already have pagelinks table.\n";	} else {		echo "Converting links and brokenlinks tables to pagelinks... ";		dbsource( archive( 'patch-pagelinks.sql' ), $wgDatabase );		echo "ok\n";		flush();		global $wgCanonicalNamespaceNames;		foreach( $wgCanonicalNamespaceNames as $ns => $name ) {			if( $ns != 0 ) {				do_pagelinks_namespace( $ns );			}		}	}}function do_pagelinks_namespace( $namespace ) {	global $wgDatabase, $wgContLang;	$ns = intval( $namespace );	echo "Cleaning up broken links for namespace $ns... ";	$pagelinks = $wgDatabase->tableName( 'pagelinks' );	$name = $wgContLang->getNsText( $ns );	$prefix = $wgDatabase->strencode( $name );	$likeprefix = str_replace( '_', '\\_', $prefix);	$sql = "UPDATE $pagelinks	           SET pl_namespace=$ns,	               pl_title=TRIM(LEADING '$prefix:' FROM pl_title)	         WHERE pl_namespace=0	           AND pl_title LIKE '$likeprefix:%'";	$wgDatabase->query( $sql, 'do_pagelinks_namespace' );	echo "ok\n";}function do_drop_img_type() {	global $wgDatabase;	if( $wgDatabase->fieldExists( 'image', 'img_type' ) ) {		echo "Dropping unused img_type field in image table... ";		dbsource( archive( 'patch-drop_img_type.sql' ), $wgDatabase );		echo "ok\n";	} else {		echo "No img_type field in image table; Good.\n";	}}function do_old_links_update() {	global $wgDatabase;	if( $wgDatabase->tableExists( 'pagelinks' ) ) {		echo "Already have pagelinks; skipping old links table updates.\n";	} else {		convertLinks(); flush();	}}function do_user_unique_update() {	global $wgDatabase;	$duper = new UserDupes( $wgDatabase );	if( $duper->hasUniqueIndex() ) {		echo "Already have unique user_name index.\n";	} else {		if( !$duper->clearDupes() ) {			echo "WARNING: This next step will probably fail due to unfixed duplicates...\n";		}		echo "Adding unique index on user_name... ";		dbsource( archive( 'patch-user_nameindex.sql' ), $wgDatabase );		echo "ok\n";	}}function do_user_groups_update() {	$fname = 'do_user_groups_update';	global $wgDatabase;	if( $wgDatabase->tableExists( 'user_groups' ) ) {		echo "...user_groups table already exists.\n";		return do_user_groups_reformat();	}	echo "Adding user_groups table... ";	dbsource( archive( 'patch-user_groups.sql' ), $wgDatabase );	echo "ok\n";	if( !$wgDatabase->tableExists( 'user_rights' ) ) {		if( $wgDatabase->fieldExists( 'user', 'user_rights' ) ) {			echo "Upgrading from a 1.3 or older database? Breaking out user_rights for conversion...";			dbsource( archive( 'patch-user_rights.sql' ), $wgDatabase );			echo "ok\n";		} else {			echo "*** WARNING: couldn't locate user_rights table or field for upgrade.\n";			echo "*** You may need to manually configure some sysops by manipulating\n";			echo "*** the user_groups table.\n";			return;		}	}	echo "Converting user_rights table to user_groups... ";	$result = $wgDatabase->select( 'user_rights',		array( 'ur_user', 'ur_rights' ),		array( "ur_rights != ''" ),		$fname );	while( $row = $wgDatabase->fetchObject( $result ) ) {		$groups = array_unique(			array_map( 'trim',				explode( ',', $row->ur_rights ) ) );		foreach( $groups as $group ) {			$wgDatabase->insert( 'user_groups',				array(					'ug_user'  => $row->ur_user,					'ug_group' => $group ),				$fname );		}	}	$wgDatabase->freeResult( $result );	echo "ok\n";}function do_user_groups_reformat() {	# Check for bogus formats from previous 1.5 alpha code.	global $wgDatabase;	$info = $wgDatabase->fieldInfo( 'user_groups', 'ug_group' );	if( $info->type == 'int' ) {		$oldug = $wgDatabase->tableName( 'user_groups' );		$newug = $wgDatabase->tableName( 'user_groups_bogus' );		echo "user_groups is in bogus intermediate format. Renaming to $newug... ";		$wgDatabase->query( "ALTER TABLE $oldug RENAME TO $newug" );		echo "ok\n";		echo "Re-adding fresh user_groups table... ";		dbsource( archive( 'patch-user_groups.sql' ), $wgDatabase );		echo "ok\n";		echo "***\n";		echo "*** WARNING: You will need to manually fix up user permissions in the user_groups\n";		echo "*** table. Old 1.5 alpha versions did some pretty funky stuff...\n";		echo "***\n";	} else {		echo "...user_groups is in current format.\n";	}}function do_watchlist_null() {	# Make sure wl_notificationtimestamp can be NULL,	# and update old broken items.	global $wgDatabase;	$info = $wgDatabase->fieldInfo( 'watchlist', 'wl_notificationtimestamp' );	if( $info->not_null ) {		echo "Making wl_notificationtimestamp nullable... ";		dbsource( archive( 'patch-watchlist-null.sql' ), $wgDatabase );		echo "ok\n";	} else {		echo "...wl_notificationtimestamp is already nullable.\n";	}}/** * @bug 3946 */function do_page_random_update() {	global $wgDatabase;	echo "Setting page_random to a random value on rows where it equals 0...";	$page = $wgDatabase->tableName( 'page' );	$wgDatabase->query( "UPDATE $page SET page_random = RAND() WHERE page_random = 0", 'do_page_random_update' );	$rows = $wgDatabase->affectedRows();	echo "changed $rows rows\n";}function do_templatelinks_update() {	global $wgDatabase, $wgLoadBalancer;	$fname = 'do_templatelinks_update';	if ( $wgDatabase->tableExists( 'templatelinks' ) ) {		echo "...templatelinks table already exists\n";		return;	}	echo "Creating templatelinks table...\n";	dbsource( archive('patch-templatelinks.sql'), $wgDatabase );	echo "Populating...\n";	if ( isset( $wgLoadBalancer ) && $wgLoadBalancer->getServerCount() > 1 ) {		// Slow, replication-friendly update		$res = $wgDatabase->select( 'pagelinks', array( 'pl_from', 'pl_namespace', 'pl_title' ),			array( 'pl_namespace' => NS_TEMPLATE ), $fname );		$count = 0;		while ( $row = $wgDatabase->fetchObject( $res ) ) {			$count = ($count + 1) % 100;			if ( $count == 0 ) {				if ( function_exists( 'wfWaitForSlaves' ) ) {					wfWaitForSlaves( 10 );				} else {					sleep( 1 );				}			}			$wgDatabase->insert( 'templatelinks',				array(					'tl_from' => $row->pl_from,					'tl_namespace' => $row->pl_namespace,					'tl_title' => $row->pl_title,				), $fname			);		}		$wgDatabase->freeResult( $res );	} else {		// Fast update		$wgDatabase->insertSelect( 'templatelinks', 'pagelinks',			array(				'tl_from' => 'pl_from',				'tl_namespace' => 'pl_namespace',				'tl_title' => 'pl_title'			), array(				'pl_namespace' => 10			), $fname		);	}	echo "Done. Please run maintenance/refreshLinks.php for a more thorough templatelinks update.\n";}function do_all_updates( $doShared = false ) {	global $wgNewTables, $wgNewFields, $wgRenamedTables, $wgSharedDB, $wgDatabase;	$doUser = !$wgSharedDB || $doShared;	# Rename tables	foreach ( $wgRenamedTables as $tableRecord ) {		rename_table( $tableRecord[0], $tableRecord[1], $tableRecord[2] );	}	# Add missing tables	foreach ( $wgNewTables as $tableRecord ) {		add_table( $tableRecord[0], $tableRecord[1] );		flush();	}	# Add missing fields	foreach ( $wgNewFields as $fieldRecord ) {		if ( $fieldRecord[0] != 'user' || $doUser ) {			add_field( $fieldRecord[0], $fieldRecord[1], $fieldRecord[2] );		}		flush();	}	# Do schema updates which require special handling	do_interwiki_update(); flush();	do_index_update(); flush();	do_old_links_update(); flush();	do_image_name_unique_update(); flush();	do_watchlist_update(); flush();	if ( $doUser ) {		do_user_update(); flush();	}######	do_copy_newtalk_to_watchlist(); flush();	do_logging_encoding(); flush();	do_schema_restructuring(); flush();	do_inverse_timestamp(); flush();	do_text_id(); flush();	do_namespace_size(); flush();	do_pagelinks_update(); flush();	do_templatelinks_update(); flush(); // after pagelinks	do_drop_img_type(); flush();	if ( $doUser ) {		do_user_unique_update(); flush();	}	do_user_groups_update(); flush();	do_watchlist_null(); flush();	//do_image_index_update(); flush();	do_logging_timestamp_index(); flush();	do_page_random_update(); flush();	initialiseMessages(); flush();}function archive($name) {	global $wgDBtype, $IP;	switch ($wgDBtype) {	case "oracle":		return "$IP/maintenance/oracle/archives/$name";	default:		return "$IP/maintenance/archives/$name";	}}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?