MediaWiki REL1_35
SearchApi.php
Go to the documentation of this file.
1<?php
2
4
29trait SearchApi {
30
37 private static $BACKEND_NULL_PARAM = 'database-backed';
38
47 public function buildCommonApiParams( $isScrollable = true ) {
48 $params = [
49 'search' => [
50 ApiBase::PARAM_TYPE => 'string',
51 ApiBase::PARAM_REQUIRED => true,
52 ],
53 'namespace' => [
54 ApiBase::PARAM_DFLT => NS_MAIN,
55 ApiBase::PARAM_TYPE => 'namespace',
56 ApiBase::PARAM_ISMULTI => true,
57 ],
58 'limit' => [
59 ApiBase::PARAM_DFLT => 10,
60 ApiBase::PARAM_TYPE => 'limit',
61 ApiBase::PARAM_MIN => 1,
62 ApiBase::PARAM_MAX => ApiBase::LIMIT_BIG1,
63 ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2,
64 ],
65 ];
66 if ( $isScrollable ) {
67 $params['offset'] = [
68 ApiBase::PARAM_DFLT => 0,
69 ApiBase::PARAM_TYPE => 'integer',
70 ApiBase::PARAM_HELP_MSG => 'api-help-param-continue',
71 ];
72 }
73
74 $searchConfig = MediaWikiServices::getInstance()->getSearchEngineConfig();
75 $alternatives = $searchConfig->getSearchTypes();
76 if ( count( $alternatives ) > 1 ) {
77 if ( $alternatives[0] === null ) {
78 $alternatives[0] = self::$BACKEND_NULL_PARAM;
79 }
80 $params['backend'] = [
81 ApiBase::PARAM_DFLT => $searchConfig->getSearchType(),
82 ApiBase::PARAM_TYPE => $alternatives,
83 ];
84 // @todo: support profile selection when multiple
85 // backends are available. The solution could be to
86 // merge all possible profiles and let ApiBase
87 // subclasses do the check. Making ApiHelp and ApiSandbox
88 // comprehensive might be more difficult.
89 } else {
90 $params += $this->buildProfileApiParam();
91 }
92
93 return $params;
94 }
95
104 private function buildProfileApiParam() {
105 $configs = $this->getSearchProfileParams();
106 $searchEngine = MediaWikiServices::getInstance()->newSearchEngine();
107 $params = [];
108 foreach ( $configs as $paramName => $paramConfig ) {
109 $profiles = $searchEngine->getProfiles( $paramConfig['profile-type'],
110 $this->getContext()->getUser() );
111 if ( !$profiles ) {
112 continue;
113 }
114
115 $types = [];
116 $helpMessages = [];
117 $defaultProfile = null;
118 foreach ( $profiles as $profile ) {
119 $types[] = $profile['name'];
120 if ( isset( $profile['desc-message'] ) ) {
121 $helpMessages[$profile['name']] = $profile['desc-message'];
122 }
123
124 if ( !empty( $profile['default'] ) ) {
125 $defaultProfile = $profile['name'];
126 }
127 }
128
129 $params[$paramName] = [
130 ApiBase::PARAM_TYPE => $types,
131 ApiBase::PARAM_HELP_MSG => $paramConfig['help-message'],
132 ApiBase::PARAM_HELP_MSG_PER_VALUE => $helpMessages,
133 ApiBase::PARAM_DFLT => $defaultProfile,
134 ];
135 }
136
137 return $params;
138 }
139
153 public function buildSearchEngine( array $params = null ) {
154 if ( $params != null ) {
155 $type = $params['backend'] ?? null;
156 if ( $type === self::$BACKEND_NULL_PARAM ) {
157 $type = null;
158 }
159 $searchEngine = MediaWikiServices::getInstance()->getSearchEngineFactory()->create( $type );
160 $limit = $params['limit'];
161 $searchEngine->setNamespaces( $params['namespace'] );
162 $offset = $params['offset'] ?? null;
163 $searchEngine->setLimitOffset( $limit, $offset );
164
165 // Initialize requested search profiles.
166 $configs = $this->getSearchProfileParams();
167 foreach ( $configs as $paramName => $paramConfig ) {
168 if ( isset( $params[$paramName] ) ) {
169 $searchEngine->setFeatureData(
170 $paramConfig['profile-type'],
171 $params[$paramName]
172 );
173 }
174 }
175 } else {
176 $searchEngine = MediaWikiServices::getInstance()->newSearchEngine();
177 }
178 return $searchEngine;
179 }
180
185 abstract public function getSearchProfileParams();
186
190 abstract public function getContext();
191}
getUser()
getSearchProfileParams()
buildSearchEngine(array $params=null)
Build the search engine to use.
buildCommonApiParams( $isScrollable=true)
The set of api parameters that are shared between api calls that call the SearchEngine.
Definition SearchApi.php:47
getContext()
buildProfileApiParam()
Build the profile api param definitions.
MediaWikiServices is the service locator for the application scope of MediaWiki.
trait SearchApi
Traits for API components that use a SearchEngine.
Definition SearchApi.php:29
const NS_MAIN
Definition Defines.php:70