MediaWiki REL1_31
WatchedItemQueryService Class Reference
Collaboration diagram for WatchedItemQueryService:

Public Member Functions

 __construct (LoadBalancer $loadBalancer, CommentStore $commentStore, ActorMigration $actorMigration)
 
 getWatchedItemsForUser (User $user, array $options=[])
 For simple listing of user's watchlist items, see WatchedItemStore::getWatchedItemsForUser.
 
 getWatchedItemsWithRecentChangeInfo (User $user, array $options=[], &$startFrom=null)
 

Public Attributes

const DIR_NEWER = 'newer'
 
const DIR_OLDER = 'older'
 
const FILTER_ANON = 'anon'
 
const FILTER_AUTOPATROLLED = 'autopatrolled'
 
const FILTER_BOT = 'bot'
 
const FILTER_CHANGED = 'changed'
 
const FILTER_MINOR = 'minor'
 
const FILTER_NOT_ANON = '!anon'
 
const FILTER_NOT_AUTOPATROLLED = '!autopatrolled'
 
const FILTER_NOT_BOT = '!bot'
 
const FILTER_NOT_CHANGED = '!changed'
 
const FILTER_NOT_MINOR = '!minor'
 
const FILTER_NOT_PATROLLED = '!patrolled'
 
const FILTER_NOT_UNREAD = '!unread'
 
const FILTER_PATROLLED = 'patrolled'
 
const FILTER_UNREAD = 'unread'
 
const INCLUDE_AUTOPATROL_INFO = 'autopatrol'
 
const INCLUDE_COMMENT = 'comment'
 
const INCLUDE_FLAGS = 'flags'
 
const INCLUDE_LOG_INFO = 'loginfo'
 
const INCLUDE_PATROL_INFO = 'patrol'
 
const INCLUDE_SIZES = 'sizes'
 
const INCLUDE_TAGS = 'tags'
 
const INCLUDE_USER = 'user'
 
const INCLUDE_USER_ID = 'userid'
 
const SORT_ASC = 'ASC'
 
const SORT_DESC = 'DESC'
 

Private Member Functions

 getConnection ()
 
 getExtensions ()
 
 getExtraDeletedPageLogEntryRelatedCond (IDatabase $db, User $user)
 
 getFromUntilTargetConds (IDatabase $db, LinkTarget $target, $op)
 Creates a query condition part for getting only items before or after the given link target (while ordering using $sort mode)
 
 getRecentChangeFieldsFromRow (stdClass $row)
 
 getStartEndConds (IDatabase $db, array $options)
 
 getStartFromConds (IDatabase $db, array $options, array $startFrom)
 
 getUserRelatedConds (IDatabase $db, User $user, array $options)
 
 getWatchedItemsForUserQueryConds (IDatabase $db, User $user, array $options)
 
 getWatchedItemsForUserQueryDbOptions (array $options)
 
 getWatchedItemsWithRCInfoQueryConds (IDatabase $db, User $user, array $options)
 
 getWatchedItemsWithRCInfoQueryDbOptions (array $options)
 
 getWatchedItemsWithRCInfoQueryFields (array $options)
 
 getWatchedItemsWithRCInfoQueryFilterConds (User $user, array $options)
 
 getWatchedItemsWithRCInfoQueryJoinConds (array $options)
 
 getWatchedItemsWithRCInfoQueryTables (array $options)
 
 getWatchlistOwnerId (User $user, array $options)
 

Private Attributes

ActorMigration $actorMigration
 
CommentStore $commentStore
 
WatchedItemQueryServiceExtension[] null $extensions = null
 
LoadBalancer $loadBalancer
 

Detailed Description

Definition at line 18 of file WatchedItemQueryService.php.

Constructor & Destructor Documentation

◆ __construct()

WatchedItemQueryService::__construct ( LoadBalancer  $loadBalancer,
CommentStore  $commentStore,
ActorMigration  $actorMigration 
)

Definition at line 68 of file WatchedItemQueryService.php.

Member Function Documentation

◆ getConnection()

WatchedItemQueryService::getConnection ( )
private
Returns
IDatabase
Exceptions
MWException

Definition at line 93 of file WatchedItemQueryService.php.

References DB_REPLICA.

Referenced by getWatchedItemsForUser(), and getWatchedItemsWithRecentChangeInfo().

◆ getExtensions()

WatchedItemQueryService::getExtensions ( )
private

◆ getExtraDeletedPageLogEntryRelatedCond()

