mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-12-11 08:07:06 +00:00
85 lines
1.9 KiB
PHP
85 lines
1.9 KiB
PHP
<?php
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
|
|
class AllInfoboxesQueryPage extends PageQueryPage {
|
|
|
|
private const ALL_INFOBOXES_TYPE = 'AllInfoboxes';
|
|
|
|
public function __construct() {
|
|
parent::__construct( self::ALL_INFOBOXES_TYPE );
|
|
}
|
|
|
|
public function getQueryInfo() {
|
|
$query = [
|
|
'tables' => [ 'page', 'page_props' ],
|
|
'fields' => [
|
|
'namespace' => 'page.page_namespace',
|
|
'title' => 'page.page_title',
|
|
'value' => 'page.page_id',
|
|
'infoboxes' => 'page_props.pp_value'
|
|
],
|
|
'conds' => [
|
|
'page.page_is_redirect' => 0,
|
|
'page.page_namespace' => NS_TEMPLATE,
|
|
'page_props.pp_value IS NOT NULL',
|
|
'page_props.pp_value != \'\''
|
|
],
|
|
'join_conds' => [
|
|
'page_props' => [
|
|
'INNER JOIN',
|
|
'page.page_id = page_props.pp_page AND page_props.pp_propname = "infoboxes"'
|
|
]
|
|
]
|
|
];
|
|
|
|
$dbr = $this->getDBLoadBalancer()->getConnectionRef( DB_REPLICA );
|
|
|
|
$subpagesBlacklist = $this->getConfig()->get( 'AllInfoboxesSubpagesBlacklist' );
|
|
foreach ( $subpagesBlacklist as $subpage ) {
|
|
$query['conds'][] = 'page.page_title NOT ' . $dbr->buildLike( "/{$subpage}" );
|
|
}
|
|
|
|
return $query;
|
|
}
|
|
|
|
/**
|
|
* Update the querycache table
|
|
*
|
|
* @see QueryPage::recache
|
|
*
|
|
* @param bool $limit Limit for SQL statement
|
|
* @param bool $ignoreErrors Whether to ignore database errors
|
|
*
|
|
* @return int number of rows updated
|
|
*/
|
|
public function recache( $limit = false, $ignoreErrors = true ) {
|
|
$res = parent::recache( $limit, $ignoreErrors );
|
|
|
|
$hookContainer = MediaWikiServices::getInstance()->getHookContainer();
|
|
$hookContainer->run( 'AllInfoboxesQueryRecached' );
|
|
|
|
return $res;
|
|
}
|
|
|
|
public function isExpensive() {
|
|
return true;
|
|
}
|
|
|
|
protected function getOrderFields() {
|
|
return [ 'title' ];
|
|
}
|
|
|
|
protected function getCacheOrderFields() {
|
|
return $this->getOrderFields();
|
|
}
|
|
|
|
protected function sortDescending() {
|
|
return false;
|
|
}
|
|
|
|
protected function getGroupName() {
|
|
return 'pages';
|
|
}
|
|
}
|