PortableInfobox/controllers/ApiQueryPortableInfobox.class.php

53 lines
1.5 KiB
PHP
Raw Normal View History

<?php
class ApiQueryPortableInfobox extends ApiQueryBase {
public function __construct( $query, $moduleName ) {
parent::__construct( $query, $moduleName, 'ib' );
}
public function execute() {
$this->runOnPageSet( $this->getPageSet() );
}
public function getVersion() {
return __CLASS__ . '$Id$';
}
protected function runOnPageSet( ApiPageSet $pageSet ) {
2015-08-19 20:00:27 +00:00
$articles = $pageSet->getGoodTitles();
2015-08-18 11:29:51 +00:00
2015-08-20 14:45:46 +00:00
foreach ( $articles as $id => $articleTitle ) {
2015-08-19 20:00:27 +00:00
$parsedInfoboxes = PortableInfoboxDataService::newFromTitle( $articleTitle )->getData();
2015-08-18 11:29:51 +00:00
2015-08-19 20:00:27 +00:00
if ( is_array( $parsedInfoboxes ) && count( $parsedInfoboxes ) ) {
$inf = [ ];
2015-08-18 18:38:06 +00:00
foreach ( array_keys( $parsedInfoboxes ) as $k => $v ) {
$inf[ $k ] = [ ];
}
$pageSet->getResult()->setIndexedTagName( $inf, 'infobox' );
$pageSet->getResult()->addValue( [ 'query', 'pages', $id ], 'infoboxes', $inf );
foreach ( $parsedInfoboxes as $count => $infobox ) {
$pageSet->getResult()->addValue( [ 'query', 'pages', $id, 'infoboxes', $count ], 'id', $count );
$pageSet->getResult()->addValue(
[ 'query', 'pages', $id, 'infoboxes', $count ],
'parser_tag_version',
$infobox['parser_tag_version']
);
// FIXME ?format=xml throws error
$pageSet->getResult()->setIndexedTagName( $infobox['metadata'], 'metadata' );
2016-04-01 11:07:30 +00:00
$pageSet->getResult()->addValue(
[ 'query', 'pages', $id, 'infoboxes', $count ], 'metadata', $infobox['metadata']
2016-04-01 11:07:30 +00:00
);
}
}
}
}
}