WatchedItemQueryService::getExtraDeletedPageLogEntryRelatedCond ( IDatabase  $db,
User  $user 
)
private

◆ getFromUntilTargetConds()

WatchedItemQueryService::getFromUntilTargetConds ( IDatabase  $db,
LinkTarget  $target,
  $op 
)
private

Creates a query condition part for getting only items before or after the given link target (while ordering using $sort mode)

Parameters
IDatabase$db
LinkTarget$target
string$opcomparison operator to use in the conditions
Returns
string

Definition at line 650 of file WatchedItemQueryService.php.

References Wikimedia\Rdbms\IDatabase\addQuotes(), MediaWiki\Linker\LinkTarget\getDBkey(), MediaWiki\Linker\LinkTarget\getNamespace(), LIST_AND, LIST_OR, and Wikimedia\Rdbms\IDatabase\makeList().

Referenced by getWatchedItemsForUserQueryConds().

◆ getRecentChangeFieldsFromRow()

WatchedItemQueryService::getRecentChangeFieldsFromRow ( stdClass  $row)
private

Definition at line 322 of file WatchedItemQueryService.php.

Referenced by getWatchedItemsWithRecentChangeInfo().

◆ getStartEndConds()

WatchedItemQueryService::getStartEndConds ( IDatabase  $db,
array  $options 
)
private

◆ getStartFromConds()

WatchedItemQueryService::getStartFromConds ( IDatabase  $db,
array  $options,
array  $startFrom 
)
private

◆ getUserRelatedConds()

WatchedItemQueryService::getUserRelatedConds ( IDatabase  $db,
User  $user,
array  $options 
)
private

◆ getWatchedItemsForUser()

WatchedItemQueryService::getWatchedItemsForUser ( User  $user,
array  $options = [] 
)

For simple listing of user's watchlist items, see WatchedItemStore::getWatchedItemsForUser.

Parameters
User$user
array$optionsAllowed keys: 'sort' => string optional sorting by namespace ID and title one of the self::SORT_* constants 'namespaceIds' => int[] optional namespace IDs to filter by (defaults to all namespaces) 'limit' => int maximum number of items to return 'filter' => string optional filter, one of the self::FILTER_* contants 'from' => LinkTarget requires 'sort' key, only return items starting from those related to the link target 'until' => LinkTarget requires 'sort' key, only return items until those related to the link target 'startFrom' => LinkTarget requires 'sort' key, only return items starting from those related to the link target, allows to skip some link targets specified using the form option
Returns
WatchedItem[]

Definition at line 268 of file WatchedItemQueryService.php.

References $options, $res, $user, as, getConnection(), getWatchedItemsForUserQueryConds(), and getWatchedItemsForUserQueryDbOptions().

◆ getWatchedItemsForUserQueryConds()

WatchedItemQueryService::getWatchedItemsForUserQueryConds ( IDatabase  $db,
User  $user,
array  $options 
)
private

Definition at line 611 of file WatchedItemQueryService.php.

References $options, $user, and getFromUntilTargetConds().

Referenced by getWatchedItemsForUser().

◆ getWatchedItemsForUserQueryDbOptions()

WatchedItemQueryService::getWatchedItemsForUserQueryDbOptions ( array  $options)
private

Definition at line 681 of file WatchedItemQueryService.php.

References $options.

Referenced by getWatchedItemsForUser().

◆ getWatchedItemsWithRCInfoQueryConds()

◆ getWatchedItemsWithRCInfoQueryDbOptions()

WatchedItemQueryService::getWatchedItemsWithRCInfoQueryDbOptions ( array  $options)
private

Definition at line 666 of file WatchedItemQueryService.php.

References $options, and $sort.

Referenced by getWatchedItemsWithRecentChangeInfo().

◆ getWatchedItemsWithRCInfoQueryFields()

WatchedItemQueryService::getWatchedItemsWithRCInfoQueryFields ( array  $options)
private

Definition at line 357 of file WatchedItemQueryService.php.

References $options.

Referenced by getWatchedItemsWithRecentChangeInfo().

◆ getWatchedItemsWithRCInfoQueryFilterConds()

WatchedItemQueryService::getWatchedItemsWithRCInfoQueryFilterConds ( User  $user,
array  $options 
)
private

Definition at line 472 of file WatchedItemQueryService.php.

References $options, and $user.

Referenced by getWatchedItemsWithRCInfoQueryConds().

◆ getWatchedItemsWithRCInfoQueryJoinConds()

WatchedItemQueryService::getWatchedItemsWithRCInfoQueryJoinConds ( array  $options)
private

