5 * Created on Jul 9, 2009
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
28 * Query module to enumerate change tags.
32 class ApiQueryTags
extends ApiQueryBase
{
34 public function __construct( ApiQuery
$query, $moduleName ) {
35 parent
::__construct( $query, $moduleName, 'tg' );
38 public function execute() {
39 $params = $this->extractRequestParams();
41 $prop = array_flip( $params['prop'] );
43 $fld_displayname = isset( $prop['displayname'] );
44 $fld_description = isset( $prop['description'] );
45 $fld_hitcount = isset( $prop['hitcount'] );
46 $fld_defined = isset( $prop['defined'] );
48 $limit = $params['limit'];
49 $result = $this->getResult();
51 $definedTags = array_fill_keys( ChangeTags
::listDefinedTags(), 0 );
53 # Fetch defined tags that aren't past the continuation
54 if ( $params['continue'] !== null ) {
55 $cont = $params['continue'];
56 $tags = array_filter( array_keys( $definedTags ), function ( $v ) use ( $cont ) {
59 $tags = array_fill_keys( $tags, 0 );
64 # Merge in all used tags
65 $this->addTables( 'change_tag' );
66 $this->addFields( 'ct_tag' );
67 $this->addFields( array( 'hitcount' => $fld_hitcount ?
'COUNT(*)' : '0' ) );
68 $this->addOption( 'LIMIT', $limit +
1 );
69 $this->addOption( 'GROUP BY', 'ct_tag' );
70 $this->addWhereRange( 'ct_tag', 'newer', $params['continue'], null );
71 $res = $this->select( __METHOD__
);
72 foreach ( $res as $row ) {
73 $tags[$row->ct_tag
] = (int)$row->hitcount
;
76 # Now make sure the array is sorted for proper continuation
80 foreach ( $tags as $tagName => $hitcount ) {
81 if ( ++
$count > $limit ) {
82 $this->setContinueEnumParameter( 'continue', $tagName );
87 $tag['name'] = $tagName;
89 if ( $fld_displayname ) {
90 $tag['displayname'] = ChangeTags
::tagDescription( $tagName );
93 if ( $fld_description ) {
94 $msg = $this->msg( "tag-$tagName-description" );
95 $tag['description'] = $msg->exists() ?
$msg->text() : '';
98 if ( $fld_hitcount ) {
99 $tag['hitcount'] = $hitcount;
102 if ( $fld_defined && isset( $definedTags[$tagName] ) ) {
103 $tag['defined'] = '';
106 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $tag );
108 $this->setContinueEnumParameter( 'continue', $tagName );
113 $result->setIndexedTagName_internal( array( 'query', $this->getModuleName() ), 'tag' );
116 public function getCacheMode( $params ) {
120 public function getAllowedParams() {
123 ApiBase
::PARAM_HELP_MSG
=> 'api-help-param-continue',
126 ApiBase
::PARAM_DFLT
=> 10,
127 ApiBase
::PARAM_TYPE
=> 'limit',
128 ApiBase
::PARAM_MIN
=> 1,
129 ApiBase
::PARAM_MAX
=> ApiBase
::LIMIT_BIG1
,
130 ApiBase
::PARAM_MAX2
=> ApiBase
::LIMIT_BIG2
133 ApiBase
::PARAM_DFLT
=> 'name',
134 ApiBase
::PARAM_TYPE
=> array(
141 ApiBase
::PARAM_ISMULTI
=> true
146 protected function getExamplesMessages() {
148 'action=query&list=tags&tgprop=displayname|description|hitcount|defined'
149 => 'apihelp-query+tags-example-simple',
153 public function getHelpUrls() {
154 return 'https://www.mediawiki.org/wiki/API:Tags';