resourceloader: Remove obsolete msg_resource_links table
[lhc/web/wiklou.git] / includes / installer / MssqlUpdater.php
1 <?php
2 /**
3 * Microsoft SQL Server-specific installer.
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 Deployment
22 */
23
24 /**
25 * Class for setting up the MediaWiki database using Microsoft SQL Server.
26 *
27 * @ingroup Deployment
28 * @since 1.23
29 */
30
31 class MssqlUpdater extends DatabaseUpdater {
32
33 /**
34 * @var DatabaseMssql
35 */
36 protected $db;
37
38 protected function getCoreUpdateList() {
39 return array(
40 // 1.23
41 array( 'addField', 'mwuser', 'user_password_expires', 'patch-user_password_expires.sql' ),
42
43 // 1.24
44 array( 'addField', 'page', 'page_lang', 'patch-page-page_lang.sql' ),
45
46 // 1.25
47 array( 'dropTable', 'hitcounter' ),
48 array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ),
49 array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ),
50 // Constraint updates
51 array( 'updateConstraints', 'category_types', 'categorylinks', 'cl_type' ),
52 array( 'updateConstraints', 'major_mime', 'filearchive', 'fa_major_mime' ),
53 array( 'updateConstraints', 'media_type', 'filearchive', 'fa_media_type' ),
54 array( 'updateConstraints', 'major_mime', 'oldimage', 'oi_major_mime' ),
55 array( 'updateConstraints', 'media_type', 'oldimage', 'oi_media_type' ),
56 array( 'updateConstraints', 'major_mime', 'image', 'img_major_mime' ),
57 array( 'updateConstraints', 'media_type', 'image', 'img_media_type' ),
58 array( 'updateConstraints', 'media_type', 'uploadstash', 'us_media_type' ),
59 // END: Constraint updates
60
61 array( 'modifyField', 'image', 'img_major_mime',
62 'patch-img_major_mime-chemical.sql' ),
63 array( 'modifyField', 'oldimage', 'oi_major_mime',
64 'patch-oi_major_mime-chemical.sql' ),
65 array( 'modifyField', 'filearchive', 'fa_major_mime',
66 'patch-fa_major_mime-chemical.sql' ),
67
68 // 1.27
69 array( 'dropTable', 'msg_resource_links' ),
70 );
71 }
72
73 /**
74 * Drops unnamed and creates named constraints following the pattern
75 * <column>_ckc
76 *
77 * @param string $constraintType
78 * @param string $table Name of the table to which the field belongs
79 * @param string $field Name of the field to modify
80 * @return bool False if patch is skipped.
81 */
82 protected function updateConstraints( $constraintType, $table, $field ) {
83 global $wgDBname, $wgDBmwschema;
84
85 if ( !$this->doTable( $table ) ) {
86 return true;
87 }
88
89 $this->output( "...updating constraints on [$table].[$field] ..." );
90 $updateKey = "$field-$constraintType-ck";
91 if ( !$this->db->tableExists( $table, __METHOD__ ) ) {
92 $this->output( "...$table table does not exist, skipping modify field patch.\n" );
93 return true;
94 } elseif ( !$this->db->fieldExists( $table, $field, __METHOD__ ) ) {
95 $this->output( "...$field field does not exist in $table table, " .
96 "skipping modify field patch.\n" );
97 return true;
98 } elseif ( $this->updateRowExists( $updateKey ) ) {
99 $this->output( "...$field in table $table already patched.\n" );
100 return true;
101 }
102
103 # After all checks passed, start the update
104 $this->insertUpdateRow( $updateKey );
105 $path = 'named_constraints.sql';
106 $constraintMap = array(
107 'category_types' =>
108 "($field in('page', 'subcat', 'file'))",
109 'major_mime' =>
110 "($field in('unknown', 'application', 'audio', 'image', 'text', 'video'," .
111 " 'message', 'model', 'multipart'))",
112 'media_type' =>
113 "($field in('UNKNOWN', 'BITMAP', 'DRAWING', 'AUDIO', 'VIDEO', 'MULTIMEDIA'," .
114 "'OFFICE', 'TEXT', 'EXECUTABLE', 'ARCHIVE'))"
115 );
116 $constraint = $constraintMap[$constraintType];
117
118 # and hack-in those variables that should be replaced
119 # in our template file right now
120 $this->db->setSchemaVars( array(
121 'tableName' => $table,
122 'fieldName' => $field,
123 'checkConstraint' => $constraint,
124 'wgDBname' => $wgDBname,
125 'wgDBmwschema' => $wgDBmwschema,
126 ) );
127
128 # Full path from file name
129 $path = $this->db->patchPath( $path );
130
131 # No need for a cursor allowing result-iteration; just apply a patch
132 # store old value for re-setting later
133 $wasScrollable = $this->db->scrollableCursor( false );
134
135 # Apply patch
136 $this->db->sourceFile( $path );
137
138 # Reset DB instance to have original state
139 $this->db->setSchemaVars( false );
140 $this->db->scrollableCursor( $wasScrollable );
141
142 $this->output( "done.\n" );
143
144 return true;
145 }
146 }