Definition at line 698 of file WatchedItemQueryService.php.

References $options.

Referenced by getWatchedItemsWithRecentChangeInfo().

◆ getWatchedItemsWithRCInfoQueryTables()

WatchedItemQueryService::getWatchedItemsWithRCInfoQueryTables ( array  $options)
private

Definition at line 335 of file WatchedItemQueryService.php.

References $options, and $tables.

Referenced by getWatchedItemsWithRecentChangeInfo().

◆ getWatchedItemsWithRecentChangeInfo()

WatchedItemQueryService::getWatchedItemsWithRecentChangeInfo ( User  $user,
array  $options = [],
$startFrom = null 
)
Parameters
User$user
array$optionsAllowed keys: 'includeFields' => string[] RecentChange fields to be included in the result, self::INCLUDE_* constants should be used 'filters' => string[] optional filters to narrow down resulted items 'namespaceIds' => int[] optional namespace IDs to filter by (defaults to all namespaces) 'allRevisions' => bool return multiple revisions of the same page if true, only the most recent if false (default) 'rcTypes' => int[] which types of RecentChanges to include (defaults to all types), allowed values: RC_EDIT, RC_NEW, RC_LOG, RC_EXTERNAL, RC_CATEGORIZE 'onlyByUser' => string only list changes by a specified user 'notByUser' => string do not incluide changes by a specified user 'dir' => string in which direction to enumerate, accepted values:
  • DIR_OLDER list newest first
  • DIR_NEWER list oldest first 'start' => string (format accepted by wfTimestamp) requires 'dir' option, timestamp to start enumerating from 'end' => string (format accepted by wfTimestamp) requires 'dir' option, timestamp to end enumerating 'watchlistOwner' => User user whose watchlist items should be listed if different than the one specified with $user param, requires 'watchlistOwnerToken' option 'watchlistOwnerToken' => string a watchlist token used to access another user's watchlist, used with 'watchlistOwnerToken' option 'limit' => int maximum numbers of items to return 'usedInGenerator' => bool include only RecentChange id field required by the generator ('rc_cur_id' or 'rc_this_oldid') if true, or all id fields ('rc_cur_id', 'rc_this_oldid', 'rc_last_oldid') if false (default)
array | null&$startFromContinuation value: [ string $rcTimestamp, int $rcId ]
Returns
array of pairs ( WatchedItem $watchedItem, string[] $recentChangeInfo ), where $recentChangeInfo contains the following keys:
  • 'rc_id',
  • 'rc_namespace',
  • 'rc_title',
  • 'rc_timestamp',
  • 'rc_type',
  • 'rc_deleted', Additional keys could be added by specifying the 'includeFields' option

Definition at line 140 of file WatchedItemQueryService.php.

References $options, $res, $tables, $user, as, false, getConnection(), getExtensions(), getRecentChangeFieldsFromRow(), getStartFromConds(), getWatchedItemsWithRCInfoQueryConds(), getWatchedItemsWithRCInfoQueryDbOptions(), getWatchedItemsWithRCInfoQueryFields(), getWatchedItemsWithRCInfoQueryJoinConds(), getWatchedItemsWithRCInfoQueryTables(), RC_CATEGORIZE, RC_EDIT, RC_EXTERNAL, RC_LOG, and RC_NEW.

◆ getWatchlistOwnerId()

WatchedItemQueryService::getWatchlistOwnerId ( User  $user,
array  $options 
)
private

Member Data Documentation

◆ $actorMigration

ActorMigration WatchedItemQueryService::$actorMigration
private

Definition at line 66 of file WatchedItemQueryService.php.

◆ $commentStore

CommentStore WatchedItemQueryService::$commentStore
private

Definition at line 63 of file WatchedItemQueryService.php.

◆ $extensions

WatchedItemQueryServiceExtension [] null WatchedItemQueryService::$extensions = null
private

Definition at line 60 of file WatchedItemQueryService.php.

◆ $loadBalancer

LoadBalancer WatchedItemQueryService::$loadBalancer
private

Definition at line 57 of file WatchedItemQueryService.php.

◆ DIR_NEWER

const WatchedItemQueryService::DIR_NEWER = 'newer'

Definition at line 21 of file WatchedItemQueryService.php.

◆ DIR_OLDER

const WatchedItemQueryService::DIR_OLDER = 'older'

Definition at line 20 of file WatchedItemQueryService.php.

◆ FILTER_ANON

