3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
25 class ApiQueryPrefixSearch
extends ApiQueryGeneratorBase
{
26 public function __construct( $query, $moduleName ) {
27 parent
::__construct( $query, $moduleName, 'ps' );
30 public function execute() {
34 public function executeGenerator( $resultPageSet ) {
35 $this->run( $resultPageSet );
39 * @param ApiPageSet $resultPageSet
41 private function run( $resultPageSet = null ) {
42 $params = $this->extractRequestParams();
43 $search = $params['search'];
44 $limit = $params['limit'];
45 $namespaces = $params['namespace'];
46 $offset = $params['offset'];
48 $searcher = new TitlePrefixSearch
;
49 $titles = $searcher->searchWithVariants( $search, $limit +
1, $namespaces, $offset );
50 if ( $resultPageSet ) {
51 $resultPageSet->populateFromTitles( $titles );
52 foreach ( $titles as $index => $title ) {
53 $resultPageSet->setGeneratorData( $title, array( 'index' => $index +
$offset +
1 ) );
56 $result = $this->getResult();
58 foreach ( $titles as $title ) {
59 if ( ++
$count > $limit ) {
60 $this->setContinueEnumParameter( 'offset', $offset +
$params['limit'] );
64 'ns' => intval( $title->getNamespace() ),
65 'title' => $title->getPrefixedText(),
67 if ( $title->isSpecialPage() ) {
68 $vals['special'] = '';
70 $vals['pageid'] = intval( $title->getArticleId() );
72 $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $vals );
74 $this->setContinueEnumParameter( 'offset', $offset +
$count - 1 );
78 $result->setIndexedTagName_internal(
79 array( 'query', $this->getModuleName() ), $this->getModulePrefix()
84 public function getCacheMode( $params ) {
88 public function getAllowedParams() {
91 ApiBase
::PARAM_TYPE
=> 'string',
92 ApiBase
::PARAM_REQUIRED
=> true,
95 ApiBase
::PARAM_DFLT
=> NS_MAIN
,
96 ApiBase
::PARAM_TYPE
=> 'namespace',
97 ApiBase
::PARAM_ISMULTI
=> true,
100 ApiBase
::PARAM_DFLT
=> 10,
101 ApiBase
::PARAM_TYPE
=> 'limit',
102 ApiBase
::PARAM_MIN
=> 1,
103 // Non-standard value for compatibility with action=opensearch
104 ApiBase
::PARAM_MAX
=> 100,
105 ApiBase
::PARAM_MAX2
=> 200,
108 ApiBase
::PARAM_DFLT
=> 0,
109 ApiBase
::PARAM_TYPE
=> 'integer',
114 protected function getExamplesMessages() {
116 'action=query&list=prefixsearch&pssearch=meaning'
117 => 'apihelp-query+prefixsearch-example-simple',
121 public function getHelpUrls() {
122 return 'https://www.mediawiki.org/wiki/API:Prefixsearch';