MediaWiki  1.30.0
OracleUpdater.php
Go to the documentation of this file.
1 <?php
31 
37  protected $db;
38 
39  protected function getCoreUpdateList() {
40  return [
41  [ 'disableContentHandlerUseDB' ],
42 
43  // 1.17
44  [ 'doNamespaceDefaults' ],
45  [ 'doFKRenameDeferr' ],
46  [ 'doFunctions17' ],
47  [ 'doSchemaUpgrade17' ],
48  [ 'doInsertPage0' ],
49  [ 'doRemoveNotNullEmptyDefaults' ],
50  [ 'addTable', 'user_former_groups', 'patch-user_former_groups.sql' ],
51 
52  // 1.18
53  [ 'addIndex', 'user', 'i02', 'patch-user_email_index.sql' ],
54  [ 'modifyField', 'user_properties', 'up_property', 'patch-up_property.sql' ],
55  [ 'addTable', 'uploadstash', 'patch-uploadstash.sql' ],
56  [ 'doRecentchangesFK2Cascade' ],
57 
58  // 1.19
59  [ 'addIndex', 'logging', 'i05', 'patch-logging_type_action_index.sql' ],
60  [ 'addField', 'revision', 'rev_sha1', 'patch-rev_sha1_field.sql' ],
61  [ 'addField', 'archive', 'ar_sha1', 'patch-ar_sha1_field.sql' ],
62  [ 'doRemoveNotNullEmptyDefaults2' ],
63  [ 'addIndex', 'page', 'i03', 'patch-page_redirect_namespace_len.sql' ],
64  [ 'addField', 'uploadstash', 'us_chunk_inx', 'patch-us_chunk_inx_field.sql' ],
65  [ 'addField', 'job', 'job_timestamp', 'patch-job_timestamp_field.sql' ],
66  [ 'addIndex', 'job', 'i02', 'patch-job_timestamp_index.sql' ],
67  [ 'doPageRestrictionsPKUKFix' ],
68 
69  // 1.20
70  [ 'addIndex', 'ipblocks', 'i05', 'patch-ipblocks_i05_index.sql' ],
71  [ 'addIndex', 'revision', 'i05', 'patch-revision_i05_index.sql' ],
72  [ 'dropField', 'category', 'cat_hidden', 'patch-cat_hidden.sql' ],
73 
74  // 1.21
75  [ 'addField', 'revision', 'rev_content_format',
76  'patch-revision-rev_content_format.sql' ],
77  [ 'addField', 'revision', 'rev_content_model',
78  'patch-revision-rev_content_model.sql' ],
79  [ 'addField', 'archive', 'ar_content_format', 'patch-archive-ar_content_format.sql' ],
80  [ 'addField', 'archive', 'ar_content_model', 'patch-archive-ar_content_model.sql' ],
81  [ 'addField', 'archive', 'ar_id', 'patch-archive-ar_id.sql' ],
82  [ 'addField', 'externallinks', 'el_id', 'patch-externallinks-el_id.sql' ],
83  [ 'addField', 'page', 'page_content_model', 'patch-page-page_content_model.sql' ],
84  [ 'enableContentHandlerUseDB' ],
85  [ 'dropField', 'site_stats', 'ss_admins', 'patch-ss_admins.sql' ],
86  [ 'dropField', 'recentchanges', 'rc_moved_to_title', 'patch-rc_moved.sql' ],
87  [ 'addTable', 'sites', 'patch-sites.sql' ],
88  [ 'addField', 'filearchive', 'fa_sha1', 'patch-fa_sha1.sql' ],
89  [ 'addField', 'job', 'job_token', 'patch-job_token.sql' ],
90  [ 'addField', 'job', 'job_attempts', 'patch-job_attempts.sql' ],
91  [ 'addField', 'uploadstash', 'us_props', 'patch-uploadstash-us_props.sql' ],
92  [ 'modifyField', 'user_groups', 'ug_group', 'patch-ug_group-length-increase-255.sql' ],
93  [ 'modifyField', 'user_former_groups', 'ufg_group',
94  'patch-ufg_group-length-increase-255.sql' ],
95 
96  // 1.23
97  [ 'addIndex', 'logging', 'i06', 'patch-logging_user_text_type_time_index.sql' ],
98  [ 'addIndex', 'logging', 'i07', 'patch-logging_user_text_time_index.sql' ],
99  [ 'addField', 'user', 'user_password_expires', 'patch-user_password_expire.sql' ],
100  [ 'addField', 'page', 'page_links_updated', 'patch-page_links_updated.sql' ],
101  [ 'addField', 'recentchanges', 'rc_source', 'patch-rc_source.sql' ],
102 
103  // 1.24
104  [ 'addField', 'page', 'page_lang', 'patch-page-page_lang.sql' ],
105 
106  // 1.25
107  [ 'dropTable', 'hitcounter' ],
108  [ 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ],
109  [ 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ],
110 
111  // 1.27
112  [ 'dropTable', 'msg_resource_links' ],
113  [ 'dropTable', 'msg_resource' ],
114  [ 'addField', 'watchlist', 'wl_id', 'patch-watchlist-wl_id.sql' ],
115 
116  // 1.28
117  [ 'addIndex', 'recentchanges', 'rc_name_type_patrolled_timestamp',
118  'patch-add-rc_name_type_patrolled_timestamp_index.sql' ],
119  [ 'addField', 'change_tag', 'ct_id', 'patch-change_tag-ct_id.sql' ],
120  [ 'addField', 'tag_summary', 'ts_id', 'patch-tag_summary-ts_id.sql' ],
121 
122  // 1.29
123  [ 'addField', 'externallinks', 'el_index_60', 'patch-externallinks-el_index_60.sql' ],
124  [ 'addField', 'user_groups', 'ug_expiry', 'patch-user_groups-ug_expiry.sql' ],
125 
126  // 1.30
127  [ 'doAutoIncrementTriggers' ],
128  [ 'addIndex', 'site_stats', 'PRIMARY', 'patch-site_stats-pk.sql' ],
129 
130  // KEEP THIS AT THE BOTTOM!!
131  [ 'doRebuildDuplicateFunction' ],
132 
133  ];
134  }
135 
141  protected function doNamespaceDefaults() {
142  $meta = $this->db->fieldInfo( 'page', 'page_namespace' );
143  if ( $meta->defaultValue() != null ) {
144  return;
145  }
146 
147  $this->applyPatch(
148  'patch_namespace_defaults.sql',
149  false,
150  'Altering namespace fields with default value'
151  );
152  }
153 
157  protected function doFKRenameDeferr() {
158  $meta = $this->db->query( '
159  SELECT COUNT(*) cnt
160  FROM user_constraints
161  WHERE constraint_type = \'R\' AND deferrable = \'DEFERRABLE\''
162  );
163  $row = $meta->fetchRow();
164  if ( $row && $row['cnt'] > 0 ) {
165  return;
166  }
167 
168  $this->applyPatch( 'patch_fk_rename_deferred.sql', false, "Altering foreign keys ... " );
169  }
170 
174  protected function doFunctions17() {
175  $this->applyPatch( 'patch_create_17_functions.sql', false, "Recreating functions" );
176  }
177 
182  protected function doSchemaUpgrade17() {
183  // check if iwlinks table exists which was added in 1.17
184  if ( $this->db->tableExists( 'iwlinks' ) ) {
185  return;
186  }
187  $this->applyPatch( 'patch_16_17_schema_changes.sql', false, "Updating schema to 17" );
188  }
189 
193  protected function doInsertPage0() {
194  $this->output( "Inserting page 0 if missing ... " );
195  $row = [
196  'page_id' => 0,
197  'page_namespace' => 0,
198  'page_title' => ' ',
199  'page_is_redirect' => 0,
200  'page_is_new' => 0,
201  'page_random' => 0,
202  'page_touched' => $this->db->timestamp(),
203  'page_latest' => 0,
204  'page_len' => 0
205  ];
206  $this->db->insert( 'page', $row, 'OracleUpdater:doInserPage0', [ 'IGNORE' ] );
207  $this->output( "ok\n" );
208  }
209 
214  protected function doRemoveNotNullEmptyDefaults() {
215  $meta = $this->db->fieldInfo( 'categorylinks', 'cl_sortkey_prefix' );
216  if ( $meta->isNullable() ) {
217  return;
218  }
219  $this->applyPatch(
220  'patch_remove_not_null_empty_defs.sql',
221  false,
222  'Removing not null empty constraints'
223  );
224  }
225 
226  protected function doRemoveNotNullEmptyDefaults2() {
227  $meta = $this->db->fieldInfo( 'ipblocks', 'ipb_by_text' );
228  if ( $meta->isNullable() ) {
229  return;
230  }
231  $this->applyPatch(
232  'patch_remove_not_null_empty_defs2.sql',
233  false,
234  'Removing not null empty constraints'
235  );
236  }
237 
242  protected function doRecentchangesFK2Cascade() {
243  $meta = $this->db->query( 'SELECT 1 FROM all_constraints WHERE owner = \'' .
244  strtoupper( $this->db->getDBname() ) .
245  '\' AND constraint_name = \'' .
246  $this->db->tablePrefix() .
247  'RECENTCHANGES_FK2\' AND delete_rule = \'CASCADE\''
248  );
249  $row = $meta->fetchRow();
250  if ( $row ) {
251  return;
252  }
253 
254  $this->applyPatch( 'patch_recentchanges_fk2_cascade.sql', false, "Altering RECENTCHANGES_FK2" );
255  }
256 
260  protected function doPageRestrictionsPKUKFix() {
261  $this->output( "Altering PAGE_RESTRICTIONS keys ... " );
262 
263  $meta = $this->db->query( 'SELECT column_name FROM all_cons_columns WHERE owner = \'' .
264  strtoupper( $this->db->getDBname() ) .
265  '\' AND constraint_name = \'' .
266  $this->db->tablePrefix() .
267  'PAGE_RESTRICTIONS_PK\' AND rownum = 1'
268  );
269  $row = $meta->fetchRow();
270  if ( $row['column_name'] == 'PR_ID' ) {
271  $this->output( "seems to be up to date.\n" );
272 
273  return;
274  }
275 
276  $this->applyPatch( 'patch-page_restrictions_pkuk_fix.sql', false );
277  $this->output( "ok\n" );
278  }
279 
283  protected function doAutoIncrementTriggers() {
284  $this->output( "Adding auto-increment triggers ... " );
285 
286  $meta = $this->db->query( 'SELECT trigger_name FROM user_triggers WHERE table_owner = \'' .
287  strtoupper( $this->db->getDBname() ) .
288  '\' AND trigger_name = \'' .
289  $this->db->tablePrefix() .
290  'PAGE_DEFAULT_PAGE_ID\''
291  );
292  $row = $meta->fetchRow();
293  if ( $row['column_name'] ) {
294  $this->output( "seems to be up to date.\n" );
295 
296  return;
297  }
298 
299  $this->applyPatch( 'patch-auto_increment_triggers.sql', false );
300 
301  $this->output( "ok\n" );
302  }
303 
307  protected function doRebuildDuplicateFunction() {
308  $this->applyPatch( 'patch_rebuild_dupfunc.sql', false, "Rebuilding duplicate function" );
309  }
310 
316  public function doUpdates( array $what = [ 'core', 'extensions', 'purge', 'stats' ] ) {
317  parent::doUpdates( $what );
318 
319  $this->db->query( 'BEGIN fill_wiki_info; END;' );
320  }
321 
325  public function purgeCache() {
326  # We can't guarantee that the user will be able to use TRUNCATE,
327  # but we know that DELETE is available to us
328  $this->output( "Purging caches..." );
329  $this->db->delete( '/*Q*/' . $this->db->tableName( 'objectcache' ), '*', __METHOD__ );
330  $this->output( "done.\n" );
331  }
332 }
DatabaseUpdater\output
output( $str)
Output some text.
Definition: DatabaseUpdater.php:212
OracleUpdater\doFunctions17
doFunctions17()
Recreate functions to 17 schema layout.
Definition: OracleUpdater.php:174
OracleUpdater\purgeCache
purgeCache()
Overload: because of the DDL_MODE tablename escaping is a bit dodgy.
Definition: OracleUpdater.php:325
DatabaseUpdater\applyPatch
applyPatch( $path, $isFullPath=false, $msg=null)
Applies a SQL patch.
Definition: DatabaseUpdater.php:655
OracleUpdater\doFKRenameDeferr
doFKRenameDeferr()
Uniform FK names + deferrable state.
Definition: OracleUpdater.php:157
DatabaseUpdater
Class for handling database updates.
Definition: DatabaseUpdater.php:36
OracleUpdater\doPageRestrictionsPKUKFix
doPageRestrictionsPKUKFix()
Fixed wrong PK, UK definition.
Definition: OracleUpdater.php:260
OracleUpdater\doRecentchangesFK2Cascade
doRecentchangesFK2Cascade()
Removed forcing of invalid state on recentchanges_fk2.
Definition: OracleUpdater.php:242
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
OracleUpdater\doAutoIncrementTriggers
doAutoIncrementTriggers()
Add auto-increment triggers.
Definition: OracleUpdater.php:283
OracleUpdater
Class for handling updates to Oracle databases.
Definition: OracleUpdater.php:30
DatabaseOracle
Definition: DatabaseOracle.php:33
OracleUpdater\doInsertPage0
doInsertPage0()
Insert page (page_id = 0) to prevent FK constraint violation.
Definition: OracleUpdater.php:193
OracleUpdater\doRemoveNotNullEmptyDefaults
doRemoveNotNullEmptyDefaults()
Remove DEFAULT '' NOT NULL constraints from fields as '' is internally converted to NULL in Oracle.
Definition: OracleUpdater.php:214
OracleUpdater\doSchemaUpgrade17
doSchemaUpgrade17()
Schema upgrade 16->17 there are no incremental patches prior to this.
Definition: OracleUpdater.php:182
OracleUpdater\doRemoveNotNullEmptyDefaults2
doRemoveNotNullEmptyDefaults2()
Definition: OracleUpdater.php:226
OracleUpdater\$db
DatabaseOracle $db
Handle to the database subclass.
Definition: OracleUpdater.php:37
OracleUpdater\getCoreUpdateList
getCoreUpdateList()
Get an array of updates to perform on the database.
Definition: OracleUpdater.php:39
OracleUpdater\doNamespaceDefaults
doNamespaceDefaults()
MySQL uses datatype defaults for NULL inserted into NOT NULL fields In namespace case that results in...
Definition: OracleUpdater.php:141
OracleUpdater\doRebuildDuplicateFunction
doRebuildDuplicateFunction()
rebuilding of the function that duplicates tables for tests
Definition: OracleUpdater.php:307
OracleUpdater\doUpdates
doUpdates(array $what=[ 'core', 'extensions', 'purge', 'stats'])
Overload: after this action field info table has to be rebuilt.
Definition: OracleUpdater.php:316
array
the array() calling protocol came about after MediaWiki 1.4rc1.