41 foreach ( $array_in
as $item ) {
43 if ( !isset( $array_hashes[$hash] ) ) {
44 $array_hashes[$hash] = $hash;
60 $this->nrows = oci_fetch_all( $stmt, $this->rows, 0, -1, OCI_FETCHSTATEMENT_BY_ROW | OCI_NUM );
61 if ( $this->nrows ===
false ) {
62 $e = oci_error( $stmt );
63 $db->reportQueryError(
$e[
'message'],
$e[
'code'],
'', __METHOD__ );
71 $this->nrows = count( $this->rows );
74 if ( $this->nrows > 0 ) {
75 foreach ( $this->rows[0]
as $k => $v ) {
76 $this->columns[$k] = strtolower( oci_field_name( $stmt, $k + 1 ) );
81 oci_free_statement( $stmt );
88 public function seek( $row ) {
89 $this->cursor = min( $row, $this->nrows );
97 return count( $this->columns );
101 if ( $this->cursor >= $this->nrows ) {
104 $row = $this->rows[$this->cursor++];
105 $ret =
new stdClass();
106 foreach ( $row
as $k => $v ) {
107 $lc = $this->columns[$k];
115 if ( $this->cursor >= $this->nrows ) {
119 $row = $this->rows[$this->cursor++];
121 foreach ( $row
as $k => $v ) {
122 $lc = $this->columns[$k];
140 $this->
name = $info[
'column_name'];
141 $this->tablename = $info[
'table_name'];
142 $this->
default = $info[
'data_default'];
143 $this->max_length = $info[
'data_length'];
144 $this->nullable = $info[
'not_null'];
145 $this->is_pk = isset( $info[
'prim'] ) && $info[
'prim'] == 1 ? 1 : 0;
146 $this->is_unique = isset( $info[
'uniq'] ) && $info[
'uniq'] == 1 ? 1 : 0;
147 $this->is_multiple = isset( $info[
'nonuniq'] ) && $info[
'nonuniq'] == 1 ? 1 : 0;
149 $this->
type = $info[
'data_type'];
213 if ( $p[
'tablePrefix'] ==
'get from global' ) {
216 $p[
'tablePrefix'] = strtoupper( $p[
'tablePrefix'] );
217 parent::__construct( $p );
218 Hooks::run(
'DatabaseOraclePostInit', [ $this ] );
222 if ( $this->mOpened ) {
223 MediaWiki\suppressWarnings();
225 MediaWiki\restoreWarnings();
270 function open( $server, $user, $password, $dbName ) {
272 if ( !function_exists(
'oci_connect' ) ) {
275 "Oracle functions missing, have you compiled PHP with the --with-oci8 option?\n " .
276 "(Note: if you recently installed PHP, you may need to restart your webserver\n " .
281 $this->mUser =
$user;
282 $this->mPassword = $password;
288 $this->mServer = $dbName;
289 $this->mDBname =
$user;
291 $this->mServer = $server;
293 $this->mDBname =
$user;
295 $this->mDBname = $dbName;
299 if ( !strlen(
$user ) ) { #
e.g.
the class is being loaded
307 $session_mode = $this->mFlags &
DBO_SYSDBA ? OCI_SYSDBA : OCI_DEFAULT;
309 MediaWiki\suppressWarnings();
311 $this->mConn = oci_pconnect(
315 $this->defaultCharset,
319 $this->mConn = oci_new_connect(
323 $this->defaultCharset,
327 $this->mConn = oci_connect(
331 $this->defaultCharset,
335 MediaWiki\restoreWarnings();
337 if ( $this->mUser != $this->mDBname ) {
342 if ( !$this->mConn ) {
346 $this->mOpened =
true;
348 # removed putenv calls because they interfere with the system globaly
349 $this->
doQuery(
'ALTER SESSION SET NLS_TIMESTAMP_FORMAT=\'DD-MM-YYYY HH24:MI:SS.FF6\'' );
350 $this->
doQuery(
'ALTER SESSION SET NLS_TIMESTAMP_TZ_FORMAT=\'DD-MM-YYYY HH24:MI:SS.FF6\'' );
351 $this->
doQuery(
'ALTER SESSION SET NLS_NUMERIC_CHARACTERS=\'.,\'' );
362 return oci_close( $this->mConn );
366 return $this->mTrxLevel ? OCI_NO_AUTO_COMMIT : OCI_COMMIT_ON_SUCCESS;
372 throw new MWException(
"SQL encoding is invalid\n$sql" );
378 $sql = preg_replace(
'/ as /i',
' ', $sql );
383 $union_unique = ( preg_match(
'/\/\* UNION_UNIQUE \*\/ /', $sql ) != 0 );
390 'EXPLAIN PLAN SET STATEMENT_ID = \'' . $explain_id .
'\' FOR
',
396 MediaWiki\suppressWarnings();
398 $this->mLastResult = $stmt = oci_parse( $this->mConn, $sql );
399 if ( $stmt === false ) {
400 $e = oci_error( $this->mConn );
401 $this->reportQueryError( $e['message'], $e['code'], $sql, __METHOD__ );
406 if ( !oci_execute( $stmt, $this->execFlags() ) ) {
407 $e = oci_error( $stmt );
408 if ( !$this->ignoreDupValOnIndex || $e['code'] != '1
' ) {
409 $this->reportQueryError( $e['message'], $e['code'], $sql, __METHOD__ );
415 MediaWiki\restoreWarnings();
417 if ( $explain_count > 0 ) {
418 return $this->doQuery( 'SELECT
id, cardinality
"ROWS" FROM plan_table
' .
419 'WHERE statement_id = \
'' . $explain_id .
'\'' );
420 } elseif ( oci_statement_type( $stmt ) ==
'SELECT' ) {
421 return new ORAResult( $this, $stmt, $union_unique );
423 $this->mAffectedRows = oci_num_rows( $stmt );
454 return $res->fetchObject();
462 return $res->fetchRow();
470 return $res->numRows();
478 return $res->numFields();
482 return oci_field_name( $stmt, $n );
490 return $this->mInsertId;
501 $res->result->seek( $row );
506 if ( $this->mConn ===
false ) {
509 $e = oci_error( $this->mConn );
512 return $e[
'message'];
516 if ( $this->mConn ===
false ) {
519 $e = oci_error( $this->mConn );
526 return $this->mAffectedRows;
546 if ( !count( $a ) ) {
554 if ( in_array(
'IGNORE',
$options ) ) {
555 $this->ignoreDupValOnIndex =
true;
558 if ( !is_array( reset( $a ) ) ) {
562 foreach ( $a
as &$row ) {
563 $this->insertOneRow( $table, $row,
$fname );
567 if ( in_array(
'IGNORE',
$options ) ) {
568 $this->ignoreDupValOnIndex =
false;
575 $col_info = $this->fieldInfoMulti( $table, $col );
576 $col_type = $col_info !=
false ? $col_info->type() :
'CONSTANT';
579 if ( is_numeric( $col ) ) {
584 } elseif ( $includeCol ) {
588 if ( $val ==
'' && $val !== 0 && $col_type !=
'BLOB' && $col_type !=
'CLOB' ) {
592 if ( $val ===
'NULL' ) {
596 if ( $val ===
null ) {
597 if ( $col_info !=
false && $col_info->isNullable() == 0 && $col_info->defaultValue() !=
null ) {
621 $sql =
"INSERT INTO " . $table .
" (" . implode(
',', array_keys( $row ) ) .
')';
626 foreach ( $row
as $col => &$val ) {
632 if ( $this->isQuotedIdentifier( $val ) ) {
633 $sql .= $this->removeIdentifierQuotes( $val );
636 $sql .= $this->fieldBindStatement( $table, $col, $val );
641 $this->mLastResult = $stmt = oci_parse( $this->mConn, $sql );
642 if ( $stmt ===
false ) {
643 $e = oci_error( $this->mConn );
644 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
648 foreach ( $row
as $col => &$val ) {
649 $col_info = $this->fieldInfoMulti( $table, $col );
650 $col_type = $col_info !=
false ? $col_info->type() :
'CONSTANT';
652 if ( $val ===
null ) {
654 } elseif ( $col_type !=
'BLOB' && $col_type !=
'CLOB' ) {
655 if ( is_object( $val ) ) {
656 $val = $val->fetch();
660 if ( preg_match(
'/^timestamp.*/i', $col_type ) == 1 && strtolower( $val ) ==
'infinity' ) {
661 $val = $this->getInfinity();
665 if ( oci_bind_by_name( $stmt,
":$col", $val, -1, SQLT_CHR ) ===
false ) {
666 $e = oci_error( $stmt );
667 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
673 $lob[$col] = oci_new_descriptor( $this->mConn, OCI_D_LOB );
674 if ( $lob[$col] ===
false ) {
675 $e = oci_error( $stmt );
679 if ( is_object( $val ) ) {
680 $val = $val->fetch();
683 if ( $col_type ==
'BLOB' ) {
684 $lob[$col]->writeTemporary( $val, OCI_TEMP_BLOB );
685 oci_bind_by_name( $stmt,
":$col", $lob[$col], -1, OCI_B_BLOB );
687 $lob[$col]->writeTemporary( $val, OCI_TEMP_CLOB );
688 oci_bind_by_name( $stmt,
":$col", $lob[$col], -1, OCI_B_CLOB );
693 MediaWiki\suppressWarnings();
695 if ( oci_execute( $stmt, $this->execFlags() ) ===
false ) {
696 $e = oci_error( $stmt );
697 if ( !$this->ignoreDupValOnIndex ||
$e[
'code'] !=
'1' ) {
698 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
702 $this->mAffectedRows = oci_num_rows( $stmt );
705 $this->mAffectedRows = oci_num_rows( $stmt );
708 MediaWiki\restoreWarnings();
710 if ( isset( $lob ) ) {
711 foreach ( $lob
as $lob_v ) {
716 if ( !$this->mTrxLevel ) {
717 oci_commit( $this->mConn );
720 return oci_free_statement( $stmt );
724 $insertOptions = [], $selectOptions = []
726 $destTable = $this->
tableName( $destTable );
727 if ( !is_array( $selectOptions ) ) {
728 $selectOptions = [ $selectOptions ];
730 list( $startOpts, $useIndex, $tailOpts ) = $this->makeSelectOptions( $selectOptions );
731 if ( is_array( $srcTable ) ) {
732 $srcTable = implode(
',', array_map( [ $this,
'tableName' ], $srcTable ) );
734 $srcTable = $this->
tableName( $srcTable );
737 $sequenceData = $this->getSequenceData( $destTable );
738 if ( $sequenceData !==
false &&
739 !isset( $varMap[$sequenceData[
'column']] )
741 $varMap[$sequenceData[
'column']] =
'GET_SEQUENCE_VALUE(\'' . $sequenceData[
'sequence'] .
'\')
';
744 // count-alias subselect fields to avoid abigious definition errors
746 foreach ( $varMap as &$val ) {
747 $val = $val . ' field
' . ( $i++ );
750 $sql = "INSERT INTO $destTable (" . implode( ',
', array_keys( $varMap ) ) . ')
' .
751 " SELECT $startOpts " . implode( ',
', $varMap ) .
752 " FROM $srcTable $useIndex ";
753 if ( $conds != '*
' ) {
754 $sql .= ' WHERE
' . $this->makeList( $conds, LIST_AND );
756 $sql .= " $tailOpts";
758 if ( in_array( 'IGNORE
', $insertOptions ) ) {
759 $this->ignoreDupValOnIndex = true;
762 $retval = $this->query( $sql, $fname );
764 if ( in_array( 'IGNORE
', $insertOptions ) ) {
765 $this->ignoreDupValOnIndex = false;
771 public function upsert( $table, array $rows, array $uniqueIndexes, array $set,
774 if ( !count( $rows ) ) {
775 return true; // nothing to do
778 if ( !is_array( reset( $rows ) ) ) {
782 $sequenceData = $this->getSequenceData( $table );
783 if ( $sequenceData !== false ) {
784 // add sequence column to each list of columns, when not set
785 foreach ( $rows as &$row ) {
786 if ( !isset( $row[$sequenceData['column']] ) ) {
787 $row[$sequenceData['column']] =
788 $this->addIdentifierQuotes( 'GET_SEQUENCE_VALUE(\
'' .
789 $sequenceData[
'sequence'] .
'\')
' );
794 return parent::upsert( $table, $rows, $uniqueIndexes, $set, $fname );
797 function tableName( $name, $format = 'quoted
' ) {
799 Replace reserved words with better ones
800 Using uppercase because that's
the only way Oracle can handle
808 $name =
'PAGECONTENT';
812 return strtoupper( parent::tableName( $name, $format ) );
818 return preg_replace(
'/.*\.(.*)/',
'$1',
$name );
828 $res = $this->
query(
"SELECT $seqName.nextval FROM dual" );
829 $row = $this->fetchRow(
$res );
830 $this->mInsertId = $row[0];
832 return $this->mInsertId;
842 if ( $this->sequenceData ==
null ) {
843 $result = $this->doQuery(
"SELECT lower(asq.sequence_name),
844 lower(atc.table_name),
845 lower(atc.column_name)
846 FROM all_sequences asq, all_tab_columns atc
849 '{$this->mTablePrefix}MWUSER',
850 '{$this->mTablePrefix}USER',
853 atc.column_name || '_SEQ' = '{$this->mTablePrefix}' || asq.sequence_name
854 AND asq.sequence_owner = upper('{$this->mDBname}')
855 AND atc.owner = upper('{$this->mDBname}')" );
857 while ( ( $row =
$result->fetchRow() ) !==
false ) {
858 $this->sequenceData[$row[1]] = [
859 'sequence' => $row[0],
864 $table = strtolower( $this->removeIdentifierQuotes( $this->
tableName( $table ) ) );
866 return ( isset( $this->sequenceData[$table] ) ) ? $this->sequenceData[$table] :
false;
877 $fieldInfoData = $this->fieldInfo( $table, $field );
879 return $fieldInfoData->maxLength();
883 if ( $offset ===
false ) {
887 return "SELECT * FROM ($sql) WHERE rownum >= (1 + $offset) AND rownum < (1 + $limit + $offset)";
891 return new Blob( $b );
895 if ( $b instanceof
Blob ) {
903 $glue =
' UNION ALL ';
905 return 'SELECT * ' . ( $all ?
'' :
'/* UNION_UNIQUE */ ' ) .
906 'FROM (' . implode( $glue, $sqls ) .
')';
910 return $this->lastErrno() ==
'OCI-00060';
916 $temporary = $temporary ?
'TRUE' :
'FALSE';
918 $newName = strtoupper( $newName );
919 $oldName = strtoupper( $oldName );
921 $tabName = substr( $newName, strlen( $this->mTablePrefix ) );
922 $oldPrefix = substr( $oldName, 0, strlen( $oldName ) - strlen( $tabName ) );
923 $newPrefix = strtoupper( $this->mTablePrefix );
925 return $this->doQuery(
"BEGIN DUPLICATE_TABLE( '$tabName', " .
926 "'$oldPrefix', '$newPrefix', $temporary ); END;" );
931 if ( !empty( $prefix ) ) {
932 $listWhere =
' AND table_name LIKE \'' . strtoupper( $prefix ) .
'%\'';
935 $owner = strtoupper( $this->mDBname );
936 $result = $this->doQuery(
"SELECT table_name FROM all_tables " .
937 "WHERE owner='$owner' AND table_name NOT LIKE '%!_IDX\$_' ESCAPE '!' $listWhere" );
941 $endArray[] = strtoupper( $prefix .
'MWUSER' );
942 $endArray[] = strtoupper( $prefix .
'PAGE' );
943 $endArray[] = strtoupper( $prefix .
'IMAGE' );
944 $fixedOrderTabs = $endArray;
945 while ( ( $row =
$result->fetchRow() ) !==
false ) {
946 if ( !in_array( $row[
'table_name'], $fixedOrderTabs ) ) {
947 $endArray[] = $row[
'table_name'];
954 public function dropTable( $tableName, $fName = __METHOD__ ) {
955 $tableName = $this->
tableName( $tableName );
956 if ( !$this->tableExists( $tableName ) ) {
960 return $this->doQuery(
"DROP TABLE $tableName CASCADE CONSTRAINTS PURGE" );
982 return '[{{int:version-db-oracle-url}} Oracle]';
990 $rset = $this->doQuery(
991 'SELECT version FROM product_component_version ' .
992 'WHERE UPPER(product) LIKE \'ORACLE DATABASE%\''
994 $row = $rset->fetchRow();
996 return oci_server_version( $this->mConn );
999 return $row[
'version'];
1011 $table = strtoupper( $this->removeIdentifierQuotes( $table ) );
1012 $index = strtoupper( $index );
1013 $owner = strtoupper( $this->mDBname );
1014 $sql =
"SELECT 1 FROM all_indexes WHERE owner='$owner' AND index_name='{$table}_{$index}'";
1015 $res = $this->doQuery( $sql );
1034 $table = $this->addQuotes( strtoupper( $this->removeIdentifierQuotes( $table ) ) );
1035 $owner = $this->addQuotes( strtoupper( $this->mDBname ) );
1036 $sql =
"SELECT 1 FROM all_tables WHERE owner=$owner AND table_name=$table";
1037 $res = $this->doQuery( $sql );
1038 if (
$res &&
$res->numRows() > 0 ) {
1060 $field = strtoupper( $field );
1061 if ( is_array( $table ) ) {
1062 $table = array_map( [ $this,
'tableNameInternal' ], $table );
1063 $tableWhere =
'IN (';
1064 foreach ( $table
as &$singleTable ) {
1065 $singleTable = $this->removeIdentifierQuotes( $singleTable );
1066 if ( isset( $this->mFieldInfoCache[
"$singleTable.$field"] ) ) {
1067 return $this->mFieldInfoCache[
"$singleTable.$field"];
1069 $tableWhere .=
'\'' . $singleTable .
'\',
';
1071 $tableWhere = rtrim( $tableWhere, ',
' ) . ')
';
1073 $table = $this->removeIdentifierQuotes( $this->tableNameInternal( $table ) );
1074 if ( isset( $this->mFieldInfoCache["$table.$field"] ) ) {
1075 return $this->mFieldInfoCache["$table.$field"];
1077 $tableWhere = '= \
'' . $table .
'\'';
1080 $fieldInfoStmt = oci_parse(
1082 'SELECT * FROM wiki_field_info_full WHERE table_name ' .
1083 $tableWhere .
' and column_name = \'' . $field .
'\''
1085 if ( oci_execute( $fieldInfoStmt, $this->execFlags() ) ===
false ) {
1086 $e = oci_error( $fieldInfoStmt );
1087 $this->reportQueryError(
$e[
'message'],
$e[
'code'],
'fieldInfo QUERY', __METHOD__ );
1092 if (
$res->numRows() == 0 ) {
1093 if ( is_array( $table ) ) {
1094 foreach ( $table
as &$singleTable ) {
1095 $this->mFieldInfoCache[
"$singleTable.$field"] =
false;
1098 $this->mFieldInfoCache[
"$table.$field"] =
false;
1100 $fieldInfoTemp =
null;
1103 $table = $fieldInfoTemp->tableName();
1104 $this->mFieldInfoCache[
"$table.$field"] = $fieldInfoTemp;
1108 return $fieldInfoTemp;
1118 if ( is_array( $table ) ) {
1119 throw new DBUnexpectedError( $this,
'DatabaseOracle::fieldInfo called with table array!' );
1122 return $this->fieldInfoMulti( $table, $field );
1126 $this->mTrxLevel = 1;
1127 $this->doQuery(
'SET CONSTRAINTS ALL DEFERRED' );
1131 if ( $this->mTrxLevel ) {
1132 $ret = oci_commit( $this->mConn );
1136 $this->mTrxLevel = 0;
1137 $this->doQuery(
'SET CONSTRAINTS ALL IMMEDIATE' );
1142 if ( $this->mTrxLevel ) {
1143 oci_rollback( $this->mConn );
1144 $this->mTrxLevel = 0;
1145 $this->doQuery(
'SET CONSTRAINTS ALL IMMEDIATE' );
1159 function sourceStream( $fp, $lineCallback =
false, $resultCallback =
false,
1160 $fname = __METHOD__, $inputCallback =
false ) {
1163 $dollarquote =
false;
1167 while ( !feof( $fp ) ) {
1168 if ( $lineCallback ) {
1169 call_user_func( $lineCallback );
1171 $line = trim( fgets( $fp, 1024 ) );
1172 $sl = strlen(
$line ) - 1;
1182 if ( substr(
$line, 0, 8 ) ==
'/*$mw$*/' ) {
1183 if ( $dollarquote ) {
1184 $dollarquote =
false;
1185 $line = str_replace(
'/*$mw$*/',
'',
$line );
1188 $dollarquote =
true;
1190 } elseif ( !$dollarquote ) {
1191 if (
';' ==
$line[$sl] && ( $sl < 2 ||
';' !=
$line[$sl - 1] ) ) {
1203 $cmd = str_replace(
';;',
";", $cmd );
1204 if ( strtolower( substr( $cmd, 0, 6 ) ) ==
'define' ) {
1205 if ( preg_match(
'/^define\s*([^\s=]*)\s*=\s*\'\{\$([^\}]*)\}\'/', $cmd, $defines ) ) {
1206 $replacements[$defines[2]] = $defines[1];
1209 foreach ( $replacements
as $mwVar => $scVar ) {
1210 $cmd = str_replace(
'&' . $scVar .
'.',
'`{$' . $mwVar .
'}`', $cmd );
1213 $cmd = $this->replaceVars( $cmd );
1214 if ( $inputCallback ) {
1215 call_user_func( $inputCallback, $cmd );
1217 $res = $this->doQuery( $cmd );
1218 if ( $resultCallback ) {
1219 call_user_func( $resultCallback,
$res, $this );
1222 if (
false ===
$res ) {
1223 $err = $this->lastError();
1225 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
1238 $this->mDBname = $db;
1239 if ( $db ==
null || $db == $this->mUser ) {
1242 $sql =
'ALTER SESSION SET CURRENT_SCHEMA=' . strtoupper( $db );
1243 $stmt = oci_parse( $this->mConn, $sql );
1244 MediaWiki\suppressWarnings();
1246 MediaWiki\restoreWarnings();
1248 $e = oci_error( $stmt );
1249 if (
$e[
'code'] !=
'1435' ) {
1250 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
1260 return str_replace(
"'",
"''",
$s );
1269 return "'" . $this->strencode(
$s ) .
"'";
1281 return strpos(
$s,
'/*Q*/' ) ===
false ?
$s : substr(
$s, 5 );
1285 return strpos(
$s,
'/*Q*/' ) !==
false;
1291 $col_info = $this->fieldInfoMulti( $table, $col );
1292 $col_type = $col_info !=
false ? $col_info->type() :
'CONSTANT';
1293 if ( $col_type ==
'CLOB' ) {
1294 $col =
'TO_CHAR(' . $col .
')';
1296 } elseif ( $col_type ==
'VARCHAR2' ) {
1303 foreach ( $conds
as $col => $val ) {
1304 if ( is_array( $val ) ) {
1305 $conds2[$col] = $this->wrapConditionsForWhere( $table, $val, $col );
1307 if ( is_numeric( $col ) && $parentCol !=
null ) {
1308 $this->wrapFieldForWhere( $table, $parentCol, $val );
1310 $this->wrapFieldForWhere( $table, $col, $val );
1312 $conds2[$col] = $val;
1322 if ( is_array( $conds ) ) {
1323 $conds = $this->wrapConditionsForWhere( $table, $conds );
1338 $preLimitTail = $postLimitTail =
'';
1343 if ( is_numeric( $key ) ) {
1344 $noKeyOptions[$option] =
true;
1348 $preLimitTail .= $this->makeGroupByWithHaving(
$options );
1350 $preLimitTail .= $this->makeOrderBy(
$options );
1352 if ( isset( $noKeyOptions[
'FOR UPDATE'] ) ) {
1353 $postLimitTail .=
' FOR UPDATE';
1356 if ( isset( $noKeyOptions[
'DISTINCT'] ) || isset( $noKeyOptions[
'DISTINCTROW'] ) ) {
1357 $startOpts .=
'DISTINCT';
1360 if ( isset(
$options[
'USE INDEX'] ) && !is_array(
$options[
'USE INDEX'] ) ) {
1361 $useIndex = $this->useIndexClause(
$options[
'USE INDEX'] );
1366 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail ];
1369 public function delete( $table, $conds,
$fname = __METHOD__ ) {
1370 if ( is_array( $conds ) ) {
1371 $conds = $this->wrapConditionsForWhere( $table, $conds );
1376 if ( $table == $this->
tableName(
'user' ) ) {
1377 $this->update(
'archive', [
'ar_user' => 0 ],
1378 [
'ar_user' => $conds[
'user_id'] ],
$fname );
1379 $this->update(
'ipblocks', [
'ipb_user' => 0 ],
1380 [
'ipb_user' => $conds[
'user_id'] ],
$fname );
1381 $this->update(
'image', [
'img_user' => 0 ],
1382 [
'img_user' => $conds[
'user_id'] ],
$fname );
1383 $this->update(
'oldimage', [
'oi_user' => 0 ],
1384 [
'oi_user' => $conds[
'user_id'] ],
$fname );
1385 $this->update(
'filearchive', [
'fa_deleted_user' => 0 ],
1386 [
'fa_deleted_user' => $conds[
'user_id'] ],
$fname );
1387 $this->update(
'filearchive', [
'fa_user' => 0 ],
1388 [
'fa_user' => $conds[
'user_id'] ],
$fname );
1389 $this->update(
'uploadstash', [
'us_user' => 0 ],
1390 [
'us_user' => $conds[
'user_id'] ],
$fname );
1391 $this->update(
'recentchanges', [
'rc_user' => 0 ],
1392 [
'rc_user' => $conds[
'user_id'] ],
$fname );
1393 $this->update(
'logging', [
'log_user' => 0 ],
1394 [
'log_user' => $conds[
'user_id'] ],
$fname );
1395 } elseif ( $table == $this->
tableName(
'image' ) ) {
1396 $this->update(
'oldimage', [
'oi_name' => 0 ],
1397 [
'oi_name' => $conds[
'img_name'] ],
$fname );
1400 return parent::delete( $table, $conds,
$fname );
1416 $opts = $this->makeUpdateOptions(
$options );
1417 $sql =
"UPDATE $opts $table SET ";
1420 foreach ( $values
as $col => &$val ) {
1421 $sqlSet = $this->fieldBindStatement( $table, $col, $val,
true );
1424 $sqlSet =
', ' . $sqlSet;
1431 if ( $conds !== [] && $conds !==
'*' ) {
1432 $conds = $this->wrapConditionsForWhere( $table, $conds );
1433 $sql .=
' WHERE ' . $this->makeList( $conds,
LIST_AND );
1436 $this->mLastResult = $stmt = oci_parse( $this->mConn, $sql );
1437 if ( $stmt ===
false ) {
1438 $e = oci_error( $this->mConn );
1439 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
1443 foreach ( $values
as $col => &$val ) {
1444 $col_info = $this->fieldInfoMulti( $table, $col );
1445 $col_type = $col_info !=
false ? $col_info->type() :
'CONSTANT';
1447 if ( $val ===
null ) {
1449 } elseif ( $col_type !=
'BLOB' && $col_type !=
'CLOB' ) {
1450 if ( is_object( $val ) ) {
1451 $val = $val->getData();
1454 if ( preg_match(
'/^timestamp.*/i', $col_type ) == 1 && strtolower( $val ) ==
'infinity' ) {
1455 $val =
'31-12-2030 12:00:00.000000';
1459 if ( oci_bind_by_name( $stmt,
":$col", $val ) ===
false ) {
1460 $e = oci_error( $stmt );
1461 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
1467 $lob[$col] = oci_new_descriptor( $this->mConn, OCI_D_LOB );
1468 if ( $lob[$col] ===
false ) {
1469 $e = oci_error( $stmt );
1473 if ( is_object( $val ) ) {
1474 $val = $val->getData();
1477 if ( $col_type ==
'BLOB' ) {
1478 $lob[$col]->writeTemporary( $val );
1479 oci_bind_by_name( $stmt,
":$col", $lob[$col], -1, SQLT_BLOB );
1481 $lob[$col]->writeTemporary( $val );
1482 oci_bind_by_name( $stmt,
":$col", $lob[$col], -1, OCI_B_CLOB );
1487 MediaWiki\suppressWarnings();
1489 if ( oci_execute( $stmt, $this->execFlags() ) ===
false ) {
1490 $e = oci_error( $stmt );
1491 if ( !$this->ignoreDupValOnIndex ||
$e[
'code'] !=
'1' ) {
1492 $this->reportQueryError(
$e[
'message'],
$e[
'code'], $sql, __METHOD__ );
1496 $this->mAffectedRows = oci_num_rows( $stmt );
1499 $this->mAffectedRows = oci_num_rows( $stmt );
1502 MediaWiki\restoreWarnings();
1504 if ( isset( $lob ) ) {
1505 foreach ( $lob
as $lob_v ) {
1510 if ( !$this->mTrxLevel ) {
1511 oci_commit( $this->mConn );
1514 return oci_free_statement( $stmt );
1519 return 'BITNOT(' . $field .
')';
1523 return 'BITAND(' . $fieldLeft .
', ' . $fieldRight .
')';
1526 function bitOr( $fieldLeft, $fieldRight ) {
1527 return 'BITOR(' . $fieldLeft .
', ' . $fieldRight .
')';
1531 return $this->mDBname;
1535 return $this->mServer;
1539 $delim, $table, $field, $conds =
'', $join_conds = []
1541 $fld =
"LISTAGG($field," . $this->addQuotes( $delim ) .
") WITHIN GROUP (ORDER BY $field)";
1543 return '(' . $this->selectSQLText( $table, $fld, $conds,
null, [], $join_conds ) .
')';
1547 return 'SearchOracle';
1551 return '31-12-2030 12:00:00.000000';
$wgDBprefix
Table name prefix.
$wgDBOracleDRCP
Set true to enable Oracle DCRP (supported from 11gR1 onward)
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
const TS_ORACLE
Oracle format time.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
return[ 'SiteStore'=> function(MediaWikiServices $services) { $loadBalancer=wfGetLB();$rawSiteStore=new DBSiteStore( $loadBalancer);$cache=wfGetCache(wfIsHHVM() ? CACHE_ACCEL :CACHE_ANYTHING);return new CachingSiteStore( $rawSiteStore, $cache);}, 'SiteLookup'=> function(MediaWikiServices $services) { return $services->getSiteStore();}, 'ConfigFactory'=> function(MediaWikiServices $services) { $registry=$services->getBootstrapConfig() ->get( 'ConfigRegistry');$factory=new ConfigFactory();foreach( $registry as $name=> $callback) { $factory->register( $name, $callback);} return $factory;}, 'MainConfig'=> function(MediaWikiServices $services) { return $services->getConfigFactory() ->makeConfig( 'main');}, 'StatsdDataFactory'=> function(MediaWikiServices $services) { return new BufferingStatsdDataFactory(rtrim( $services->getMainConfig() ->get( 'StatsdMetricPrefix'), '.'));}, 'EventRelayerGroup'=> function(MediaWikiServices $services) { return new EventRelayerGroup( $services->getMainConfig() ->get( 'EventRelayerConfig'));}, 'SearchEngineFactory'=> function(MediaWikiServices $services) { return new SearchEngineFactory( $services->getSearchEngineConfig());}, 'SearchEngineConfig'=> function(MediaWikiServices $services) { global $wgContLang;return new SearchEngineConfig( $services->getMainConfig(), $wgContLang);}, 'SkinFactory'=> function(MediaWikiServices $services) { return new SkinFactory();},]
if(!defined( 'MEDIAWIKI')) $fname
This file is not a valid entry point, perform no further processing unless MEDIAWIKI is defined.
resource $mConn
Database connection.
close()
Closes a database connection.
getFlag( $flag)
Returns a boolean whether the flag $flag is set for this connection.
setFlag( $flag)
Set a flag for this connection.
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table Note that unlike most database abstract...
removeIdentifierQuotes( $s)
doBegin( $fname=__METHOD__)
Issues the BEGIN command to the database server.
lastErrno()
Get the last error number.
addIdentifierQuotes( $s)
Quotes an identifier using backticks or "double quotes" depending on the database type.
bitAnd( $fieldLeft, $fieldRight)
wrapFieldForWhere( $table, &$col, &$val)
indexExists( $table, $index, $fname=__METHOD__)
Query whether a given index exists.
numFields( $res)
Get the number of fields in a result object.
sourceStream( $fp, $lineCallback=false, $resultCallback=false, $fname=__METHOD__, $inputCallback=false)
defines must comply with ^define\s*([^\s=]*)\s*=\s?'\{\$([^\}]*)\}';
indexInfo( $table, $index, $fname=__METHOD__)
Returns information about an index If errors are explicitly ignored, returns NULL on failure.
numRows( $res)
Get the number of rows in a result object.
bitOr( $fieldLeft, $fieldRight)
buildGroupConcatField( $delim, $table, $field, $conds='', $join_conds=[])
Build a GROUP_CONCAT or equivalent statement for a query.
getType()
Get the type of the DBMS, as it appears in $wgDBtype.
fetchRow( $res)
Fetch the next row from the given result object, in associative array form.
selectDB( $db)
Change the current database.
doRollback( $fname=__METHOD__)
Issues the ROLLBACK command to the database server.
strencode( $s)
Wrapper for addslashes()
affectedRows()
Get the number of rows affected by the last write query.
insertSelect( $destTable, $srcTable, $varMap, $conds, $fname=__METHOD__, $insertOptions=[], $selectOptions=[])
INSERT SELECT wrapper.
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
makeSelectOptions( $options)
Returns an optional USE INDEX clause to go after the table, and a string to go at the end of the quer...
fieldInfoMulti( $table, $field)
Function translates mysql_fetch_field() functionality on ORACLE.
fieldInfo( $table, $field)
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
implicitOrderby()
Returns true if this database does an implicit order by when the column has an index For example: SEL...
encodeBlob( $b)
Some DBMSs have a special format for inserting into blob fields, they don't allow simple quoted strin...
int $mAffectedRows
The number of rows affected as an integer.
cleanupTriggers()
Returns true if this database supports (and uses) triggers (e.g.
addQuotes( $s)
Adds quotes and backslashes.
doCommit( $fname=__METHOD__)
Issues the COMMIT command to the database server.
queryIgnore( $sql, $fname='')
getSequenceData( $table)
Return sequence_name if table has a sequence.
lastError()
Get a description of the last error.
getDBname()
Get the current DB name.
decodeBlob( $b)
Some DBMSs return a special placeholder object representing blob fields in result objects.
strictIPs()
Returns true if this database is strict about what can be put into an IP field.
insertOneRow( $table, $row, $fname)
string $defaultCharset
Character set for Oracle database.
__destruct()
Run a few simple sanity checks.
dropTable( $tableName, $fName=__METHOD__)
Delete a table.
implicitGroupby()
Returns true if this database does an implicit sort when doing GROUP BY.
insertId()
This must be called after nextSequenceVal.
closeConnection()
Closes a database connection, if it is open Returns success, true if already closed.
bool $ignoreDupValOnIndex
limitResult( $sql, $limit, $offset=false)
Construct a LIMIT query with optional offset.
realTimestamps()
Returns true if this database uses timestamps rather than integers.
getServer()
Get the server hostname or IP address.
wasDeadlock()
Determines if the last failure was due to a deadlock STUB.
tableExists( $table, $fname=__METHOD__)
Query whether a given table exists (in the given schema, or the default mw one if not given)
getSearchEngine()
Get search engine class.
tableNameInternal( $name)
update( $table, $values, $conds, $fname=__METHOD__, $options=[])
indexUnique( $table, $index, $fname=__METHOD__)
fieldBindStatement( $table, $col, &$val, $includeCol=false)
searchableIPs()
Returns true if this database can do a native search on IP columns e.g.
insert( $table, $a, $fname=__METHOD__, $options=[])
INSERT wrapper, inserts an array into a table.
nextSequenceValue( $seqName)
Return the next in a sequence, save the value for retrieval via insertId()
timestamp( $ts=0)
Convert a timestamp in one of the formats accepted by wfTimestamp() to the format used for inserting ...
doQuery( $sql)
The DBMS-dependent part of query()
selectRow( $table, $vars, $conds, $fname=__METHOD__, $options=[], $join_conds=[])
Single row SELECT wrapper.
wrapConditionsForWhere( $table, $conds, $parentCol=null)
open( $server, $user, $password, $dbName)
Usually aborts on failure.
fieldName( $stmt, $n)
Get a field name in a result object.
freeResult( $res)
Frees resources associated with the LOB descriptor.
__construct(array $p)
Constructor.
unionQueries( $sqls, $all)
Construct a UNION query This is used for providing overload point for other DB abstractions not compa...
aggregateValue( $valuedata, $valuename='value')
Return aggregated value function call.
cascadingDeletes()
Returns true if this database supports (and uses) cascading deletes.
isQuotedIdentifier( $s)
Returns if the given identifier looks quoted or not according to the database convention for quoting ...
getInfinity()
Find out when 'infinity' is.
static getLocalInstance( $ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
tableName()
Name of table this field belongs to.
isNullable()
Whether this field can store NULL values.
The oci8 extension is fairly weak and doesn't support oci_num_rows, among other things.
__construct(&$db, $stmt, $unique=false)
array_unique_md( $array_in)
Result wrapper for grabbing data queried by someone else.
static isUtf8( $value)
Test whether a string is valid UTF-8.
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for except in special pages derived from QueryPage It s a common pitfall for new developers to submit code containing SQL queries which examine huge numbers of rows Remember that COUNT * is(N), counting rows in atable is like counting beans in a bucket.------------------------------------------------------------------------ Replication------------------------------------------------------------------------The largest installation of MediaWiki, Wikimedia, uses a large set ofslave MySQL servers replicating writes made to a master MySQL server. Itis important to understand the issues associated with this setup if youwant to write code destined for Wikipedia.It 's often the case that the best algorithm to use for a given taskdepends on whether or not replication is in use. Due to our unabashedWikipedia-centrism, we often just use the replication-friendly version, but if you like, you can use wfGetLB() ->getServerCount() > 1 tocheck to see if replication is in use.===Lag===Lag primarily occurs when large write queries are sent to the master.Writes on the master are executed in parallel, but they are executed inserial when they are replicated to the slaves. The master writes thequery to the binlog when the transaction is committed. The slaves pollthe binlog and start executing the query as soon as it appears. They canservice reads while they are performing a write query, but will not readanything more from the binlog and thus will perform no more writes. Thismeans that if the write query runs for a long time, the slaves will lagbehind the master for the time it takes for the write query to complete.Lag can be exacerbated by high read load. MediaWiki 's load balancer willstop sending reads to a slave when it is lagged by more than 30 seconds.If the load ratios are set incorrectly, or if there is too much loadgenerally, this may lead to a slave permanently hovering around 30seconds lag.If all slaves are lagged by more than 30 seconds, MediaWiki will stopwriting to the database. All edits and other write operations will berefused, with an error returned to the user. This gives the slaves achance to catch up. Before we had this mechanism, the slaves wouldregularly lag by several minutes, making review of recent editsdifficult.In addition to this, MediaWiki attempts to ensure that the user seesevents occurring on the wiki in chronological order. A few seconds of lagcan be tolerated, as long as the user sees a consistent picture fromsubsequent requests. This is done by saving the master binlog positionin the session, and then at the start of each request, waiting for theslave to catch up to that position before doing any reads from it. Ifthis wait times out, reads are allowed anyway, but the request isconsidered to be in "lagged slave mode". Lagged slave mode can bechecked by calling wfGetLB() ->getLaggedSlaveMode(). The onlypractical consequence at present is a warning displayed in the pagefooter.===Lag avoidance===To avoid excessive lag, queries which write large numbers of rows shouldbe split up, generally to write one row at a time. Multi-row INSERT ...SELECT queries are the worst offenders should be avoided altogether.Instead do the select first and then the insert.===Working with lag===Despite our best efforts, it 's not practical to guarantee a low-lagenvironment. Lag will usually be less than one second, but mayoccasionally be up to 30 seconds. For scalability, it 's very importantto keep load on the master low, so simply sending all your queries tothe master is not the answer. So when you have a genuine need forup-to-date data, the following approach is advised:1) Do a quick query to the master for a sequence number or timestamp 2) Run the full query on the slave and check if it matches the data you gotfrom the master 3) If it doesn 't, run the full query on the masterTo avoid swamping the master every time the slaves lag, use of thisapproach should be kept to a minimum. In most cases you should just readfrom the slave and let the user deal with the delay.------------------------------------------------------------------------ Lock contention------------------------------------------------------------------------Due to the high write rate on Wikipedia(and some other wikis), MediaWiki developers need to be very careful to structure their writesto avoid long-lasting locks. By default, MediaWiki opens a transactionat the first query, and commits it before the output is sent. Locks willbe held from the time when the query is done until the commit. So youcan reduce lock time by doing as much processing as possible before youdo your write queries.Often this approach is not good enough, and it becomes necessary toenclose small groups of queries in their own transaction. Use thefollowing syntax:$dbw=wfGetDB(DB_MASTER
We use the convention $dbr for read and $dbw for write to help you keep track of whether the database object is a the world will explode Or to be a subsequent write query which succeeded on the master may fail when replicated to the slave due to a unique key collision Replication on the slave will stop and it may take hours to repair the database and get it back online Setting read_only in my cnf on the slave will avoid this but given the dire we prefer to have as many checks as possible We provide a but the wrapper functions like please read the documentation for tableName() and addQuotes(). You will need both of them. ------------------------------------------------------------------------ Basic query optimisation ------------------------------------------------------------------------ MediaWiki developers who need to write DB queries should have some understanding of databases and the performance issues associated with them. Patches containing unacceptably slow features will not be accepted. Unindexed queries are generally not welcome in MediaWiki
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the local content language as $wgContLang
when a variable name is used in a it is silently declared as a new local masking the global
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
and how to run hooks for an and one after Each event has a preferably in CamelCase For ArticleDelete hook A clump of code and data that should be run when an event happens This can be either a function and a chunk of or an object and a method hook function The function part of a third party developers and local administrators to define code that will be run at certain points in the mainline code
the array() calling protocol came about after MediaWiki 1.4rc1.
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
in this case you re responsible for computing and outputting the entire conflict i e
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Associative array mapping language codes to prefixed links of the form "language:title". & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context the output can only depend on parameters provided to this hook not on global state indicating whether full HTML should be generated If generation of HTML may be but other information should still be present in the ParserOutput object to manipulate or replace but no entry for that model exists in $wgContentHandlers if desired whether it is OK to use $contentModel on $title Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok inclusive $limit
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses after processing after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a message
Allows to change the fields on the form that will be generated $name
processing should stop and the error should be shown to the user * false
returning false will NOT prevent logging $e
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
Base for all database-specific classes representing information about database fields.
#define the
table suitable for use with IDatabase::select()
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN boolean columns are always mapped to as the code does not always treat the column as a and VARBINARY columns should simply be TEXT The only exception is when VARBINARY is used to store true binary such as the math_inputhash column