MediaWiki  1.33.0
LogPager.php
Go to the documentation of this file.
1 <?php
31  private $types = [];
32 
34  private $performer = '';
35 
37  private $title = '';
38 
40  private $pattern = false;
41 
43  private $typeCGI = '';
44 
46  private $action = '';
47 
50 
52  private $actionRestrictionsEnforced = false;
53 
56 
71  public function __construct( $list, $types = [], $performer = '', $title = '',
72  $pattern = false, $conds = [], $year = false, $month = false, $day = false,
73  $tagFilter = '', $action = '', $logId = 0
74  ) {
75  parent::__construct( $list->getContext() );
76  $this->mConds = $conds;
77 
78  $this->mLogEventsList = $list;
79 
80  $this->limitType( $types ); // also excludes hidden types
81  $this->limitPerformer( $performer );
82  $this->limitTitle( $title, $pattern );
83  $this->limitAction( $action );
84  $this->getDateCond( $year, $month, $day );
85  $this->mTagFilter = $tagFilter;
86  $this->limitLogId( $logId );
87 
88  $this->mDb = wfGetDB( DB_REPLICA, 'logpager' );
89  }
90 
91  public function getDefaultQuery() {
92  $query = parent::getDefaultQuery();
93  $query['type'] = $this->typeCGI; // arrays won't work here
94  $query['user'] = $this->performer;
95  $query['day'] = $this->mDay;
96  $query['month'] = $this->mMonth;
97  $query['year'] = $this->mYear;
98 
99  return $query;
100  }
101 
102  // Call ONLY after calling $this->limitType() already!
103  public function getFilterParams() {
104  global $wgFilterLogTypes;
105  $filters = [];
106  if ( count( $this->types ) ) {
107  return $filters;
108  }
109 
110  $wpfilters = $this->getRequest()->getArray( "wpfilters" );
111  $request_filters = $wpfilters === null ? [] : $wpfilters;
112 
113  foreach ( $wgFilterLogTypes as $type => $default ) {
114  $hide = !in_array( $type, $request_filters );
115 
116  // Back-compat: Check old URL params if the new param wasn't passed
117  if ( $wpfilters === null ) {
118  $hide = $this->getRequest()->getBool( "hide_{$type}_log", $default );
119  }
120 
121  $filters[$type] = $hide;
122  if ( $hide ) {
123  $this->mConds[] = 'log_type != ' . $this->mDb->addQuotes( $type );
124  }
125  }
126 
127  return $filters;
128  }
129 
137  private function limitType( $types ) {
138  global $wgLogRestrictions;
139 
140  $user = $this->getUser();
141  // If $types is not an array, make it an array
142  $types = ( $types === '' ) ? [] : (array)$types;
143  // Don't even show header for private logs; don't recognize it...
144  $needReindex = false;
145  foreach ( $types as $type ) {
146  if ( isset( $wgLogRestrictions[$type] )
147  && !$user->isAllowed( $wgLogRestrictions[$type] )
148  ) {
149  $needReindex = true;
150  $types = array_diff( $types, [ $type ] );
151  }
152  }
153  if ( $needReindex ) {
154  // Lots of this code makes assumptions that
155  // the first entry in the array is $types[0].
156  $types = array_values( $types );
157  }
158  $this->types = $types;
159  // Don't show private logs to unprivileged users.
160  // Also, only show them upon specific request to avoid suprises.
161  $audience = $types ? 'user' : 'public';
162  $hideLogs = LogEventsList::getExcludeClause( $this->mDb, $audience, $user );
163  if ( $hideLogs !== false ) {
164  $this->mConds[] = $hideLogs;
165  }
166  if ( count( $types ) ) {
167  $this->mConds['log_type'] = $types;
168  // Set typeCGI; used in url param for paging
169  if ( count( $types ) == 1 ) {
170  $this->typeCGI = $types[0];
171  }
172  }
173  }
174 
181  private function limitPerformer( $name ) {
182  if ( $name == '' ) {
183  return;
184  }
185  $usertitle = Title::makeTitleSafe( NS_USER, $name );
186  if ( is_null( $usertitle ) ) {
187  return;
188  }
189  // Normalize username first so that non-existent users used
190  // in maintenance scripts work
191  $name = $usertitle->getText();
192 
193  // Assume no joins required for log_user
194  $this->mConds[] = ActorMigration::newMigration()->getWhere(
195  wfGetDB( DB_REPLICA ), 'log_user', User::newFromName( $name, false )
196  )['conds'];
197 
199 
200  $this->performer = $name;
201  }
202 
211  private function limitTitle( $page, $pattern ) {
213 
214  if ( $page instanceof Title ) {
215  $title = $page;
216  } else {
217  $title = Title::newFromText( $page );
218  if ( strlen( $page ) == 0 || !$title instanceof Title ) {
219  return;
220  }
221  }
222 
223  $this->title = $title->getPrefixedText();
224  $ns = $title->getNamespace();
225  $db = $this->mDb;
226 
227  $doUserRightsLogLike = false;
228  if ( $this->types == [ 'rights' ] ) {
229  $parts = explode( $wgUserrightsInterwikiDelimiter, $title->getDBkey() );
230  if ( count( $parts ) == 2 ) {
231  list( $name, $database ) = array_map( 'trim', $parts );
232  if ( strstr( $database, '*' ) ) { // Search for wildcard in database name
233  $doUserRightsLogLike = true;
234  }
235  }
236  }
237 
251  $this->mConds['log_namespace'] = $ns;
252  if ( $doUserRightsLogLike ) {
254  foreach ( explode( '*', $database ) as $databasepart ) {
255  $params[] = $databasepart;
256  $params[] = $db->anyString();
257  }
258  array_pop( $params ); // Get rid of the last % we added.
259  $this->mConds[] = 'log_title' . $db->buildLike( $params );
260  } elseif ( $pattern && !$wgMiserMode ) {
261  $this->mConds[] = 'log_title' . $db->buildLike( $title->getDBkey(), $db->anyString() );
262  $this->pattern = $pattern;
263  } else {
264  $this->mConds['log_title'] = $title->getDBkey();
265  }
266  $this->enforceActionRestrictions();
267  }
268 
274  private function limitAction( $action ) {
275  global $wgActionFilteredLogs;
276  // Allow to filter the log by actions
278  if ( $type === '' ) {
279  // nothing to do
280  return;
281  }
282  $actions = $wgActionFilteredLogs;
283  if ( isset( $actions[$type] ) ) {
284  // log type can be filtered by actions
285  $this->mLogEventsList->setAllowedActions( array_keys( $actions[$type] ) );
286  if ( $action !== '' && isset( $actions[$type][$action] ) ) {
287  // add condition to query
288  $this->mConds['log_action'] = $actions[$type][$action];
289  $this->action = $action;
290  }
291  }
292  }
293 
298  protected function limitLogId( $logId ) {
299  if ( !$logId ) {
300  return;
301  }
302  $this->mConds['log_id'] = $logId;
303  }
304 
310  public function getQueryInfo() {
312 
313  $tables = $basic['tables'];
314  $fields = $basic['fields'];
315  $conds = $basic['conds'];
316  $options = $basic['options'];
317  $joins = $basic['join_conds'];
318 
319  # Add log_search table if there are conditions on it.
320  # This filters the results to only include log rows that have
321  # log_search records with the specified ls_field and ls_value values.
322  if ( array_key_exists( 'ls_field', $this->mConds ) ) {
323  $tables[] = 'log_search';
324  $options['IGNORE INDEX'] = [ 'log_search' => 'ls_log_id' ];
325  $options['USE INDEX'] = [ 'logging' => 'PRIMARY' ];
326  if ( !$this->hasEqualsClause( 'ls_field' )
327  || !$this->hasEqualsClause( 'ls_value' )
328  ) {
329  # Since (ls_field,ls_value,ls_logid) is unique, if the condition is
330  # to match a specific (ls_field,ls_value) tuple, then there will be
331  # no duplicate log rows. Otherwise, we need to remove the duplicates.
332  $options[] = 'DISTINCT';
333  }
334  }
335  # Don't show duplicate rows when using log_search
336  $joins['log_search'] = [ 'JOIN', 'ls_log_id=log_id' ];
337 
338  $info = [
339  'tables' => $tables,
340  'fields' => $fields,
341  'conds' => array_merge( $conds, $this->mConds ),
342  'options' => $options,
343  'join_conds' => $joins,
344  ];
345  # Add ChangeTags filter query
346  ChangeTags::modifyDisplayQuery( $info['tables'], $info['fields'], $info['conds'],
347  $info['join_conds'], $info['options'], $this->mTagFilter );
348 
349  return $info;
350  }
351 
357  protected function hasEqualsClause( $field ) {
358  return (
359  array_key_exists( $field, $this->mConds ) &&
360  ( !is_array( $this->mConds[$field] ) || count( $this->mConds[$field] ) == 1 )
361  );
362  }
363 
364  function getIndexField() {
365  return 'log_timestamp';
366  }
367 
368  protected function getStartBody() {
369  # Do a link batch query
370  if ( $this->getNumRows() > 0 ) {
371  $lb = new LinkBatch;
372  foreach ( $this->mResult as $row ) {
373  $lb->add( $row->log_namespace, $row->log_title );
374  $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
375  $lb->addObj( Title::makeTitleSafe( NS_USER_TALK, $row->user_name ) );
376  $formatter = LogFormatter::newFromRow( $row );
377  foreach ( $formatter->getPreloadTitles() as $title ) {
378  $lb->addObj( $title );
379  }
380  }
381  $lb->execute();
382  $this->mResult->seek( 0 );
383  }
384 
385  return '';
386  }
387 
388  public function formatRow( $row ) {
389  return $this->mLogEventsList->logLine( $row );
390  }
391 
392  public function getType() {
393  return $this->types;
394  }
395 
401  public function getPerformer() {
402  return $this->performer;
403  }
404 
408  public function getPage() {
409  return $this->title;
410  }
411 
415  public function getPattern() {
416  return $this->pattern;
417  }
418 
419  public function getYear() {
420  return $this->mYear;
421  }
422 
423  public function getMonth() {
424  return $this->mMonth;
425  }
426 
427  public function getDay() {
428  return $this->mDay;
429  }
430 
431  public function getTagFilter() {
432  return $this->mTagFilter;
433  }
434 
435  public function getAction() {
436  return $this->action;
437  }
438 
439  public function doQuery() {
440  // Workaround MySQL optimizer bug
441  $this->mDb->setBigSelects();
442  parent::doQuery();
443  $this->mDb->setBigSelects( 'default' );
444  }
445 
449  private function enforceActionRestrictions() {
450  if ( $this->actionRestrictionsEnforced ) {
451  return;
452  }
453  $this->actionRestrictionsEnforced = true;
454  $user = $this->getUser();
455  if ( !$user->isAllowed( 'deletedhistory' ) ) {
456  $this->mConds[] = $this->mDb->bitAnd( 'log_deleted', LogPage::DELETED_ACTION ) . ' = 0';
457  } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
458  $this->mConds[] = $this->mDb->bitAnd( 'log_deleted', LogPage::SUPPRESSED_ACTION ) .
459  ' != ' . LogPage::SUPPRESSED_USER;
460  }
461  }
462 
466  private function enforcePerformerRestrictions() {
467  // Same as enforceActionRestrictions(), except for _USER instead of _ACTION bits.
468  if ( $this->performerRestrictionsEnforced ) {
469  return;
470  }
471  $this->performerRestrictionsEnforced = true;
472  $user = $this->getUser();
473  if ( !$user->isAllowed( 'deletedhistory' ) ) {
474  $this->mConds[] = $this->mDb->bitAnd( 'log_deleted', LogPage::DELETED_USER ) . ' = 0';
475  } elseif ( !$user->isAllowedAny( 'suppressrevision', 'viewsuppressed' ) ) {
476  $this->mConds[] = $this->mDb->bitAnd( 'log_deleted', LogPage::SUPPRESSED_USER ) .
478  }
479  }
480 }
$wgActionFilteredLogs
$wgActionFilteredLogs
List of log types that can be filtered by action types.
Definition: DefaultSettings.php:7835
ReverseChronologicalPager\getDateCond
getDateCond( $year, $month, $day=-1)
Set and return the mOffset timestamp such that we can get all revisions with a timestamp up to the sp...
Definition: ReverseChronologicalPager.php:77
$user
return true to allow those checks to and false if checking is done & $user
Definition: hooks.txt:1476
LogPage\SUPPRESSED_ACTION
const SUPPRESSED_ACTION
Definition: LogPage.php:41
Title\newFromText
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:306
LogPage\SUPPRESSED_USER
const SUPPRESSED_USER
Definition: LogPage.php:40
LogPager\getPattern
getPattern()
Definition: LogPager.php:415
LogPager\getType
getType()
Definition: LogPager.php:392
LinkBatch
Class representing a list of titles The execute() method checks them all for existence and adds them ...
Definition: LinkBatch.php:34
LinkBatch\add
add( $ns, $dbkey)
Definition: LinkBatch.php:83
LogPager\getPerformer
getPerformer()
Guaranteed to either return a valid title string or a Zero-Length String.
Definition: LogPager.php:401
LogPager\limitTitle
limitTitle( $page, $pattern)
Set the log reader to return only entries affecting the given page.
Definition: LogPager.php:211
ReverseChronologicalPager\$mMonth
int $mMonth
Definition: ReverseChronologicalPager.php:34
LogPager\getMonth
getMonth()
Definition: LogPager.php:423
LogPager\getFilterParams
getFilterParams()
Definition: LogPager.php:103
captcha-old.count
count
Definition: captcha-old.py:249
LogPager\$types
array $types
Log types.
Definition: LogPager.php:31
DatabaseLogEntry\getSelectQueryData
static getSelectQueryData()
Returns array of information that is needed for querying log entries.
Definition: LogEntry.php:177
LogPager\getQueryInfo
getQueryInfo()
Constructs the most part of the query.
Definition: LogPager.php:310
LogPager\$performerRestrictionsEnforced
bool $performerRestrictionsEnforced
Definition: LogPager.php:49
$tables
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
Definition: hooks.txt:979
Title\getPrefixedText
getPrefixedText()
Get the prefixed title with spaces.
Definition: Title.php:1660
LogPager
Definition: LogPager.php:29
$params
$params
Definition: styleTest.css.php:44
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:585
ContextSource\getRequest
getRequest()
Definition: ContextSource.php:71
ContextSource\getUser
getUser()
Definition: ContextSource.php:120
ActorMigration\newMigration
static newMigration()
Static constructor.
Definition: ActorMigration.php:111
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
LogPager\getPage
getPage()
Definition: LogPager.php:408
LogPager\__construct
__construct( $list, $types=[], $performer='', $title='', $pattern=false, $conds=[], $year=false, $month=false, $day=false, $tagFilter='', $action='', $logId=0)
Definition: LogPager.php:71
ChangeTags\modifyDisplayQuery
static modifyDisplayQuery(&$tables, &$fields, &$conds, &$join_conds, &$options, $filter_tag='')
Applies all tags-related changes to a query.
Definition: ChangeTags.php:728
LogPager\$title
string Title $title
Events limited to those about Title when set.
Definition: LogPager.php:37
$query
null for the wiki Added should default to null in handler for backwards compatibility add a value to it if you want to add a cookie that have to vary cache options can modify $query
Definition: hooks.txt:1588
Title\getDBkey
getDBkey()
Get the main part with underscores.
Definition: Title.php:970
LogPager\$action
string $action
Definition: LogPager.php:46
LogPager\formatRow
formatRow( $row)
Abstract formatting function.
Definition: LogPager.php:388
LogFormatter\newFromRow
static newFromRow( $row)
Handy shortcut for constructing a formatter directly from database row.
Definition: LogFormatter.php:70
LogPager\getIndexField
getIndexField()
This function should be overridden to return the name of the index fi- eld.
Definition: LogPager.php:364
Title\getNamespace
getNamespace()
Get the namespace index, i.e.
Definition: Title.php:994
$wgFilterLogTypes
$wgFilterLogTypes
Show/hide links on Special:Log will be shown for these log types.
Definition: DefaultSettings.php:7723
LogPage\DELETED_USER
const DELETED_USER
Definition: LogPage.php:36
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
IndexPager\$mDb
IDatabase $mDb
Definition: IndexPager.php:93
LogPager\$pattern
bool $pattern
Definition: LogPager.php:40
$wgUserrightsInterwikiDelimiter
$wgUserrightsInterwikiDelimiter
Character used as a delimiter when testing for interwiki userrights (In Special:UserRights,...
Definition: DefaultSettings.php:4911
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
array
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))
LogPager\$actionRestrictionsEnforced
bool $actionRestrictionsEnforced
Definition: LogPager.php:52
LogEventsList
Definition: LogEventsList.php:30
list
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
Definition: deferred.txt:11
LogPage\DELETED_ACTION
const DELETED_ACTION
Definition: LogPage.php:34
captcha-old.action
action
Definition: captcha-old.py:212
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
LogPager\getStartBody
getStartBody()
Hook into getBody(), allows text to be inserted at the start.
Definition: LogPager.php:368
Title\makeTitleSafe
static makeTitleSafe( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:604
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:67
$wgLogRestrictions
$wgLogRestrictions
This restricts log access to those who have a certain right Users without this will not see it in the...
Definition: DefaultSettings.php:7700
ReverseChronologicalPager\$mYear
int $mYear
Definition: ReverseChronologicalPager.php:32
title
title
Definition: parserTests.txt:245
LogEventsList\getExcludeClause
static getExcludeClause( $db, $audience='public', User $user=null)
SQL clause to skip forbidden log types for this user.
Definition: LogEventsList.php:785
LogPager\$mLogEventsList
LogEventsList $mLogEventsList
Definition: LogPager.php:55
LogPager\$typeCGI
string $typeCGI
Definition: LogPager.php:43
LogPager\doQuery
doQuery()
Do the query, using information from the object context.
Definition: LogPager.php:439
LogPager\getAction
getAction()
Definition: LogPager.php:435
LogPager\getTagFilter
getTagFilter()
Definition: LogPager.php:431
LogPager\$performer
string $performer
Events limited to those by performer when set.
Definition: LogPager.php:34
LogPager\limitType
limitType( $types)
Set the log reader to return only entries of the given type.
Definition: LogPager.php:137
LogPager\limitPerformer
limitPerformer( $name)
Set the log reader to return only entries by the given user.
Definition: LogPager.php:181
Title
Represents a title within MediaWiki.
Definition: Title.php:40
LogPager\hasEqualsClause
hasEqualsClause( $field)
Checks if $this->mConds has $field matched to a single value.
Definition: LogPager.php:357
$wgMiserMode
$wgMiserMode
Disable database-intensive features.
Definition: DefaultSettings.php:2256
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:1985
LogPager\enforceActionRestrictions
enforceActionRestrictions()
Paranoia: avoid brute force searches (T19342)
Definition: LogPager.php:449
LogPager\getDefaultQuery
getDefaultQuery()
Get an array of query parameters that should be put into self-links.
Definition: LogPager.php:91
ReverseChronologicalPager\$mDay
int $mDay
Definition: ReverseChronologicalPager.php:36
as
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
Definition: distributors.txt:9
LogPager\enforcePerformerRestrictions
enforcePerformerRestrictions()
Paranoia: avoid brute force searches (T19342)
Definition: LogPager.php:466
NS_USER
const NS_USER
Definition: Defines.php:66
LogPager\getDay
getDay()
Definition: LogPager.php:427
ReverseChronologicalPager
Efficient paging for SQL queries.
Definition: ReverseChronologicalPager.php:28
LogPager\limitAction
limitAction( $action)
Set the log_action field to a specified value (or values)
Definition: LogPager.php:274
IndexPager\getNumRows
getNumRows()
Get the number of rows in the result set.
Definition: IndexPager.php:600
LogPager\limitLogId
limitLogId( $logId)
Limit to the (single) specified log ID.
Definition: LogPager.php:298
LogPager\getYear
getYear()
Definition: LogPager.php:419
$type
$type
Definition: testCompression.php:48