const WatchedItemQueryService::FILTER_ANON = 'anon'

Definition at line 40 of file WatchedItemQueryService.php.

◆ FILTER_AUTOPATROLLED

const WatchedItemQueryService::FILTER_AUTOPATROLLED = 'autopatrolled'

Definition at line 44 of file WatchedItemQueryService.php.

◆ FILTER_BOT

const WatchedItemQueryService::FILTER_BOT = 'bot'

Definition at line 38 of file WatchedItemQueryService.php.

◆ FILTER_CHANGED

const WatchedItemQueryService::FILTER_CHANGED = 'changed'

Definition at line 48 of file WatchedItemQueryService.php.

◆ FILTER_MINOR

const WatchedItemQueryService::FILTER_MINOR = 'minor'

Definition at line 36 of file WatchedItemQueryService.php.

◆ FILTER_NOT_ANON

const WatchedItemQueryService::FILTER_NOT_ANON = '!anon'

Definition at line 41 of file WatchedItemQueryService.php.

◆ FILTER_NOT_AUTOPATROLLED

const WatchedItemQueryService::FILTER_NOT_AUTOPATROLLED = '!autopatrolled'

Definition at line 45 of file WatchedItemQueryService.php.

◆ FILTER_NOT_BOT

const WatchedItemQueryService::FILTER_NOT_BOT = '!bot'

Definition at line 39 of file WatchedItemQueryService.php.

◆ FILTER_NOT_CHANGED

const WatchedItemQueryService::FILTER_NOT_CHANGED = '!changed'

Definition at line 49 of file WatchedItemQueryService.php.

◆ FILTER_NOT_MINOR

const WatchedItemQueryService::FILTER_NOT_MINOR = '!minor'

Definition at line 37 of file WatchedItemQueryService.php.

◆ FILTER_NOT_PATROLLED

const WatchedItemQueryService::FILTER_NOT_PATROLLED = '!patrolled'

Definition at line 43 of file WatchedItemQueryService.php.

◆ FILTER_NOT_UNREAD

const WatchedItemQueryService::FILTER_NOT_UNREAD = '!unread'

Definition at line 47 of file WatchedItemQueryService.php.

◆ FILTER_PATROLLED

const WatchedItemQueryService::FILTER_PATROLLED = 'patrolled'

Definition at line 42 of file WatchedItemQueryService.php.

◆ FILTER_UNREAD

const WatchedItemQueryService::FILTER_UNREAD = 'unread'

Definition at line 46 of file WatchedItemQueryService.php.

◆ INCLUDE_AUTOPATROL_INFO

const WatchedItemQueryService::INCLUDE_AUTOPATROL_INFO = 'autopatrol'

Definition at line 28 of file WatchedItemQueryService.php.

◆ INCLUDE_COMMENT

const WatchedItemQueryService::INCLUDE_COMMENT = 'comment'

Definition at line 26 of file WatchedItemQueryService.php.

◆ INCLUDE_FLAGS

const WatchedItemQueryService::INCLUDE_FLAGS = 'flags'

Definition at line 23 of file WatchedItemQueryService.php.

◆ INCLUDE_LOG_INFO

const WatchedItemQueryService::INCLUDE_LOG_INFO = 'loginfo'

Definition at line 30 of file WatchedItemQueryService.php.

◆ INCLUDE_PATROL_INFO

const WatchedItemQueryService::INCLUDE_PATROL_INFO = 'patrol'

Definition at line 27 of file WatchedItemQueryService.php.

◆ INCLUDE_SIZES

const WatchedItemQueryService::INCLUDE_SIZES = 'sizes'

Definition at line 29 of file WatchedItemQueryService.php.

◆ INCLUDE_TAGS

const WatchedItemQueryService::INCLUDE_TAGS = 'tags'

Definition at line 31 of file WatchedItemQueryService.php.

◆ INCLUDE_USER

const WatchedItemQueryService::INCLUDE_USER = 'user'

Definition at line 24 of file WatchedItemQueryService.php.

◆ INCLUDE_USER_ID

const WatchedItemQueryService::INCLUDE_USER_ID = 'userid'

Definition at line 25 of file WatchedItemQueryService.php.

◆ SORT_ASC

const WatchedItemQueryService::SORT_ASC = 'ASC'

Definition at line 51 of file WatchedItemQueryService.php.

◆ SORT_DESC

const WatchedItemQueryService::SORT_DESC = 'DESC'

Definition at line 52 of file WatchedItemQueryService.php.


The documentation for this class was generated from the following file: