71 $pattern =
'', $conds = [], $year =
false, $month =
false, $tagFilter =
'',
74 parent::__construct( $list->getContext() );
75 $this->mConds = $conds;
77 $this->mLogEventsList = $list;
84 $this->mTagFilter = $tagFilter;
91 $query = parent::getDefaultQuery();
104 if ( count( $this->types ) ) {
108 $hide = $this->
getRequest()->getInt(
"hide_{$type}_log", $default );
110 $filters[
$type] = $hide;
112 $this->mConds[] =
'log_type != ' . $this->mDb->addQuotes(
$type );
133 $needReindex =
false;
142 if ( $needReindex ) {
150 $audience =
$types ?
'user' :
'public';
152 if ( $hideLogs !==
false ) {
153 $this->mConds[] = $hideLogs;
156 $this->mConds[
'log_type'] =
$types;
158 if ( count(
$types ) == 1 ) {
159 $this->typeCGI =
$types[0];
174 $usertitle = Title::makeTitleSafe( NS_USER, $name );
175 if ( is_null( $usertitle ) ) {
180 $name = $usertitle->getText();
183 $this->mConds[] = ActorMigration::newMigration()->getWhere(
189 $this->performer =
$name;
203 if ( $page instanceof
Title ) {
206 $title = Title::newFromText( $page );
207 if ( strlen( $page ) == 0 || !$title instanceof
Title ) {
212 $this->title = $title->getPrefixedText();
213 $ns = $title->getNamespace();
216 $doUserRightsLogLike =
false;
217 if ( $this->types == [
'rights' ] ) {
219 if ( count( $parts ) == 2 ) {
220 list( $name, $database ) = array_map(
'trim', $parts );
221 if ( strstr( $database,
'*' ) ) {
222 $doUserRightsLogLike =
true;
240 $this->mConds[
'log_namespace'] = $ns;
241 if ( $doUserRightsLogLike ) {
243 foreach ( explode(
'*', $database ) as $databasepart ) {
248 $this->mConds[] =
'log_title' . $db->buildLike(
$params );
250 $this->mConds[] =
'log_title' . $db->buildLike( $title->getDBkey(), $db->anyString() );
253 $this->mConds[
'log_title'] = $title->getDBkey();
267 if (
$type ===
'' ) {
272 if ( isset( $actions[
$type] ) ) {
274 $this->mLogEventsList->setAllowedActions( array_keys( $actions[
$type] ) );
291 $this->mConds[
'log_id'] = $logId;
303 $fields = $basic[
'fields'];
304 $conds = $basic[
'conds'];
306 $joins = $basic[
'join_conds'];
308 # Add log_search table if there are conditions on it.
309 # This filters the results to only include log rows that have
310 # log_search records with the specified ls_field and ls_value values.
311 if ( array_key_exists(
'ls_field', $this->mConds ) ) {
313 $options[
'IGNORE INDEX'] = [
'log_search' =>
'ls_log_id' ];
314 $options[
'USE INDEX'] = [
'logging' =>
'PRIMARY' ];
318 # Since (ls_field,ls_value,ls_logid) is unique, if the condition is
319 # to match a specific (ls_field,ls_value) tuple, then there will be
320 # no duplicate log rows. Otherwise, we need to remove the duplicates.
324 # Don't show duplicate rows when using log_search
325 $joins[
'log_search'] = [
'INNER JOIN',
'ls_log_id=log_id' ];
330 'conds' => array_merge( $conds, $this->mConds ),
332 'join_conds' => $joins,
334 # Add ChangeTags filter query
336 $info[
'join_conds'], $info[
'options'], $this->mTagFilter );
348 array_key_exists( $field, $this->mConds ) &&
349 ( !is_array( $this->mConds[$field] ) || count( $this->mConds[$field] ) == 1 )
354 return 'log_timestamp';
358 # Do a link batch query
361 foreach ( $this->mResult as $row ) {
362 $lb->
add( $row->log_namespace, $row->log_title );
363 $lb->addObj( Title::makeTitleSafe( NS_USER, $row->user_name ) );
364 $lb->addObj( Title::makeTitleSafe(
NS_USER_TALK, $row->user_name ) );
366 foreach ( $formatter->getPreloadTitles() as $title ) {
367 $lb->addObj( $title );
371 $this->mResult->seek( 0 );
378 return $this->mLogEventsList->logLine( $row );
414 return $this->mTagFilter;
423 $this->mDb->setBigSelects();
425 $this->mDb->setBigSelects(
'default' );
432 if ( $this->actionRestrictionsEnforced ) {
435 $this->actionRestrictionsEnforced =
true;
437 if ( !$user->isAllowed(
'deletedhistory' ) ) {
439 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
450 if ( $this->performerRestrictionsEnforced ) {
453 $this->performerRestrictionsEnforced =
true;
455 if ( !$user->isAllowed(
'deletedhistory' ) ) {
457 } elseif ( !$user->isAllowedAny(
'suppressrevision',
'viewsuppressed' ) ) {
$wgUserrightsInterwikiDelimiter
Character used as a delimiter when testing for interwiki userrights (In Special:UserRights,...
$wgLogRestrictions
This restricts log access to those who have a certain right Users without this will not see it in the...
$wgActionFilteredLogs
List of log types that can be filtered by action types.
$wgFilterLogTypes
Show/hide links on Special:Log will be shown for these log types.
$wgMiserMode
Disable database-intensive features.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
static getSelectQueryData()
Returns array of information that is needed for querying log entries.
Class representing a list of titles The execute() method checks them all for existence and adds them ...
static getExcludeClause( $db, $audience='public', User $user=null)
SQL clause to skip forbidden log types for this user.
Represents a title within MediaWiki.
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
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
the array() calling protocol came about after MediaWiki 1.4rc1.
this hook is for auditing only RecentChangesLinked and Watchlist 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
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
Allows to change the fields on the form that will be generated $name
null for the local 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