PortableInfobox/includes/controllers/ApiQueryAllinfoboxes.php
2018-08-16 11:25:53 +02:00

55 lines
1.2 KiB
PHP

<?php
class ApiQueryAllinfoboxes extends ApiQueryBase {
const CACHE_TTL = 86400;
const MCACHE_KEY = 'allinfoboxes-list';
public function execute() {
$db = $this->getDB();
$res = $this->getResult();
$cache = ObjectCache::getMainWANInstance();
$cachekey = $cache->makeKey( self::MCACHE_KEY );
$data = $cache->getWithSetCallback( $cachekey, self::CACHE_TTL, function () use ( $db ) {
$out = [];
$res = ( new AllinfoboxesQueryPage() )->doQuery();
while ( $row = $res->fetchObject() ) {
$out[] = [
'pageid' => $row->value,
'title' => $row->title,
'label' => $this->createLabel( $row->title ),
'ns' => $row->namespace
];
}
return $out;
} );
foreach ( $data as $id => $infobox ) {
$res->addValue( [ 'query', 'allinfoboxes' ], null, $infobox );
}
$res->addIndexedTagName( [ 'query', 'allinfoboxes' ], 'i' );
}
public function getVersion() {
return __CLASS__ . '$Id$';
}
/**
* @desc As a infobox template label we want to return a nice, clean text, without e.g. '_' signs
* @param $text infobox template title
* @return String
*/
private function createLabel( $text ) {
$title = Title::newFromText( $text, NS_TEMPLATE );
if ( $title ) {
return $title->getText();
}
return $text;
}
}