3 * Convert user options to the new `user_properties` table.
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.
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.
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
21 * @ingroup Maintenance
24 require_once __DIR__
. '/Maintenance.php';
26 use Wikimedia\Rdbms\ResultWrapper
;
29 * Maintenance script to convert user options to the new `user_properties` table.
31 * @ingroup Maintenance
33 class ConvertUserOptions
extends Maintenance
{
35 private $mConversionCount = 0;
37 public function __construct() {
38 parent
::__construct();
39 $this->addDescription( 'Convert user options from old to new system' );
40 $this->setBatchSize( 50 );
43 public function execute() {
44 $this->output( "...batch conversion of user_options: " );
46 $dbw = $this->getDB( DB_MASTER
);
48 if ( !$dbw->fieldExists( 'user', 'user_options', __METHOD__
) ) {
49 $this->output( "nothing to migrate. " );
53 while ( $id !== null ) {
54 $res = $dbw->select( 'user',
55 [ 'user_id', 'user_options' ],
57 'user_id > ' . $dbw->addQuotes( $id ),
58 "user_options != " . $dbw->addQuotes( '' ),
62 'ORDER BY' => 'user_id',
63 'LIMIT' => $this->mBatchSize
,
66 $id = $this->convertOptionBatch( $res, $dbw );
71 $this->output( "--Converted to ID $id\n" );
74 $this->output( "done. Converted " . $this->mConversionCount
. " user records.\n" );
78 * @param ResultWrapper $res
79 * @param Database $dbw
82 function convertOptionBatch( $res, $dbw ) {
84 foreach ( $res as $row ) {
85 $this->mConversionCount++
;
87 foreach ( explode( "\n", $row->user_options
) as $s ) {
89 if ( !preg_match( "/^(.[^=]*)=(.*)$/", $s, $m ) ) {
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 ) {
98 'up_user' => $row->user_id
,
99 'up_property' => $m[1],
105 if ( count( $insertRows ) ) {
106 $dbw->insert( 'user_properties', $insertRows, __METHOD__
, [ 'IGNORE' ] );
111 [ 'user_options' => '' ],
112 [ 'user_id' => $row->user_id
],
122 $maintClass = "ConvertUserOptions";
123 require_once RUN_MAINTENANCE_IF_MAIN
;