5use Wikimedia\Assert\Assert;
73 $this->loadBalancer = $loadBalancer;
74 $this->commentStore = $commentStore;
75 $this->actorMigration = $actorMigration;
84 Hooks::run(
'WatchedItemQueryServiceExtensions', [ &$this->
extensions, $this ] );
86 return $this->extensions;
94 return $this->loadBalancer->getConnectionRef(
DB_REPLICA, [
'watchlist' ] );
144 'includeFields' => [],
145 'namespaceIds' => [],
147 'allRevisions' =>
false,
148 'usedInGenerator' =>
false
154 '$options[\'rcTypes\']',
155 'must be an array containing only: RC_EDIT, RC_NEW, RC_LOG, RC_EXTERNAL and/or RC_CATEGORIZE'
158 !isset(
$options[
'dir'] ) || in_array(
$options[
'dir'], [ self::DIR_OLDER, self::DIR_NEWER ] ),
160 'must be DIR_OLDER or DIR_NEWER'
163 !isset(
$options[
'start'] ) && !isset(
$options[
'end'] ) && $startFrom ===
null
166 'must be provided when providing the "start" or "end" options or the $startFrom parameter'
170 '$options[\'startFrom\']',
171 'must not be provided, use $startFrom instead'
174 !isset( $startFrom ) || ( is_array( $startFrom ) && count( $startFrom ) === 2 ),
176 'must be a two-element array'
178 if ( array_key_exists(
'watchlistOwner',
$options ) ) {
179 Assert::parameterType(
182 '$options[\'watchlistOwner\']'
185 isset(
$options[
'watchlistOwnerToken'] ),
186 '$options[\'watchlistOwnerToken\']',
187 'must be provided when providing watchlistOwner option'
199 if ( $startFrom !==
null ) {
204 $extension->modifyWatchedItemsWithRCInfoQuery(
223 $limit = $dbOptions[
'LIMIT'] ?? INF;
226 foreach (
$res as $row ) {
227 if ( --$limit <= 0 ) {
228 $startFrom = [ $row->rc_timestamp, $row->rc_id ];
235 new TitleValue( (
int)$row->rc_namespace, $row->rc_title ),
236 $row->wl_notificationtimestamp
243 $extension->modifyWatchedItemsWithRCInfo(
$user,
$options, $db, $items,
$res, $startFrom );
269 if (
$user->isAnon() ) {
275 $options += [
'namespaceIds' => [] ];
278 !isset(
$options[
'sort'] ) || in_array(
$options[
'sort'], [ self::SORT_ASC, self::SORT_DESC ] ),
279 '$options[\'sort\']',
280 'must be SORT_ASC or SORT_DESC'
283 !isset(
$options[
'filter'] ) || in_array(
284 $options[
'filter'], [ self::FILTER_CHANGED, self::FILTER_NOT_CHANGED ]
286 '$options[\'filter\']',
287 'must be FILTER_CHANGED or FILTER_NOT_CHANGED'
292 '$options[\'sort\']',
293 'must be provided if any of "from", "until", "startFrom" options is provided'
303 [
'wl_namespace',
'wl_title',
'wl_notificationtimestamp' ],
310 foreach (
$res as $row ) {
314 new TitleValue( (
int)$row->wl_namespace, $row->wl_title ),
315 $row->wl_notificationtimestamp
319 return $watchedItems;
325 $allFields = get_object_vars( $row );
326 $rcKeys = array_filter(
327 array_keys( $allFields ),
329 return substr( $key, 0, 3 ) ===
'rc_';
332 return array_intersect_key( $allFields, array_flip( $rcKeys ) );
336 $tables = [
'recentchanges',
'watchlist' ];
340 if ( in_array( self::INCLUDE_COMMENT,
$options[
'includeFields'] ) ) {
341 $tables += $this->commentStore->getJoin(
'rc_comment' )[
'tables'];
343 if ( in_array( self::INCLUDE_TAGS,
$options[
'includeFields'] ) ) {
346 if ( in_array( self::INCLUDE_USER,
$options[
'includeFields'] ) ||
347 in_array( self::INCLUDE_USER_ID,
$options[
'includeFields'] ) ||
348 in_array( self::FILTER_ANON,
$options[
'filters'] ) ||
349 in_array( self::FILTER_NOT_ANON,
$options[
'filters'] ) ||
350 array_key_exists(
'onlyByUser',
$options ) || array_key_exists(
'notByUser',
$options )
352 $tables += $this->actorMigration->getJoin(
'rc_user' )[
'tables'];
365 'wl_notificationtimestamp'
373 if (
$options[
'usedInGenerator'] ) {
375 $rcIdFields = [
'rc_this_oldid' ];
377 $rcIdFields = [
'rc_cur_id' ];
380 $fields = array_merge( $fields, $rcIdFields );
382 if ( in_array( self::INCLUDE_FLAGS,
$options[
'includeFields'] ) ) {
383 $fields = array_merge( $fields, [
'rc_type',
'rc_minor',
'rc_bot' ] );
385 if ( in_array( self::INCLUDE_USER,
$options[
'includeFields'] ) ) {
386 $fields[
'rc_user_text'] = $this->actorMigration->getJoin(
'rc_user' )[
'fields'][
'rc_user_text'];
388 if ( in_array( self::INCLUDE_USER_ID,
$options[
'includeFields'] ) ) {
389 $fields[
'rc_user'] = $this->actorMigration->getJoin(
'rc_user' )[
'fields'][
'rc_user'];
391 if ( in_array( self::INCLUDE_COMMENT,
$options[
'includeFields'] ) ) {
392 $fields += $this->commentStore->getJoin(
'rc_comment' )[
'fields'];
394 if ( in_array( self::INCLUDE_PATROL_INFO,
$options[
'includeFields'] ) ) {
395 $fields = array_merge( $fields, [
'rc_patrolled',
'rc_log_type' ] );
397 if ( in_array( self::INCLUDE_SIZES,
$options[
'includeFields'] ) ) {
398 $fields = array_merge( $fields, [
'rc_old_len',
'rc_new_len' ] );
400 if ( in_array( self::INCLUDE_LOG_INFO,
$options[
'includeFields'] ) ) {
401 $fields = array_merge( $fields, [
'rc_logid',
'rc_log_type',
'rc_log_action',
'rc_params' ] );
403 if ( in_array( self::INCLUDE_TAGS,
$options[
'includeFields'] ) ) {
405 $fields[
'rc_tags'] =
'ts_tags';
417 $conds = [
'wl_user' => $watchlistOwnerId ];
421 [
'rc_this_oldid=page_latest',
'rc_type=' .
RC_LOG ],
427 $conds[
'wl_namespace'] = array_map(
'intval',
$options[
'namespaceIds'] );
430 if ( array_key_exists(
'rcTypes',
$options ) ) {
431 $conds[
'rc_type'] = array_map(
'intval',
$options[
'rcTypes'] );
434 $conds = array_merge(
442 if ( $db->
getType() ===
'mysql' ) {
444 $conds[] =
'rc_timestamp > ' . $db->
addQuotes(
'' );
451 if ( $deletedPageLogCond ) {
452 $conds[] = $deletedPageLogCond;
459 if ( array_key_exists(
'watchlistOwner',
$options ) ) {
461 $watchlistOwner =
$options[
'watchlistOwner'];
462 $ownersToken = $watchlistOwner->getOption(
'watchlisttoken' );
463 $token =
$options[
'watchlistOwnerToken'];
464 if ( $ownersToken ==
'' || !hash_equals( $ownersToken, $token ) ) {
467 return $watchlistOwner->getId();
469 return $user->getId();
475 if ( in_array( self::FILTER_MINOR,
$options[
'filters'] ) ) {
476 $conds[] =
'rc_minor != 0';
477 } elseif ( in_array( self::FILTER_NOT_MINOR,
$options[
'filters'] ) ) {
478 $conds[] =
'rc_minor = 0';
481 if ( in_array( self::FILTER_BOT,
$options[
'filters'] ) ) {
482 $conds[] =
'rc_bot != 0';
483 } elseif ( in_array( self::FILTER_NOT_BOT,
$options[
'filters'] ) ) {
484 $conds[] =
'rc_bot = 0';
487 if ( in_array( self::FILTER_ANON,
$options[
'filters'] ) ) {
488 $conds[] = $this->actorMigration->isAnon(
489 $this->actorMigration->getJoin(
'rc_user' )[
'fields'][
'rc_user']
491 } elseif ( in_array( self::FILTER_NOT_ANON,
$options[
'filters'] ) ) {
492 $conds[] = $this->actorMigration->isNotAnon(
493 $this->actorMigration->getJoin(
'rc_user' )[
'fields'][
'rc_user']
497 if (
$user->useRCPatrol() ||
$user->useNPPatrol() ) {
500 if ( in_array( self::FILTER_PATROLLED,
$options[
'filters'] ) ) {
501 $conds[] =
'rc_patrolled != ' . RecentChange::PRC_UNPATROLLED;
502 } elseif ( in_array( self::FILTER_NOT_PATROLLED,
$options[
'filters'] ) ) {
503 $conds[
'rc_patrolled'] = RecentChange::PRC_UNPATROLLED;
506 if ( in_array( self::FILTER_AUTOPATROLLED,
$options[
'filters'] ) ) {
507 $conds[
'rc_patrolled'] = RecentChange::PRC_AUTOPATROLLED;
508 } elseif ( in_array( self::FILTER_NOT_AUTOPATROLLED,
$options[
'filters'] ) ) {
509 $conds[] =
'rc_patrolled != ' . RecentChange::PRC_AUTOPATROLLED;
513 if ( in_array( self::FILTER_UNREAD,
$options[
'filters'] ) ) {
514 $conds[] =
'rc_timestamp >= wl_notificationtimestamp';
515 } elseif ( in_array( self::FILTER_NOT_UNREAD,
$options[
'filters'] ) ) {
517 $conds[] =
'wl_notificationtimestamp IS NULL OR rc_timestamp < wl_notificationtimestamp';
531 $after =
$options[
'dir'] === self::DIR_OLDER ?
'<=' :
'>=';
532 $conds[] =
'rc_timestamp ' . $after .
' ' .
536 $before =
$options[
'dir'] === self::DIR_OLDER ?
'>=' :
'<=';
537 $conds[] =
'rc_timestamp ' . $before .
' ' .
545 if ( !array_key_exists(
'onlyByUser',
$options ) && !array_key_exists(
'notByUser',
$options ) ) {
551 if ( array_key_exists(
'onlyByUser',
$options ) ) {
553 $conds[] = $this->actorMigration->getWhere( $db,
'rc_user', $byUser )[
'conds'];
554 } elseif ( array_key_exists(
'notByUser',
$options ) ) {
556 $conds[] =
'NOT(' . $this->actorMigration->getWhere( $db,
'rc_user', $byUser )[
'conds'] .
')';
561 if ( !
$user->isAllowed(
'deletedhistory' ) ) {
563 } elseif ( !
$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
567 $conds[] = $db->
bitAnd(
'rc_deleted', $bitmask ) .
" != $bitmask";
577 if ( !
$user->isAllowed(
'deletedhistory' ) ) {
579 } elseif ( !
$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
585 $db->
bitAnd(
'rc_deleted', $bitmask ) .
" != $bitmask",
592 $op =
$options[
'dir'] === self::DIR_OLDER ?
'<' :
'>';
593 list( $rcTimestamp, $rcId ) = $startFrom;
598 "rc_timestamp $op $rcTimestamp",
601 "rc_timestamp = $rcTimestamp",
612 $conds = [
'wl_user' =>
$user->getId() ];
614 $conds[
'wl_namespace'] = array_map(
'intval',
$options[
'namespaceIds'] );
616 if ( isset(
$options[
'filter'] ) ) {
618 if ( $filter === self::FILTER_CHANGED ) {
619 $conds[] =
'wl_notificationtimestamp IS NOT NULL';
621 $conds[] =
'wl_notificationtimestamp IS NULL';
626 $op =
$options[
'sort'] === self::SORT_ASC ?
'>' :
'<';
630 $op =
$options[
'sort'] === self::SORT_ASC ?
'<' :
'>';
633 if ( isset(
$options[
'startFrom'] ) ) {
634 $op =
$options[
'sort'] === self::SORT_ASC ?
'>' :
'<';
669 if ( array_key_exists(
'dir',
$options ) ) {
671 $dbOptions[
'ORDER BY'] = [
'rc_timestamp' .
$sort,
'rc_id' .
$sort ];
674 if ( array_key_exists(
'limit',
$options ) ) {
675 $dbOptions[
'LIMIT'] = (int)
$options[
'limit'] + 1;
683 if ( array_key_exists(
'sort',
$options ) ) {
684 $dbOptions[
'ORDER BY'] = [
685 "wl_namespace {$options['sort']}",
686 "wl_title {$options['sort']}"
688 if ( count(
$options[
'namespaceIds'] ) === 1 ) {
689 $dbOptions[
'ORDER BY'] =
"wl_title {$options['sort']}";
692 if ( array_key_exists(
'limit',
$options ) ) {
693 $dbOptions[
'LIMIT'] = (int)
$options[
'limit'];
700 'watchlist' => [
'INNER JOIN',
702 'wl_namespace=rc_namespace',
708 $joinConds[
'page'] = [
'LEFT JOIN',
'rc_cur_id=page_id' ];
710 if ( in_array( self::INCLUDE_COMMENT,
$options[
'includeFields'] ) ) {
711 $joinConds += $this->commentStore->getJoin(
'rc_comment' )[
'joins'];
713 if ( in_array( self::INCLUDE_TAGS,
$options[
'includeFields'] ) ) {
714 $joinConds[
'tag_summary'] = [
'LEFT JOIN', [
'rc_id=ts_rc_id' ] ];
716 if ( in_array( self::INCLUDE_USER,
$options[
'includeFields'] ) ||
717 in_array( self::INCLUDE_USER_ID,
$options[
'includeFields'] ) ||
718 in_array( self::FILTER_ANON,
$options[
'filters'] ) ||
719 in_array( self::FILTER_NOT_ANON,
$options[
'filters'] ) ||
720 array_key_exists(
'onlyByUser',
$options ) || array_key_exists(
'notByUser',
$options )
722 $joinConds += $this->actorMigration->getJoin(
'rc_user' )[
'joins'];
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This class handles the logic for the actor table migration.
static newWithMessage(ApiBase $module=null, $msg, $code=null, $data=null, $httpCode=0)
Represents a page (or page fragment) title within MediaWiki.
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
getWatchedItemsForUser(User $user, array $options=[])
For simple listing of user's watchlist items, see WatchedItemStore::getWatchedItemsForUser.
const INCLUDE_AUTOPATROL_INFO
const FILTER_NOT_AUTOPATROLLED
getExtraDeletedPageLogEntryRelatedCond(IDatabase $db, User $user)
WatchedItemQueryServiceExtension[] null $extensions
getUserRelatedConds(IDatabase $db, User $user, array $options)
const INCLUDE_PATROL_INFO
getWatchedItemsWithRCInfoQueryDbOptions(array $options)
getWatchedItemsWithRCInfoQueryFilterConds(User $user, array $options)
getWatchedItemsWithRCInfoQueryTables(array $options)
getWatchedItemsWithRCInfoQueryFields(array $options)
getWatchedItemsWithRCInfoQueryConds(IDatabase $db, User $user, array $options)
getWatchedItemsForUserQueryConds(IDatabase $db, User $user, array $options)
const FILTER_AUTOPATROLLED
getFromUntilTargetConds(IDatabase $db, LinkTarget $target, $op)
Creates a query condition part for getting only items before or after the given link target (while or...
LoadBalancer $loadBalancer
getStartEndConds(IDatabase $db, array $options)
ActorMigration $actorMigration
const FILTER_NOT_PATROLLED
__construct(LoadBalancer $loadBalancer, CommentStore $commentStore, ActorMigration $actorMigration)
getWatchlistOwnerId(User $user, array $options)
getWatchedItemsWithRecentChangeInfo(User $user, array $options=[], &$startFrom=null)
getWatchedItemsWithRCInfoQueryJoinConds(array $options)
getWatchedItemsForUserQueryDbOptions(array $options)
getRecentChangeFieldsFromRow(stdClass $row)
getStartFromConds(IDatabase $db, array $options, array $startFrom)
CommentStore $commentStore
Representation of a pair of user and title for watchlist entries.
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types as usual *javascript user provided javascript code *json simple implementation for use by extensions
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 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
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 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
processing should stop and the error should be shown to the user * false
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
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
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))