mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ReplaceText
synced 2024-11-15 10:59:28 +00:00
bfeb861137
Change-Id: I988ca49407fe3fc195df511e64ff747c9effb927
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?php
|
|
|
|
class ReplaceTextSearch {
|
|
public static function doSearchQuery(
|
|
$search, $namespaces, $category, $prefix, $use_regex = false
|
|
) {
|
|
$dbr = wfGetDB( DB_REPLICA );
|
|
$tables = [ 'page', 'revision', 'text' ];
|
|
$vars = [ 'page_id', 'page_namespace', 'page_title', 'old_text' ];
|
|
if ( $use_regex ) {
|
|
$comparisonCond = self::regexCond( $dbr, 'old_text', $search );
|
|
} else {
|
|
$any = $dbr->anyString();
|
|
$comparisonCond = 'old_text ' . $dbr->buildLike( $any, $search, $any );
|
|
}
|
|
$conds = [
|
|
$comparisonCond,
|
|
'page_namespace' => $namespaces,
|
|
'rev_id = page_latest',
|
|
'rev_text_id = old_id'
|
|
];
|
|
|
|
self::categoryCondition( $category, $tables, $conds );
|
|
self::prefixCondition( $prefix, $conds );
|
|
$sort = [ 'ORDER BY' => 'page_namespace, page_title' ];
|
|
|
|
return $dbr->select( $tables, $vars, $conds, __METHOD__, $sort );
|
|
}
|
|
|
|
public static function categoryCondition( $category, &$tables, &$conds ) {
|
|
if ( strval( $category ) !== '' ) {
|
|
$category = Title::newFromText( $category )->getDbKey();
|
|
$tables[] = 'categorylinks';
|
|
$conds[] = 'page_id = cl_from';
|
|
$conds['cl_to'] = $category;
|
|
}
|
|
}
|
|
|
|
public static function prefixCondition( $prefix, &$conds ) {
|
|
if ( strval( $prefix ) === '' ) {
|
|
return;
|
|
}
|
|
|
|
$dbr = wfGetDB( DB_REPLICA );
|
|
$title = Title::newFromText( $prefix );
|
|
if ( !is_null( $title ) ) {
|
|
$prefix = $title->getDbKey();
|
|
}
|
|
$any = $dbr->anyString();
|
|
$conds[] = 'page_title ' . $dbr->buildLike( $prefix, $any );
|
|
}
|
|
|
|
public static function regexCond( $dbr, $column, $regex ) {
|
|
if ( $dbr instanceof DatabasePostgres ) {
|
|
$op = '~';
|
|
} else {
|
|
$op = 'REGEXP';
|
|
}
|
|
return "$column $op " . $dbr->addQuotes( $regex );
|
|
}
|
|
}
|