MediaWiki REL1_33
renameDbPrefix.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
34 public function __construct() {
35 parent::__construct();
36 $this->addOption( "old", "Old db prefix [0 for none]", true, true );
37 $this->addOption( "new", "New db prefix [0 for none]", true, true );
38 }
39
40 public function getDbType() {
42 }
43
44 public function execute() {
45 global $wgDBname;
46
47 // Allow for no old prefix
48 if ( $this->getOption( 'old', 0 ) === '0' ) {
49 $old = '';
50 } else {
51 // Use nice safe, sane, prefixes
52 preg_match( '/^[a-zA-Z]+_$/', $this->getOption( 'old' ), $m );
53 $old = $m[0] ?? false;
54 }
55 // Allow for no new prefix
56 if ( $this->getOption( 'new', 0 ) === '0' ) {
57 $new = '';
58 } else {
59 // Use nice safe, sane, prefixes
60 preg_match( '/^[a-zA-Z]+_$/', $this->getOption( 'new' ), $m );
61 $new = $m[0] ?? false;
62 }
63
64 if ( $old === false || $new === false ) {
65 $this->fatalError( "Invalid prefix!" );
66 }
67 if ( $old === $new ) {
68 $this->output( "Same prefix. Nothing to rename!\n", true );
69 }
70
71 $this->output( "Renaming DB prefix for tables of $wgDBname from '$old' to '$new'\n" );
72 $count = 0;
73
74 $dbw = $this->getDB( DB_MASTER );
75 $res = $dbw->query( "SHOW TABLES " . $dbw->buildLike( $old, $dbw->anyString() ) );
76 foreach ( $res as $row ) {
77 // XXX: odd syntax. MySQL outputs an oddly cased "Tables of X"
78 // sort of message. Best not to try $row->x stuff...
79 $fields = get_object_vars( $row );
80 // Silly for loop over one field...
81 foreach ( $fields as $table ) {
82 // $old should be regexp safe ([a-zA-Z_])
83 $newTable = preg_replace( '/^' . $old . '/', $new, $table );
84 $this->output( "Renaming table $table to $newTable\n" );
85 $oldTableEnc = $dbw->addIdentifierQuotes( $table );
86 $newTableEnc = $dbw->addIdentifierQuotes( $newTable );
87 $dbw->query( "RENAME TABLE $oldTableEnc TO $newTableEnc" );
88 }
89 $count++;
90 }
91 $this->output( "Done! [$count tables]\n" );
92 }
93}
94
95$maintClass = RenameDbPrefix::class;
96require_once RUN_MAINTENANCE_IF_MAIN;
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
output( $out, $channel=null)
Throw some output to the user.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Maintenance script that changes the prefix of database tables.
getDbType()
Does the script need different DB access? By default, we give Maintenance scripts normal rights to th...
__construct()
Default constructor.
execute()
Do the actual work.
$res
Definition database.txt:21
require_once RUN_MAINTENANCE_IF_MAIN
controlled by the following MediaWiki still creates a BagOStuff but calls it to it are no ops If the cache daemon can t be it should also disable itself fairly $wgDBname
const DB_MASTER
Definition defines.php:26
$maintClass