Go to the documentation of this file.
28 use Psr\Log\LoggerAwareInterface;
29 use Psr\Log\LoggerInterface;
30 use Psr\Log\NullLogger;
31 use Wikimedia\ScopedCallback;
32 use Wikimedia\Timestamp\ConvertibleTimestamp;
37 use InvalidArgumentException;
38 use UnexpectedValueException;
65 const ATTR_DB_LEVEL_LOCKING =
'db-level-locking';
68 const NEW_UNCONNECTED = 0;
70 const NEW_CONNECTED = 1;
277 const STATUS_TRX_ERROR = 1;
279 const STATUS_TRX_OK = 2;
281 const STATUS_TRX_NONE = 3;
288 foreach ( [
'host',
'user',
'password',
'dbname',
'schema',
'tablePrefix' ]
as $name ) {
292 $this->cliMode =
$params[
'cliMode'];
294 $this->agent = str_replace(
'/',
'-',
$params[
'agent'] );
296 $this->flags =
$params[
'flags'];
298 if ( $this->cliMode ) {
307 $this->sessionVars =
$params[
'variables'];
311 $this->profiler =
$params[
'profiler'];
312 $this->trxProfiler =
$params[
'trxProfiler'];
313 $this->connLogger =
$params[
'connLogger'];
314 $this->queryLogger =
$params[
'queryLogger'];
315 $this->errorLogger =
$params[
'errorLogger'];
316 $this->deprecationLogger =
$params[
'deprecationLogger'];
318 if ( isset(
$params[
'nonNativeInsertSelectBatchSize'] ) ) {
319 $this->nonNativeInsertSelectBatchSize =
$params[
'nonNativeInsertSelectBatchSize'];
340 throw new LogicException( __METHOD__ .
': already connected.' );
354 if ( strlen( $this->connectionParams[
'user'] ) ) {
356 $this->connectionParams[
'host'],
357 $this->connectionParams[
'user'],
358 $this->connectionParams[
'password'],
359 $this->connectionParams[
'dbname'],
360 $this->connectionParams[
'schema'],
361 $this->connectionParams[
'tablePrefix']
364 throw new InvalidArgumentException(
"No database user provided." );
426 final public static function factory( $dbType, $p = [], $connect = self::NEW_CONNECTED ) {
429 if ( class_exists( $class ) && is_subclass_of( $class,
IDatabase::class ) ) {
431 $p[
'host'] = $p[
'host'] ??
false;
432 $p[
'user'] = $p[
'user'] ??
false;
433 $p[
'password'] = $p[
'password'] ??
false;
434 $p[
'dbname'] = $p[
'dbname'] ??
false;
435 $p[
'flags'] = $p[
'flags'] ?? 0;
436 $p[
'variables'] = $p[
'variables'] ?? [];
437 $p[
'tablePrefix'] = $p[
'tablePrefix'] ??
'';
438 $p[
'schema'] = $p[
'schema'] ??
null;
439 $p[
'cliMode'] = $p[
'cliMode'] ?? ( PHP_SAPI ===
'cli' || PHP_SAPI ===
'phpdbg' );
440 $p[
'agent'] = $p[
'agent'] ??
'';
441 if ( !isset( $p[
'connLogger'] ) ) {
442 $p[
'connLogger'] =
new NullLogger();
444 if ( !isset( $p[
'queryLogger'] ) ) {
445 $p[
'queryLogger'] =
new NullLogger();
447 $p[
'profiler'] = $p[
'profiler'] ??
null;
448 if ( !isset( $p[
'trxProfiler'] ) ) {
451 if ( !isset( $p[
'errorLogger'] ) ) {
452 $p[
'errorLogger'] =
function ( Exception
$e ) {
453 trigger_error( get_class(
$e ) .
': ' .
$e->getMessage(), E_USER_WARNING );
456 if ( !isset( $p[
'deprecationLogger'] ) ) {
457 $p[
'deprecationLogger'] =
function ( $msg ) {
458 trigger_error( $msg, E_USER_DEPRECATED );
463 $conn =
new $class( $p );
464 if ( $connect == self::NEW_CONNECTED ) {
465 $conn->initConnection();
482 static $defaults = [ self::ATTR_DB_LEVEL_LOCKING =>
false ];
486 return call_user_func( [ $class,
'getAttributes' ] ) + $defaults;
495 private static function getClass( $dbType, $driver =
null ) {
502 static $builtinTypes = [
509 $dbType = strtolower( $dbType );
512 if ( isset( $builtinTypes[$dbType] ) ) {
513 $possibleDrivers = $builtinTypes[$dbType];
514 if ( is_string( $possibleDrivers ) ) {
515 $class = $possibleDrivers;
517 if ( (
string)$driver !==
'' ) {
518 if ( !isset( $possibleDrivers[$driver] ) ) {
519 throw new InvalidArgumentException( __METHOD__ .
520 " type '$dbType' does not support driver '{$driver}'" );
522 $class = $possibleDrivers[$driver];
525 foreach ( $possibleDrivers
as $posDriver => $possibleClass ) {
526 if ( extension_loaded( $posDriver ) ) {
527 $class = $possibleClass;
534 $class =
'Database' . ucfirst( $dbType );
537 if ( $class ===
false ) {
538 throw new InvalidArgumentException( __METHOD__ .
539 " no viable database extension found for type '$dbType'" );
561 $this->queryLogger = $logger;
596 $old = $this->currentDomain->getTablePrefix();
597 if ( $prefix !==
null ) {
599 $this->currentDomain->getDatabase(),
600 $this->currentDomain->getSchema(),
609 $old = $this->currentDomain->getSchema();
610 if ( $schema !==
null ) {
612 $this->currentDomain->getDatabase(),
614 strlen( $schema ) ? $schema :
null,
615 $this->currentDomain->getTablePrefix()
630 if ( is_null(
$name ) ) {
633 if ( array_key_exists(
$name, $this->lbInfo ) ) {
634 return $this->lbInfo[
$name];
642 if ( is_null(
$value ) ) {
643 $this->lbInfo =
$name;
650 $this->lazyMasterHandle =
$conn;
679 return $this->lastWriteTime ?:
false;
688 $this->trxDoneWrites ||
689 $this->trxIdleCallbacks ||
690 $this->trxPreCommitCallbacks ||
707 return is_string( $id ) ? $id :
null;
716 } elseif ( !$this->trxDoneWrites ) {
721 case self::ESTIMATE_DB_APPLY:
723 $rttAdjTotal = $this->trxWriteAdjQueryCount * $rtt;
724 $applyTime = max( $this->trxWriteAdjDuration - $rttAdjTotal, 0 );
727 $applyTime += self::TINY_WRITE_SEC * $omitted;
736 return $this->
trxLevel ? $this->trxWriteCallers : [];
754 $this->trxIdleCallbacks,
755 $this->trxPreCommitCallbacks,
756 $this->trxEndCallbacks
758 foreach ( $callbacks
as $callback ) {
759 $fnames[] = $callback[1];
770 return array_reduce( $this->trxAtomicLevels,
function ( $accum, $v ) {
771 return $accum ===
null ? $v[0] :
"$accum, " . $v[0];
779 public function setFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
781 throw new UnexpectedValueException(
"Modifying DBO_IGNORE is not allowed." );
784 if ( $remember === self::REMEMBER_PRIOR ) {
785 array_push( $this->priorFlags, $this->flags );
787 $this->flags |= $flag;
790 public function clearFlag( $flag, $remember = self::REMEMBER_NOTHING ) {
792 throw new UnexpectedValueException(
"Modifying DBO_IGNORE is not allowed." );
795 if ( $remember === self::REMEMBER_PRIOR ) {
796 array_push( $this->priorFlags, $this->flags );
798 $this->flags &= ~$flag;
802 if ( !$this->priorFlags ) {
806 if ( $state === self::RESTORE_INITIAL ) {
807 $this->flags = reset( $this->priorFlags );
808 $this->priorFlags = [];
810 $this->flags = array_pop( $this->priorFlags );
815 return !!( $this->flags & $flag );
828 return $this->currentDomain->getId();
856 $this->phpError =
false;
857 $this->htmlErrors = ini_set(
'html_errors',
'0' );
858 set_error_handler( [ $this,
'connectionErrorLogger' ] );
867 restore_error_handler();
868 if ( $this->htmlErrors !==
false ) {
869 ini_set(
'html_errors', $this->htmlErrors );
879 if ( $this->phpError ) {
880 $error = preg_replace(
'!\[<a.*</a>\]!',
'', $this->phpError );
881 $error = preg_replace(
'!^.*?:\s?(.*)$!',
'$1', $error );
897 $this->phpError = $errstr;
909 'db_server' => $this->
server,
911 'db_user' => $this->
user,
923 if ( $this->trxAtomicLevels ) {
928 __METHOD__ .
": atomic sections $levels are still open."
930 } elseif ( $this->trxAutomatic ) {
937 ": mass commit/rollback of peer transaction required (DBO_TRX set)."
945 __METHOD__ .
": transaction is still open (from {$this->trxFname})."
949 if ( $this->trxEndCallbacksSuppressed ) {
952 __METHOD__ .
': callbacks are suppressed; cannot properly commit.'
957 $this->
rollback( __METHOD__, self::FLUSHING_INTERNAL );
967 $this->opened =
false;
970 if ( $exception instanceof Exception ) {
977 throw new RuntimeException(
978 "Transaction callbacks are still pending:\n" . implode(
', ', $fnames )
1009 call_user_func( $this->deprecationLogger,
'Use of ' . __METHOD__ .
' is deprecated.' );
1022 abstract protected function doQuery( $sql );
1055 '/^(?:SELECT|BEGIN|ROLLBACK|COMMIT|SET|SHOW|EXPLAIN|\(SELECT)\b/i', $sql );
1063 return preg_match(
'/^\s*([a-z]+)/i', $sql, $m ) ? strtoupper( $m[1] ) :
null;
1082 [
'BEGIN',
'ROLLBACK',
'COMMIT',
'SET',
'SHOW',
'CREATE',
'ALTER' ],
1093 '/^CREATE\s+TEMPORARY\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1097 $this->sessionTempTables[
$matches[1]] = 1;
1100 } elseif ( preg_match(
1101 '/^DROP\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1105 $isTemp = isset( $this->sessionTempTables[
$matches[1]] );
1106 unset( $this->sessionTempTables[
$matches[1]] );
1109 } elseif ( preg_match(
1110 '/^TRUNCATE\s+(?:TEMPORARY\s+)?TABLE\s+(?:IF\s+EXISTS\s+)?[`"\']?(\w+)[`"\']?/i',
1114 return isset( $this->sessionTempTables[
$matches[1]] );
1115 } elseif ( preg_match(
1116 '/^(?:INSERT\s+(?:\w+\s+)?INTO|UPDATE|DELETE\s+FROM)\s+[`"\']?(\w+)[`"\']?/i',
1120 return isset( $this->sessionTempTables[
$matches[1]] );
1126 public function query( $sql,
$fname = __METHOD__, $tempIgnore =
false ) {
1129 # Avoid fatals if close() was called
1139 $isNonTempWrite =
false;
1143 if ( $this->
getLBInfo(
'replica' ) ===
true ) {
1146 'Write operations are not allowed on replica database connections.'
1149 # In theory, non-persistent writes are allowed in read-only mode, but due to things
1150 # like https://bugs.mysql.com/bug.php?id=33669 that might not work anyway...
1152 if ( $reason !==
false ) {
1155 # Set a flag indicating that writes have been done
1156 $this->lastWriteTime = microtime(
true );
1159 # Add trace comment to the begin of the sql string, right after the operator.
1160 # Or, for one-word queries (like "BEGIN" or COMMIT") add it to the end (T44598)
1161 $commentedSql = preg_replace(
'/\s|$/',
" /* $fname {$this->agent} */ ", $sql, 1 );
1163 # Start implicit transactions that wrap the request if DBO_TRX is enabled
1167 $this->
begin( __METHOD__ .
" ($fname)", self::TRANSACTION_INTERNAL );
1168 $this->trxAutomatic =
true;
1171 # Keep track of whether the transaction has write queries pending
1172 if ( $this->
trxLevel && !$this->trxDoneWrites && $isWrite ) {
1173 $this->trxDoneWrites =
true;
1174 $this->trxProfiler->transactionWritingIn(
1179 $this->queryLogger->debug(
"{$this->getDomainID()} {$commentedSql}" );
1182 # Send the query to the server and fetch any corresponding errors
1187 # Try reconnecting if the connection was lost
1189 # Check if any meaningful session state was lost
1191 # Update session state tracking and try to restore the connection
1193 # Silently resend the query to the server if it is safe and possible
1194 if ( $reconnected && $recoverable ) {
1200 # Query probably causes disconnects; reconnect and do not re-run it
1206 if (
$ret ===
false ) {
1209 # We're ignoring an error that caused just the current query to be aborted.
1210 # But log the cause so we can log a deprecation notice if a caller actually
1212 $this->trxStatusIgnoredCause = [ $lastError, $lastErrno,
$fname ];
1214 # Either the query was aborted or all queries after BEGIN where aborted.
1215 # In the first case, the only options going forward are (a) ROLLBACK, or
1216 # (b) ROLLBACK TO SAVEPOINT (if one was set). If the later case, the only
1217 # option is ROLLBACK, since the snapshots would have been released.
1218 $this->
trxStatus = self::STATUS_TRX_ERROR;
1219 $this->trxStatusCause =
1221 $tempIgnore =
false;
1222 $this->trxStatusIgnoredCause =
null;
1243 $isMaster = !is_null( $this->
getLBInfo(
'master' ) );
1244 # generalizeSQL() will probably cut down the query to reasonable
1245 # logging size most of the time. The substr is really just a sanity check.
1247 $queryProf =
'query-m: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1249 $queryProf =
'query: ' . substr( self::generalizeSQL( $sql ), 0, 255 );
1252 # Include query transaction state
1253 $queryProf .= $this->trxShortId ?
" [TRX#{$this->trxShortId}]" :
"";
1255 $startTime = microtime(
true );
1256 if ( $this->profiler ) {
1257 $this->profiler->profileIn( $queryProf );
1259 $this->affectedRowCount =
null;
1262 if ( $this->profiler ) {
1263 $this->profiler->profileOut( $queryProf );
1265 $queryRuntime = max( microtime(
true ) - $startTime, 0.0 );
1267 unset( $queryProfSection );
1269 if (
$ret !==
false ) {
1270 $this->lastPing = $startTime;
1271 if ( $isWrite && $this->
trxLevel ) {
1273 $this->trxWriteCallers[] =
$fname;
1277 if ( $sql === self::PING_QUERY ) {
1278 $this->rttEstimate = $queryRuntime;
1281 $this->trxProfiler->recordQueryCompletion(
1287 $this->queryLogger->debug( $sql, [
1289 'master' => $isMaster,
1290 'runtime' => $queryRuntime,
1310 $indicativeOfReplicaRuntime =
true;
1311 if ( $runtime > self::SLOW_WRITE_SEC ) {
1314 if ( $verb ===
'INSERT' ) {
1316 } elseif ( $verb ===
'REPLACE' ) {
1317 $indicativeOfReplicaRuntime = $this->
affectedRows() > self::SMALL_WRITE_ROWS / 2;
1321 $this->trxWriteDuration += $runtime;
1322 $this->trxWriteQueryCount += 1;
1323 $this->trxWriteAffectedRows += $affected;
1324 if ( $indicativeOfReplicaRuntime ) {
1325 $this->trxWriteAdjDuration += $runtime;
1326 $this->trxWriteAdjQueryCount += 1;
1340 if ( $this->
trxStatus < self::STATUS_TRX_OK ) {
1343 "Cannot execute query from $fname while transaction status is ERROR.",
1345 $this->trxStatusCause
1347 } elseif ( $this->
trxStatus === self::STATUS_TRX_OK && $this->trxStatusIgnoredCause ) {
1349 call_user_func( $this->deprecationLogger,
1350 "Caller from $fname ignored an error originally raised from $iFname: " .
1351 "[$iLastErrno] $iLastError"
1353 $this->trxStatusIgnoredCause =
null;
1361 "Explicit transaction still active. A caller may have caught an error. "
1378 # Transaction dropped; this can mean lost writes, or REPEATABLE-READ snapshots.
1379 # Dropped connections also mean that named locks are automatically released.
1380 # Only allow error suppression in autocommit mode or when the lost transaction
1381 # didn't matter anyway (aside from DBO_TRX snapshot loss).
1382 if ( $this->namedLocksHeld ) {
1384 } elseif ( $this->sessionTempTables ) {
1386 } elseif ( $sql ===
'COMMIT' ) {
1387 return !$priorWritesPending;
1388 } elseif ( $sql ===
'ROLLBACK' ) {
1392 } elseif ( $priorWritesPending ) {
1406 $this->sessionTempTables = [];
1409 $this->namedLocksHeld = [];
1419 $this->trxAtomicCounter = 0;
1420 $this->trxIdleCallbacks = [];
1421 $this->trxPreCommitCallbacks = [];
1426 }
catch ( Exception $ex ) {
1432 }
catch ( Exception $ex ) {
1463 if ( $tempIgnore ) {
1464 $this->queryLogger->debug(
"SQL ERROR (ignored): $error\n" );
1480 $sql1line = mb_substr( str_replace(
"\n",
"\\n", $sql ), 0, 5 * 1024 );
1481 $this->queryLogger->error(
1482 "{fname}\t{db_server}\t{errno}\t{error}\t{sql1line}",
1484 'method' => __METHOD__,
1487 'sql1line' => $sql1line,
1491 $this->queryLogger->debug(
"SQL ERROR: " . $error .
"\n" );
1493 if ( $wasQueryTimeout ) {
1506 $table, $var, $cond =
'',
$fname = __METHOD__,
$options = [], $join_conds = []
1508 if ( $var ===
'*' ) {
1525 if ( $row !==
false ) {
1526 return reset( $row );
1533 $table, $var, $cond =
'',
$fname = __METHOD__,
$options = [], $join_conds = []
1535 if ( $var ===
'*' ) {
1537 } elseif ( !is_string( $var ) ) {
1546 if (
$res ===
false ) {
1551 foreach (
$res as $row ) {
1552 $values[] = $row->value;
1568 $preLimitTail = $postLimitTail =
'';
1574 if ( is_numeric( $key ) ) {
1575 $noKeyOptions[$option] =
true;
1583 if ( isset( $noKeyOptions[
'FOR UPDATE'] ) ) {
1584 $postLimitTail .=
' FOR UPDATE';
1587 if ( isset( $noKeyOptions[
'LOCK IN SHARE MODE'] ) ) {
1588 $postLimitTail .=
' LOCK IN SHARE MODE';
1591 if ( isset( $noKeyOptions[
'DISTINCT'] ) || isset( $noKeyOptions[
'DISTINCTROW'] ) ) {
1592 $startOpts .=
'DISTINCT';
1595 # Various MySQL extensions
1596 if ( isset( $noKeyOptions[
'STRAIGHT_JOIN'] ) ) {
1597 $startOpts .=
' /*! STRAIGHT_JOIN */';
1600 if ( isset( $noKeyOptions[
'HIGH_PRIORITY'] ) ) {
1601 $startOpts .=
' HIGH_PRIORITY';
1604 if ( isset( $noKeyOptions[
'SQL_BIG_RESULT'] ) ) {
1605 $startOpts .=
' SQL_BIG_RESULT';
1608 if ( isset( $noKeyOptions[
'SQL_BUFFER_RESULT'] ) ) {
1609 $startOpts .=
' SQL_BUFFER_RESULT';
1612 if ( isset( $noKeyOptions[
'SQL_SMALL_RESULT'] ) ) {
1613 $startOpts .=
' SQL_SMALL_RESULT';
1616 if ( isset( $noKeyOptions[
'SQL_CALC_FOUND_ROWS'] ) ) {
1617 $startOpts .=
' SQL_CALC_FOUND_ROWS';
1620 if ( isset( $noKeyOptions[
'SQL_CACHE'] ) ) {
1621 $startOpts .=
' SQL_CACHE';
1624 if ( isset( $noKeyOptions[
'SQL_NO_CACHE'] ) ) {
1625 $startOpts .=
' SQL_NO_CACHE';
1628 if ( isset(
$options[
'USE INDEX'] ) && is_string(
$options[
'USE INDEX'] ) ) {
1633 if ( isset(
$options[
'IGNORE INDEX'] ) && is_string(
$options[
'IGNORE INDEX'] ) ) {
1639 return [ $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ];
1652 if ( isset(
$options[
'GROUP BY'] ) ) {
1653 $gb = is_array(
$options[
'GROUP BY'] )
1654 ? implode(
',',
$options[
'GROUP BY'] )
1656 $sql .=
' GROUP BY ' . $gb;
1658 if ( isset(
$options[
'HAVING'] ) ) {
1659 $having = is_array(
$options[
'HAVING'] )
1662 $sql .=
' HAVING ' . $having;
1677 if ( isset(
$options[
'ORDER BY'] ) ) {
1678 $ob = is_array(
$options[
'ORDER BY'] )
1679 ? implode(
',',
$options[
'ORDER BY'] )
1682 return ' ORDER BY ' . $ob;
1699 if ( is_array(
$vars ) ) {
1706 $useIndexes = ( isset(
$options[
'USE INDEX'] ) && is_array(
$options[
'USE INDEX'] ) )
1710 isset(
$options[
'IGNORE INDEX'] ) &&
1711 is_array(
$options[
'IGNORE INDEX'] )
1723 $this->deprecationLogger,
1724 __METHOD__ .
": aggregation used with a locking SELECT ($fname)."
1728 if ( is_array( $table ) ) {
1731 $table, $useIndexes, $ignoreIndexes, $join_conds );
1732 } elseif ( $table !=
'' ) {
1735 [ $table ], $useIndexes, $ignoreIndexes, [] );
1740 list( $startOpts, $useIndex, $preLimitTail, $postLimitTail, $ignoreIndex ) =
1743 if ( is_array( $conds ) ) {
1747 if ( $conds ===
null || $conds ===
false ) {
1748 $this->queryLogger->warning(
1752 .
' with incorrect parameters: $conds must be a string or an array'
1757 if ( $conds ===
'' || $conds ===
'*' ) {
1758 $sql =
"SELECT $startOpts $fields $from $useIndex $ignoreIndex $preLimitTail";
1759 } elseif ( is_string( $conds ) ) {
1760 $sql =
"SELECT $startOpts $fields $from $useIndex $ignoreIndex " .
1761 "WHERE $conds $preLimitTail";
1763 throw new DBUnexpectedError( $this, __METHOD__ .
' called with incorrect parameters' );
1766 if ( isset(
$options[
'LIMIT'] ) ) {
1770 $sql =
"$sql $postLimitTail";
1772 if ( isset(
$options[
'EXPLAIN'] ) ) {
1773 $sql =
'EXPLAIN ' . $sql;
1786 if (
$res ===
false ) {
1800 $table, $var =
'*', $conds =
'',
$fname = __METHOD__,
$options = [], $join_conds = []
1804 if ( is_string( $column ) && !in_array( $column, [
'*',
'1' ] ) ) {
1805 $conds[] =
"$column IS NOT NULL";
1809 $table, [
'rowcount' =>
'COUNT(*)' ], $conds,
$fname,
$options, $join_conds
1813 return isset( $row[
'rowcount'] ) ? (int)$row[
'rowcount'] : 0;
1821 if ( is_string( $column ) && !in_array( $column, [
'*',
'1' ] ) ) {
1822 $conds[] =
"$column IS NOT NULL";
1836 [
'rowcount' =>
'COUNT(*)' ],
1842 return isset( $row[
'rowcount'] ) ? (int)$row[
'rowcount'] : 0;
1851 foreach ( [
'FOR UPDATE',
'LOCK IN SHARE MODE' ]
as $lock ) {
1852 if ( in_array( $lock,
$options,
true ) ) {
1867 if ( is_string( $key ) ) {
1868 if ( preg_match(
'/^(?:GROUP BY|HAVING)$/i', $key ) ) {
1871 } elseif ( is_string(
$value ) ) {
1872 if ( preg_match(
'/^(?:DISTINCT|DISTINCTROW)$/i',
$value ) ) {
1878 $regex =
'/^(?:COUNT|MIN|MAX|SUM|GROUP_CONCAT|LISTAGG|ARRAY_AGG)\s*\\(/i';
1879 foreach ( (
array)$fields
as $field ) {
1880 if ( is_string( $field ) && preg_match( $regex, $field ) ) {
1894 if ( $conds ===
null || $conds ===
false ) {
1895 $this->queryLogger->warning(
1899 .
' with incorrect parameters: $conds must be a string or an array'
1904 if ( !is_array( $conds ) ) {
1905 $conds = ( $conds ===
'' ) ? [] : [ $conds ];
1917 if ( is_array( $var ) ) {
1920 } elseif (
count( $var ) == 1 ) {
1921 $column = $var[0] ?? reset( $var );
1933 $table, $conds =
'',
$fname = __METHOD__,
$options = [], $join_conds = []
1938 __METHOD__ .
': no transaction is active nor is DBO_TRX set'
1957 # This does the same as the regexp below would do, but in such a way
1958 # as to avoid crashing php on some large strings.
1959 # $sql = preg_replace( "/'([^\\\\']|\\\\.)*'|\"([^\\\\\"]|\\\\.)*\"/", "'X'", $sql );
1961 $sql = str_replace(
"\\\\",
'', $sql );
1962 $sql = str_replace(
"\\'",
'', $sql );
1963 $sql = str_replace(
"\\\"",
'', $sql );
1964 $sql = preg_replace(
"/'.*'/s",
"'X'", $sql );
1965 $sql = preg_replace(
'/".*"/s',
"'X'", $sql );
1967 # All newlines, tabs, etc replaced by single space
1968 $sql = preg_replace(
'/\s+/',
' ', $sql );
1971 # except the ones surrounded by characters, e.g. l10n
1972 $sql = preg_replace(
'/-?\d+(,-?\d+)+/s',
'N,...,N', $sql );
1973 $sql = preg_replace(
'/(?<![a-zA-Z])-?\d+(?![a-zA-Z])/s',
'N', $sql );
1979 $info = $this->
fieldInfo( $table, $field );
1990 if ( is_null( $info ) ) {
1993 return $info !==
false;
2000 $indexInfo = $this->
indexInfo( $table, $index );
2002 if ( !$indexInfo ) {
2006 return !$indexInfo[0]->Non_unique;
2020 # No rows to insert, easy just return now
2021 if ( !
count( $a ) ) {
2032 if ( isset(
$options[
'fileHandle'] ) ) {
2037 if ( isset( $a[0] ) && is_array( $a[0] ) ) {
2039 $keys = array_keys( $a[0] );
2042 $keys = array_keys( $a );
2046 " INTO $table (" . implode(
',',
$keys ) .
') VALUES ';
2050 foreach ( $a
as $row ) {
2056 $sql .=
'(' . $this->
makeList( $row ) .
')';
2059 $sql .=
'(' . $this->
makeList( $a ) .
')';
2062 if ( $fh !==
null &&
false === fwrite( $fh, $sql ) ) {
2064 } elseif ( $fh !==
null ) {
2084 if ( in_array(
'IGNORE',
$options ) ) {
2100 return implode(
' ', $opts );
2108 if ( $conds !== [] && $conds !==
'*' ) {
2116 if ( !is_array( $a ) ) {
2117 throw new DBUnexpectedError( $this, __METHOD__ .
' called with incorrect parameters' );
2123 foreach ( $a
as $field =>
$value ) {
2137 $list .=
"($value)";
2144 $includeNull =
false;
2145 foreach ( array_keys(
$value,
null,
true )
as $nullKey ) {
2146 $includeNull =
true;
2147 unset(
$value[$nullKey] );
2150 throw new InvalidArgumentException(
2151 __METHOD__ .
": empty input for field $field" );
2154 $list .=
"$field IS NULL";
2157 if ( $includeNull ) {
2171 if ( $includeNull ) {
2172 $list .=
" OR $field IS NULL)";
2175 } elseif (
$value ===
null ) {
2177 $list .=
"$field IS ";
2179 $list .=
"$field = ";
2186 $list .=
"$field = ";
2198 foreach ( $data
as $base => $sub ) {
2199 if (
count( $sub ) ) {
2201 [ $baseKey =>
$base, $subKey => array_keys( $sub ) ],
2222 public function bitAnd( $fieldLeft, $fieldRight ) {
2223 return "($fieldLeft & $fieldRight)";
2226 public function bitOr( $fieldLeft, $fieldRight ) {
2227 return "($fieldLeft | $fieldRight)";
2231 return 'CONCAT(' . implode(
',', $stringList ) .
')';
2235 $delim, $table, $field, $conds =
'', $join_conds = []
2237 $fld =
"GROUP_CONCAT($field SEPARATOR " . $this->
addQuotes( $delim ) .
')';
2239 return '(' . $this->
selectSQLText( $table, $fld, $conds,
null, [], $join_conds ) .
')';
2244 $functionBody =
"$input FROM $startPosition";
2245 if ( $length !==
null ) {
2246 $functionBody .=
" FOR $length";
2248 return 'SUBSTRING(' . $functionBody .
')';
2264 if ( !is_int( $startPosition ) || $startPosition <= 0 ) {
2265 throw new InvalidArgumentException(
2266 '$startPosition must be a positive integer'
2269 if ( !( is_int( $length ) && $length >= 0 || $length ===
null ) ) {
2270 throw new InvalidArgumentException(
2271 '$length must be null or an integer greater than or equal to 0'
2281 return 'CAST( ' . $field .
' AS INTEGER )';
2300 $this->currentDomain->getSchema(),
2301 $this->currentDomain->getTablePrefix()
2312 $this->currentDomain = $domain;
2316 return $this->currentDomain->getDatabase();
2327 __METHOD__ .
': got Subquery instance when expecting a string.'
2331 # Skip the entire process when we have a string quoted on both ends.
2332 # Note that we check the end so that we will still quote any use of
2333 # use of `database`.table. But won't break things if someone wants
2334 # to query a database table with a dot in the name.
2339 # Lets test for any bits of text that should never show up in a table
2340 # name. Basically anything like JOIN or ON which are actually part of
2341 # SQL queries, but may end up inside of the table value to combine
2342 # sql. Such as how the API is doing.
2343 # Note that we use a whitespace test rather than a \b test to avoid
2344 # any remote case where a word like on may be inside of a table name
2345 # surrounded by symbols which may be considered word breaks.
2346 if ( preg_match(
'/(^|\s)(DISTINCT|JOIN|ON|AS)(\s|$)/i',
$name ) !== 0 ) {
2347 $this->queryLogger->warning(
2348 __METHOD__ .
": use of subqueries is not supported this way.",
2349 [
'trace' => (
new RuntimeException() )->getTraceAsString() ]
2355 # Split database and table into proper variables.
2358 # Quote $table and apply the prefix if not quoted.
2359 # $tableName might be empty if this is called from Database::replaceVars()
2360 $tableName =
"{$prefix}{$table}";
2361 if ( $format ===
'quoted'
2363 && $tableName !==
''
2368 # Quote $schema and $database and merge them with the table name if needed
2382 # We reverse the explode so that database.table and table both output the correct table.
2383 $dbDetails = explode(
'.',
$name, 3 );
2384 if (
count( $dbDetails ) == 3 ) {
2385 list( $database, $schema, $table ) = $dbDetails;
2386 # We don't want any prefix added in this case
2388 } elseif (
count( $dbDetails ) == 2 ) {
2389 list( $database, $table ) = $dbDetails;
2390 # We don't want any prefix added in this case
2392 # In dbs that support it, $database may actually be the schema
2393 # but that doesn't affect any of the functionality here
2396 list( $table ) = $dbDetails;
2397 if ( isset( $this->tableAliases[$table] ) ) {
2398 $database = $this->tableAliases[$table][
'dbname'];
2399 $schema = is_string( $this->tableAliases[$table][
'schema'] )
2400 ? $this->tableAliases[$table][
'schema']
2402 $prefix = is_string( $this->tableAliases[$table][
'prefix'] )
2403 ? $this->tableAliases[$table][
'prefix']
2412 return [ $database, $schema, $prefix, $table ];
2422 if ( strlen( $namespace ) ) {
2426 $relation = $namespace .
'.' . $relation;
2433 $inArray = func_get_args();
2436 foreach ( $inArray
as $name ) {
2444 $inArray = func_get_args();
2447 foreach ( $inArray
as $name ) {
2466 if ( is_string( $table ) ) {
2467 $quotedTable = $this->
tableName( $table );
2468 } elseif ( $table instanceof
Subquery ) {
2469 $quotedTable = (
string)$table;
2471 throw new InvalidArgumentException(
"Table must be a string or Subquery." );
2474 if ( !strlen( $alias ) || $alias === $table ) {
2475 if ( $table instanceof
Subquery ) {
2476 throw new InvalidArgumentException(
"Subquery table missing alias." );
2479 return $quotedTable;
2493 foreach (
$tables as $alias => $table ) {
2494 if ( is_numeric( $alias ) ) {
2512 if ( !$alias || (
string)$alias === (
string)
$name ) {
2527 foreach ( $fields
as $alias => $field ) {
2528 if ( is_numeric( $alias ) ) {
2548 $tables, $use_index = [], $ignore_index = [], $join_conds = []
2552 $use_index = (
array)$use_index;
2553 $ignore_index = (
array)$ignore_index;
2554 $join_conds = (
array)$join_conds;
2556 foreach (
$tables as $alias => $table ) {
2557 if ( !is_string( $alias ) ) {
2562 if ( is_array( $table ) ) {
2564 if (
count( $table ) > 1 ) {
2565 $joinedTable =
'(' .
2567 $table, $use_index, $ignore_index, $join_conds ) .
')';
2570 $innerTable = reset( $table );
2571 $innerAlias =
key( $table );
2574 is_string( $innerAlias ) ? $innerAlias : $innerTable
2582 if ( isset( $join_conds[$alias] ) ) {
2583 list( $joinType, $conds ) = $join_conds[$alias];
2584 $tableClause = $joinType;
2585 $tableClause .=
' ' . $joinedTable;
2586 if ( isset( $use_index[$alias] ) ) {
2589 $tableClause .=
' ' . $use;
2592 if ( isset( $ignore_index[$alias] ) ) {
2594 implode(
',', (
array)$ignore_index[$alias] ) );
2595 if ( $ignore !=
'' ) {
2596 $tableClause .=
' ' . $ignore;
2601 $tableClause .=
' ON (' . $on .
')';
2604 $retJOIN[] = $tableClause;
2605 } elseif ( isset( $use_index[$alias] ) ) {
2607 $tableClause = $joinedTable;
2609 implode(
',', (
array)$use_index[$alias] )
2612 $ret[] = $tableClause;
2613 } elseif ( isset( $ignore_index[$alias] ) ) {
2615 $tableClause = $joinedTable;
2617 implode(
',', (
array)$ignore_index[$alias] )
2620 $ret[] = $tableClause;
2622 $tableClause = $joinedTable;
2624 $ret[] = $tableClause;
2629 $implicitJoins =
$ret ? implode(
',',
$ret ) :
"";
2630 $explicitJoins = $retJOIN ? implode(
' ', $retJOIN ) :
"";
2633 return implode(
' ', [ $implicitJoins, $explicitJoins ] );
2643 return $this->indexAliases[$index] ?? $index;
2647 if (
$s instanceof
Blob ) {
2650 if (
$s ===
null ) {
2652 } elseif ( is_bool(
$s ) ) {
2655 # This will also quote numeric values. This should be harmless,
2656 # and protects against weird problems that occur when they really
2657 # _are_ strings such as article titles and string->number->string
2658 # conversion is not 1:1.
2673 return '"' . str_replace(
'"',
'""',
$s ) .
'"';
2686 return $name[0] ==
'"' && substr(
$name, -1, 1 ) ==
'"';
2695 return str_replace( [ $escapeChar,
'%',
'_' ],
2696 [
"{$escapeChar}{$escapeChar}",
"{$escapeChar}%",
"{$escapeChar}_" ],
2773 if ( !is_array( reset(
$rows ) ) ) {
2782 $indexWhereClauses = [];
2783 foreach ( $uniqueIndexes
as $index ) {
2784 $indexColumns = (
array)$index;
2785 $indexRowValues = array_intersect_key( $row, array_flip( $indexColumns ) );
2786 if (
count( $indexRowValues ) !=
count( $indexColumns ) ) {
2789 'New record does not provide all values for unique key (' .
2790 implode(
', ', $indexColumns ) .
')'
2792 } elseif ( in_array(
null, $indexRowValues,
true ) ) {
2795 'New record has a null value for unique key (' .
2796 implode(
', ', $indexColumns ) .
')'
2802 if ( $indexWhereClauses ) {
2813 }
catch ( Exception
$e ) {
2833 if ( !is_array( reset(
$rows ) ) ) {
2837 $sql =
"REPLACE INTO $table (" . implode(
',', array_keys(
$rows[0] ) ) .
') VALUES ';
2847 $sql .=
'(' . $this->
makeList( $row ) .
')';
2860 if ( !is_array( reset(
$rows ) ) ) {
2864 if (
count( $uniqueIndexes ) ) {
2867 foreach ( $uniqueIndexes
as $index ) {
2868 $index = is_array( $index ) ? $index : [ $index ];
2870 foreach ( $index
as $column ) {
2871 $rowKey[$column] = $row[$column];
2884 # Update any existing conflicting row(s)
2885 if ( $where !==
false ) {
2891 # Now insert any non-conflicting row(s)
2896 }
catch ( Exception
$e ) {
2904 public function deleteJoin( $delTable, $joinTable, $delVar, $joinVar, $conds,
2911 $delTable = $this->
tableName( $delTable );
2912 $joinTable = $this->
tableName( $joinTable );
2913 $sql =
"DELETE FROM $delTable WHERE $delVar IN (SELECT $joinVar FROM $joinTable ";
2914 if ( $conds !=
'*' ) {
2924 $sql =
"SHOW COLUMNS FROM $table LIKE \"$field\";";
2925 $res = $this->
query( $sql, __METHOD__ );
2930 if ( preg_match(
'/\((.*)\)/', $row->Type, $m ) ) {
2939 public function delete( $table, $conds,
$fname = __METHOD__ ) {
2941 throw new DBUnexpectedError( $this, __METHOD__ .
' called with no conditions' );
2945 $sql =
"DELETE FROM $table";
2947 if ( $conds !=
'*' ) {
2948 if ( is_array( $conds ) ) {
2951 $sql .=
' WHERE ' . $conds;
2958 $destTable, $srcTable, $varMap, $conds,
2959 $fname = __METHOD__, $insertOptions = [], $selectOptions = [], $selectJoinConds = []
2961 static $hints = [
'NO_AUTO_COLUMNS' ];
2963 $insertOptions = (
array)$insertOptions;
2964 $selectOptions = (
array)$selectOptions;
2966 if ( $this->cliMode && $this->
isInsertSelectSafe( $insertOptions, $selectOptions ) ) {
2975 array_diff( $insertOptions, $hints ),
2987 array_diff( $insertOptions, $hints ),
3020 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3026 foreach ( $varMap
as $dstColumn => $sourceColumnOrSql ) {
3029 $selectOptions[] =
'FOR UPDATE';
3031 $srcTable, implode(
',', $fields ), $conds,
$fname, $selectOptions, $selectJoinConds
3039 $this->
startAtomic( $fname, self::ATOMIC_CANCELABLE );
3042 foreach (
$res as $row ) {
3055 if (
$rows && $ok ) {
3068 }
catch ( Exception
$e ) {
3091 $insertOptions = [], $selectOptions = [], $selectJoinConds = []
3093 $destTable = $this->
tableName( $destTable );
3095 if ( !is_array( $insertOptions ) ) {
3096 $insertOptions = [ $insertOptions ];
3103 array_values( $varMap ),
3110 $sql =
"INSERT $insertOptions" .
3111 " INTO $destTable (" . implode(
',', array_keys( $varMap ) ) .
') ' .
3137 if ( !is_numeric( $limit ) ) {
3139 "Invalid non-numeric limit passed to limitResult()\n" );
3142 return "$sql LIMIT "
3143 . ( ( is_numeric( $offset ) && $offset != 0 ) ?
"{$offset}," :
"" )
3152 $glue = $all ?
') UNION ALL (' :
') UNION (';
3154 return '(' . implode( $glue, $sqls ) .
')';
3158 $table,
$vars,
array $permute_conds, $extra_conds =
'',
$fname = __METHOD__,
3163 foreach ( $permute_conds
as $field => $values ) {
3168 $values = array_unique( $values );
3170 foreach ( $conds
as $cond ) {
3173 $newConds[] = $cond;
3179 $extra_conds = $extra_conds ===
'' ? [] : (
array)$extra_conds;
3183 if (
count( $conds ) === 1 &&
3196 $limit =
$options[
'LIMIT'] ??
null;
3197 $offset =
$options[
'OFFSET'] ??
false;
3202 if ( array_key_exists(
'INNER ORDER BY',
$options ) ) {
3205 if ( $limit !==
null && is_numeric( $offset ) && $offset != 0 ) {
3209 $options[
'LIMIT'] = $limit + $offset;
3215 foreach ( $conds
as $cond ) {
3221 if ( $limit !==
null ) {
3222 $sql = $this->
limitResult( $sql, $limit, $offset );
3229 if ( is_array( $cond ) ) {
3233 return " (CASE WHEN $cond THEN $trueVal ELSE $falseVal END) ";
3237 return "REPLACE({$orig}, {$old}, {$new})";
3289 $args = func_get_args();
3290 $function = array_shift(
$args );
3293 $this->
begin( __METHOD__ );
3300 $retVal = $function( ...
$args );
3305 usleep( mt_rand( self::DEADLOCK_DELAY_MIN, self::DEADLOCK_DELAY_MAX ) );
3311 }
while ( --$tries > 0 );
3313 if ( $tries <= 0 ) {
3318 $this->
commit( __METHOD__ );
3325 # Real waits are implemented in the subclass.
3353 $this->
begin( __METHOD__, self::TRANSACTION_INTERNAL );
3354 $this->trxAutomatic =
true;
3370 $this->
begin( __METHOD__, self::TRANSACTION_INTERNAL );
3371 $this->trxAutomatic =
true;
3378 $this->
startAtomic( __METHOD__, self::ATOMIC_CANCELABLE );
3382 }
catch ( Exception
$e ) {
3393 if ( $this->
trxLevel && $this->trxAtomicLevels ) {
3394 $levelInfo = end( $this->trxAtomicLevels );
3396 return $levelInfo[1];
3409 foreach ( $this->trxPreCommitCallbacks
as $key => $info ) {
3410 if ( $info[2] === $old ) {
3411 $this->trxPreCommitCallbacks[$key][2] = $new;
3414 foreach ( $this->trxIdleCallbacks
as $key => $info ) {
3415 if ( $info[2] === $old ) {
3416 $this->trxIdleCallbacks[$key][2] = $new;
3419 foreach ( $this->trxEndCallbacks
as $key => $info ) {
3420 if ( $info[2] === $old ) {
3421 $this->trxEndCallbacks[$key][2] = $new;
3432 $this->trxIdleCallbacks = array_filter(
3433 $this->trxIdleCallbacks,
3434 function ( $entry )
use ( $sectionIds ) {
3435 return !in_array( $entry[2], $sectionIds,
true );
3438 $this->trxPreCommitCallbacks = array_filter(
3439 $this->trxPreCommitCallbacks,
3440 function ( $entry )
use ( $sectionIds ) {
3441 return !in_array( $entry[2], $sectionIds,
true );
3445 foreach ( $this->trxEndCallbacks
as $key => $entry ) {
3446 if ( in_array( $entry[2], $sectionIds,
true ) ) {
3447 $callback = $entry[0];
3448 $this->trxEndCallbacks[$key][0] =
function ()
use ( $callback ) {
3449 return $callback( self::TRIGGER_ROLLBACK, $this );
3457 $this->trxRecurringCallbacks[
$name] = $callback;
3459 unset( $this->trxRecurringCallbacks[
$name] );
3472 $this->trxEndCallbacksSuppressed = $suppress;
3487 throw new DBUnexpectedError( $this, __METHOD__ .
': a transaction is still open.' );
3490 if ( $this->trxEndCallbacksSuppressed ) {
3499 $callbacks = array_merge(
3500 $this->trxIdleCallbacks,
3501 $this->trxEndCallbacks
3503 $this->trxIdleCallbacks = [];
3504 $this->trxEndCallbacks = [];
3505 foreach ( $callbacks
as $callback ) {
3507 list( $phpCallback ) = $callback;
3510 call_user_func( $phpCallback, $trigger, $this );
3511 }
catch ( Exception $ex ) {
3512 call_user_func( $this->errorLogger, $ex );
3517 $this->
rollback( __METHOD__, self::FLUSHING_INTERNAL );
3527 }
while (
count( $this->trxIdleCallbacks ) );
3529 if (
$e instanceof Exception ) {
3551 $this->trxPreCommitCallbacks = [];
3552 foreach ( $callbacks
as $callback ) {
3555 list( $phpCallback ) = $callback;
3556 $phpCallback( $this );
3557 }
catch ( Exception $ex ) {
3562 }
while (
count( $this->trxPreCommitCallbacks ) );
3564 if (
$e instanceof Exception ) {
3581 if ( $this->trxEndCallbacksSuppressed ) {
3588 foreach ( $this->trxRecurringCallbacks
as $phpCallback ) {
3590 $phpCallback( $trigger, $this );
3591 }
catch ( Exception $ex ) {
3597 if (
$e instanceof Exception ) {
3650 if ( strlen( $savepointId ) > 30 ) {
3655 'There have been an excessively large number of atomic sections in a transaction'
3656 .
" started by $this->trxFname (at $fname)"
3660 return $savepointId;
3664 $fname = __METHOD__, $cancelable = self::ATOMIC_NOT_CANCELABLE
3669 $this->
begin( $fname, self::TRANSACTION_INTERNAL );
3678 $this->trxAutomaticAtomic =
true;
3680 } elseif ( $cancelable === self::ATOMIC_CANCELABLE ) {
3686 $this->trxAtomicLevels[] = [
$fname, $sectionId, $savepointId ];
3687 $this->queryLogger->debug(
'startAtomic: entering level ' .
3688 (
count( $this->trxAtomicLevels ) - 1 ) .
" ($fname)" );
3694 if ( !$this->
trxLevel || !$this->trxAtomicLevels ) {
3695 throw new DBUnexpectedError( $this,
"No atomic section is open (got $fname)." );
3699 $pos =
count( $this->trxAtomicLevels ) - 1;
3700 list( $savedFname, $sectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3701 $this->queryLogger->debug(
"endAtomic: leaving level $pos ($fname)" );
3703 if ( $savedFname !==
$fname ) {
3706 "Invalid atomic section ended (got $fname but expected $savedFname)."
3711 array_pop( $this->trxAtomicLevels );
3713 if ( !$this->trxAtomicLevels && $this->trxAutomaticAtomic ) {
3714 $this->
commit( $fname, self::FLUSHING_INTERNAL );
3715 } elseif ( $savepointId !==
null && $savepointId !== self::$NOT_APPLICABLE ) {
3722 if ( $currentSectionId ) {
3730 if ( !$this->
trxLevel || !$this->trxAtomicLevels ) {
3731 throw new DBUnexpectedError( $this,
"No atomic section is open (got $fname)." );
3734 $excisedFnames = [];
3735 if ( $sectionId !==
null ) {
3738 foreach ( $this->trxAtomicLevels
as $i =>
list( $asFname, $asId, $spId ) ) {
3739 if ( $asId === $sectionId ) {
3748 $len =
count( $this->trxAtomicLevels );
3749 for ( $i = $pos + 1; $i < $len; ++$i ) {
3750 $excisedFnames[] = $this->trxAtomicLevels[$i][0];
3751 $excisedIds[] = $this->trxAtomicLevels[$i][1];
3753 $this->trxAtomicLevels = array_slice( $this->trxAtomicLevels, 0, $pos + 1 );
3758 $pos =
count( $this->trxAtomicLevels ) - 1;
3759 list( $savedFname, $savedSectionId, $savepointId ) = $this->trxAtomicLevels[$pos];
3761 if ( $excisedFnames ) {
3762 $this->queryLogger->debug(
"cancelAtomic: canceling level $pos ($savedFname) " .
3763 "and descendants " . implode(
', ', $excisedFnames ) );
3765 $this->queryLogger->debug(
"cancelAtomic: canceling level $pos ($savedFname)" );
3768 if ( $savedFname !==
$fname ) {
3771 "Invalid atomic section ended (got $fname but expected $savedFname)."
3776 array_pop( $this->trxAtomicLevels );
3779 if ( $savepointId !==
null ) {
3781 if ( $savepointId === self::$NOT_APPLICABLE ) {
3782 $this->
rollback( $fname, self::FLUSHING_INTERNAL );
3786 $this->trxStatusIgnoredCause =
null;
3788 } elseif ( $this->
trxStatus > self::STATUS_TRX_ERROR ) {
3790 $this->
trxStatus = self::STATUS_TRX_ERROR;
3793 "Uncancelable atomic section canceled (got $fname)."
3797 $this->affectedRowCount = 0;
3801 $fname, callable $callback, $cancelable = self::ATOMIC_NOT_CANCELABLE
3803 $sectionId = $this->
startAtomic( $fname, $cancelable );
3806 }
catch ( Exception
$e ) {
3816 final public function begin(
$fname = __METHOD__, $mode = self::TRANSACTION_EXPLICIT ) {
3817 static $modes = [ self::TRANSACTION_EXPLICIT, self::TRANSACTION_INTERNAL ];
3818 if ( !in_array( $mode, $modes,
true ) ) {
3819 throw new DBUnexpectedError( $this,
"$fname: invalid mode parameter '$mode'." );
3824 if ( $this->trxAtomicLevels ) {
3826 $msg =
"$fname: Got explicit BEGIN while atomic section(s) $levels are open.";
3828 } elseif ( !$this->trxAutomatic ) {
3829 $msg =
"$fname: Explicit transaction already active (from {$this->trxFname}).";
3832 $msg =
"$fname: Implicit transaction already active (from {$this->trxFname}).";
3836 $msg =
"$fname: Implicit transaction expected (DBO_TRX set).";
3845 $this->trxStatusIgnoredCause =
null;
3846 $this->trxAtomicCounter = 0;
3848 $this->trxFname =
$fname;
3849 $this->trxDoneWrites =
false;
3850 $this->trxAutomaticAtomic =
false;
3851 $this->trxAtomicLevels = [];
3852 $this->trxShortId = sprintf(
'%06x', mt_rand( 0, 0xffffff ) );
3853 $this->trxWriteDuration = 0.0;
3854 $this->trxWriteQueryCount = 0;
3855 $this->trxWriteAffectedRows = 0;
3856 $this->trxWriteAdjDuration = 0.0;
3857 $this->trxWriteAdjQueryCount = 0;
3858 $this->trxWriteCallers = [];
3861 $this->trxReplicaLag =
null;
3866 $this->trxAutomatic = ( $mode === self::TRANSACTION_INTERNAL );
3876 $this->
query(
'BEGIN', $fname );
3880 final public function commit( $fname = __METHOD__, $flush = self::FLUSHING_ONE ) {
3881 static $modes = [ self::FLUSHING_ONE, self::FLUSHING_ALL_PEERS, self::FLUSHING_INTERNAL ];
3882 if ( !in_array( $flush, $modes,
true ) ) {
3883 throw new DBUnexpectedError( $this,
"$fname: invalid flush parameter '$flush'." );
3886 if ( $this->
trxLevel && $this->trxAtomicLevels ) {
3891 "$fname: Got COMMIT while atomic sections $levels are still open."
3895 if ( $flush === self::FLUSHING_INTERNAL || $flush === self::FLUSHING_ALL_PEERS ) {
3898 } elseif ( !$this->trxAutomatic ) {
3901 "$fname: Flushing an explicit transaction, getting out of sync."
3906 $this->queryLogger->error(
3907 "$fname: No transaction to commit, something got out of sync." );
3909 } elseif ( $this->trxAutomatic ) {
3912 "$fname: Expected mass commit of all peer transactions (DBO_TRX set)."
3924 $this->
trxStatus = self::STATUS_TRX_NONE;
3926 if ( $this->trxDoneWrites ) {
3927 $this->lastWriteTime = microtime(
true );
3928 $this->trxProfiler->transactionWritingOut(
3933 $this->trxWriteAffectedRows
3938 if ( $flush !== self::FLUSHING_ALL_PEERS ) {
3952 $this->
query(
'COMMIT', $fname );
3957 final public function rollback( $fname = __METHOD__, $flush =
'' ) {
3960 if ( $flush !== self::FLUSHING_INTERNAL && $flush !== self::FLUSHING_ALL_PEERS ) {
3964 "$fname: Expected mass rollback of all peer transactions (DBO_TRX set)."
3975 $this->
trxStatus = self::STATUS_TRX_NONE;
3976 $this->trxAtomicLevels = [];
3978 if ( $this->trxDoneWrites ) {
3979 $this->trxProfiler->transactionWritingOut(
3984 $this->trxWriteAffectedRows
3991 $this->trxIdleCallbacks = [];
3992 $this->trxPreCommitCallbacks = [];
3995 if ( $trxActive && $flush !== self::FLUSHING_ALL_PEERS ) {
3998 }
catch ( Exception
$e ) {
4003 }
catch ( Exception
$e ) {
4007 $this->affectedRowCount = 0;
4019 # Disconnects cause rollback anyway, so ignore those errors
4020 $ignoreErrors =
true;
4021 $this->
query(
'ROLLBACK', $fname, $ignoreErrors );
4032 "$fname: Cannot flush snapshot because writes are pending ($fnames)."
4036 $this->
commit( $fname, self::FLUSHING_INTERNAL );
4044 $oldName, $newName, $temporary =
false,
$fname = __METHOD__
4046 throw new RuntimeException( __METHOD__ .
' is not implemented in descendant class' );
4050 throw new RuntimeException( __METHOD__ .
' is not implemented in descendant class' );
4054 throw new RuntimeException( __METHOD__ .
' is not implemented in descendant class' );
4058 $t =
new ConvertibleTimestamp( $ts );
4060 return $t->getTimestamp( TS_MW );
4064 if ( is_null( $ts ) ) {
4072 return ( $this->affectedRowCount ===
null )
4100 } elseif (
$result ===
true ) {
4108 public function ping( &$rtt =
null ) {
4110 if ( $this->
isOpen() && ( microtime(
true ) - $this->lastPing ) < self::PING_TTL ) {
4111 if ( !func_num_args() || $this->rttEstimate > 0 ) {
4119 $ok = ( $this->
query( self::PING_QUERY, __METHOD__,
true ) !==
false );
4137 $this->opened =
false;
4138 $this->conn =
false;
4148 $this->lastPing = microtime(
true );
4151 $this->connLogger->warning(
4152 $fname .
': lost connection to {dbserver}; reconnected',
4155 'trace' => (
new RuntimeException() )->getTraceAsString()
4161 $this->connLogger->error(
4162 $fname .
': lost connection to {dbserver} permanently',
4190 return ( $this->
trxLevel && $this->trxReplicaLag !==
null )
4204 'since' => microtime(
true )
4228 $res = [
'lag' => 0,
'since' => INF,
'pending' =>
false ];
4229 foreach ( func_get_args()
as $db ) {
4231 $status = $db->getSessionLagStatus();
4232 if (
$status[
'lag'] ===
false ) {
4233 $res[
'lag'] =
false;
4234 } elseif (
$res[
'lag'] !==
false ) {
4238 $res[
'pending'] =
$res[
'pending'] ?: $db->writesPending();
4257 if ( $b instanceof
Blob ) {
4268 callable $lineCallback =
null,
4269 callable $resultCallback =
null,
4271 callable $inputCallback =
null
4273 Wikimedia\suppressWarnings();
4274 $fp = fopen( $filename,
'r' );
4275 Wikimedia\restoreWarnings();
4277 if (
false === $fp ) {
4278 throw new RuntimeException(
"Could not open \"{$filename}\".\n" );
4282 $fname = __METHOD__ .
"( $filename )";
4287 $fp, $lineCallback, $resultCallback,
$fname, $inputCallback );
4288 }
catch ( Exception
$e ) {
4299 $this->schemaVars =
$vars;
4304 callable $lineCallback =
null,
4305 callable $resultCallback =
null,
4307 callable $inputCallback =
null
4309 $delimiterReset =
new ScopedCallback(
4317 while ( !feof( $fp ) ) {
4318 if ( $lineCallback ) {
4319 call_user_func( $lineCallback );
4322 $line = trim( fgets( $fp ) );
4324 if (
$line ==
'' ) {
4340 if ( $done || feof( $fp ) ) {
4343 if ( $inputCallback ) {
4344 $callbackResult = $inputCallback( $cmd );
4346 if ( is_string( $callbackResult ) || !$callbackResult ) {
4347 $cmd = $callbackResult;
4354 if ( $resultCallback ) {
4355 $resultCallback(
$res, $this );
4358 if (
false ===
$res ) {
4361 return "Query \"{$cmd}\" failed with error code \"$err\".\n";
4368 ScopedCallback::consume( $delimiterReset );
4380 if ( $this->delimiter ) {
4382 $newLine = preg_replace(
4383 '/' . preg_quote( $this->delimiter,
'/' ) .
'$/',
'', $newLine );
4384 if ( $newLine != $prev ) {
4414 return preg_replace_callback(
4416 /\* (\$wgDBprefix|[_i]) \*/ (\w*) | # 1-2. tableName, indexName
4417 \'\{\$ (\w+) }\' | # 3. addQuotes
4418 `\{\$ (\w+) }` | # 4. addIdentifierQuotes
4419 /\*\$ (\w+) \*/ # 5. leave unencoded
4424 if ( isset( $m[1] ) && $m[1] !==
'' ) {
4425 if ( $m[1] ===
'i' ) {
4430 } elseif ( isset( $m[3] ) && $m[3] !==
'' && array_key_exists( $m[3],
$vars ) ) {
4432 } elseif ( isset( $m[4] ) && $m[4] !==
'' && array_key_exists( $m[4],
$vars ) ) {
4434 } elseif ( isset( $m[5] ) && $m[5] !==
'' && array_key_exists( $m[5],
$vars ) ) {
4435 return $vars[$m[5]];
4451 if ( $this->schemaVars ) {
4474 return !isset( $this->namedLocksHeld[$lockName] );
4477 public function lock( $lockName, $method, $timeout = 5 ) {
4478 $this->namedLocksHeld[$lockName] = 1;
4483 public function unlock( $lockName, $method ) {
4484 unset( $this->namedLocksHeld[$lockName] );
4495 "$fname: Cannot flush pre-lock snapshot because writes are pending ($fnames)."
4499 if ( !$this->
lock( $lockKey,
$fname, $timeout ) ) {
4503 $unlocker =
new ScopedCallback(
function ()
use ( $lockKey,
$fname ) {
4519 $this->
commit( $fname, self::FLUSHING_INTERNAL );
4534 throw new DBUnexpectedError( $this,
"Transaction writes or callbacks still pending." );
4583 public function dropTable( $tableName, $fName = __METHOD__ ) {
4584 if ( !$this->
tableExists( $tableName, $fName ) ) {
4587 $sql =
"DROP TABLE " . $this->
tableName( $tableName ) .
" CASCADE";
4589 return $this->
query( $sql, $fName );
4597 return ( $expiry ==
'' || $expiry ==
'infinity' || $expiry == $this->
getInfinity() )
4603 if ( $expiry ==
'' || $expiry ==
'infinity' || $expiry == $this->
getInfinity() ) {
4607 return ConvertibleTimestamp::convert( $format, $expiry );
4622 $reason = $this->
getLBInfo(
'readOnlyReason' );
4624 return is_string( $reason ) ? $reason :
false;
4628 $this->tableAliases = $aliases;
4632 $this->indexAliases = $aliases;
4647 if ( !$this->conn ) {
4650 'DB connection was already closed or the connection dropped.'
4670 $this->connLogger->warning(
4671 "Cloning " .
static::class .
" is not recommended; forking connection:\n" .
4672 (
new RuntimeException() )->getTraceAsString()
4677 $this->opened =
false;
4678 $this->conn =
false;
4679 $this->trxEndCallbacks = [];
4689 $this->lastPing = microtime(
true );
4699 throw new RuntimeException(
'Database serialization may cause problems, since ' .
4700 'the connection is not restored on wakeup.' );
4707 if ( $this->
trxLevel && $this->trxDoneWrites ) {
4708 trigger_error(
"Uncommitted DB writes (transaction from {$this->trxFname})." );
4712 if ( $danglingWriters ) {
4713 $fnames = implode(
', ', $danglingWriters );
4714 trigger_error(
"DB transaction writes or callbacks still pending ($fnames)." );
4717 if ( $this->conn ) {
4720 Wikimedia\suppressWarnings();
4722 Wikimedia\restoreWarnings();
4723 $this->conn =
false;
4724 $this->opened =
false;
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, 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. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
processing should stop and the error should be shown to the user * false
Simple store for keeping values in an associative array for the current process.
static newFromId( $domain)
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 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name '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 since 1.16! 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:Array with elements of the form "language:title" in the order that they will be output. & $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':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. 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 Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist & $tables
Class representing a cache/ephemeral data store.
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
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same user
if(is_array( $mode)) switch( $mode) $input
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
static configuration should be added through ResourceLoaderGetConfigVars instead & $vars
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
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
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Allows to change the fields on the form that will be generated $name
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead 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 set this to the key of the message First element is the message key
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $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 account incomplete not yet checked for validity & $retval
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
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
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 & $options
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
fieldInfo( $table, $field)
mysql_fetch_field() wrapper Returns false if the field doesn't exist
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Class to handle database/prefix specification for IDatabase domains.
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
Advanced database interface for IDatabase handles that include maintenance methods.