Merge "Handle missing namespace prefix in XML dumps more gracefully"
[lhc/web/wiklou.git] / maintenance / convertUserOptions.php
1 <?php
2 /**
3 * Convert user options to the new `user_properties` table.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup Maintenance
22 */
23
24 require_once __DIR__ . '/Maintenance.php';
25
26 use Wikimedia\Rdbms\ResultWrapper;
27
28 /**
29 * Maintenance script to convert user options to the new `user_properties` table.
30 *
31 * @ingroup Maintenance
32 */
33 class ConvertUserOptions extends Maintenance {
34
35 private $mConversionCount = 0;
36
37 public function __construct() {
38 parent::__construct();
39 $this->addDescription( 'Convert user options from old to new system' );
40 $this->setBatchSize( 50 );
41 }
42
43 public function execute() {
44 $this->output( "...batch conversion of user_options: " );
45 $id = 0;
46 $dbw = $this->getDB( DB_MASTER );
47
48 if ( !$dbw->fieldExists( 'user', 'user_options', __METHOD__ ) ) {
49 $this->output( "nothing to migrate. " );
50
51 return;
52 }
53 while ( $id !== null ) {
54 $res = $dbw->select( 'user',
55 [ 'user_id', 'user_options' ],
56 [
57 'user_id > ' . $dbw->addQuotes( $id ),
58 "user_options != " . $dbw->addQuotes( '' ),
59 ],
60 __METHOD__,
61 [
62 'ORDER BY' => 'user_id',
63 'LIMIT' => $this->mBatchSize,
64 ]
65 );
66 $id = $this->convertOptionBatch( $res, $dbw );
67
68 wfWaitForSlaves();
69
70 if ( $id ) {
71 $this->output( "--Converted to ID $id\n" );
72 }
73 }
74 $this->output( "done. Converted " . $this->mConversionCount . " user records.\n" );
75 }
76
77 /**
78 * @param ResultWrapper $res
79 * @param Database $dbw
80 * @return null|int
81 */
82 function convertOptionBatch( $res, $dbw ) {
83 $id = null;
84 foreach ( $res as $row ) {
85 $this->mConversionCount++;
86 $insertRows = [];
87 foreach ( explode( "\n", $row->user_options ) as $s ) {
88 $m = [];
89 if ( !preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
90 continue;
91 }
92
93 // MW < 1.16 would save even default values. Filter them out
94 // here (as in User) to avoid adding many unnecessary rows.
95 $defaultOption = User::getDefaultOption( $m[1] );
96 if ( is_null( $defaultOption ) || $m[2] != $defaultOption ) {
97 $insertRows[] = [
98 'up_user' => $row->user_id,
99 'up_property' => $m[1],
100 'up_value' => $m[2],
101 ];
102 }
103 }
104
105 if ( count( $insertRows ) ) {
106 $dbw->insert( 'user_properties', $insertRows, __METHOD__, [ 'IGNORE' ] );
107 }
108
109 $dbw->update(
110 'user',
111 [ 'user_options' => '' ],
112 [ 'user_id' => $row->user_id ],
113 __METHOD__
114 );
115 $id = $row->user_id;
116 }
117
118 return $id;
119 }
120 }
121
122 $maintClass = "ConvertUserOptions";
123 require_once RUN_MAINTENANCE_IF_MAIN;