3 * Copyright © 2016 Brad Jorsch <bjorsch@wikimedia.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
24 use MediaWiki\Auth\AuthManager
;
25 use MediaWiki\Auth\AuthenticationRequest
;
26 use MediaWiki\Auth\AuthenticationResponse
;
27 use MediaWiki\Auth\CreateFromLoginAuthenticationRequest
;
30 * Helper class for AuthManager-using API modules. Intended for use via
35 class ApiAuthManagerHelper
{
37 /** @var ApiBase API module, for context and parameters */
40 /** @var string Message output format */
41 private $messageFormat;
44 * @param ApiBase $module API module, for context and parameters
46 public function __construct( ApiBase
$module ) {
47 $this->module
= $module;
49 $params = $module->extractRequestParams();
50 $this->messageFormat
= isset( $params['messageformat'] ) ?
$params['messageformat'] : 'wikitext';
54 * Static version of the constructor, for chaining
55 * @param ApiBase $module API module, for context and parameters
56 * @return ApiAuthManagerHelper
58 public static function newForModule( ApiBase
$module ) {
59 return new self( $module );
63 * Format a message for output
64 * @param array &$res Result array
65 * @param string $key Result key
66 * @param Message $message
68 private function formatMessage( array &$res, $key, Message
$message ) {
69 switch ( $this->messageFormat
) {
74 $res[$key] = $message->setContext( $this->module
)->text();
78 $res[$key] = $message->setContext( $this->module
)->parseAsBlock();
79 $res[$key] = Parser
::stripOuterParagraph( $res[$key] );
84 'key' => $message->getKey(),
85 'params' => $message->getParams(),
92 * Call $manager->securitySensitiveOperationStatus()
93 * @param string $operation Operation being checked.
94 * @throws UsageException
96 public function securitySensitiveOperation( $operation ) {
97 $status = AuthManager
::singleton()->securitySensitiveOperationStatus( $operation );
99 case AuthManager
::SEC_OK
:
102 case AuthManager
::SEC_REAUTH
:
103 $this->module
->dieUsage(
104 'You have not authenticated recently in this session, please reauthenticate.', 'reauthenticate'
107 case AuthManager
::SEC_FAIL
:
108 $this->module
->dieUsage(
109 'This action is not available as your identify cannot be verified.', 'cannotreauthenticate'
113 throw new UnexpectedValueException( "Unknown status \"$status\"" );
118 * Filter out authentication requests by class name
119 * @param AuthenticationRequest[] $reqs Requests to filter
120 * @param string[] $blacklist Class names to remove
121 * @return AuthenticationRequest[]
123 public static function blacklistAuthenticationRequests( array $reqs, array $blacklist ) {
125 $blacklist = array_flip( $blacklist );
126 $reqs = array_filter( $reqs, function ( $req ) use ( $blacklist ) {
127 return !isset( $blacklist[get_class( $req )] );
134 * Fetch and load the AuthenticationRequests for an action
135 * @param string $action One of the AuthManager::ACTION_* constants
136 * @return AuthenticationRequest[]
138 public function loadAuthenticationRequests( $action ) {
139 $params = $this->module
->extractRequestParams();
141 $manager = AuthManager
::singleton();
142 $reqs = $manager->getAuthenticationRequests( $action, $this->module
->getUser() );
144 // Filter requests, if requested to do so
145 $wantedRequests = null;
146 if ( isset( $params['requests'] ) ) {
147 $wantedRequests = array_flip( $params['requests'] );
148 } elseif ( isset( $params['request'] ) ) {
149 $wantedRequests = [ $params['request'] => true ];
151 if ( $wantedRequests !== null ) {
152 $reqs = array_filter( $reqs, function ( $req ) use ( $wantedRequests ) {
153 return isset( $wantedRequests[$req->getUniqueId()] );
157 // Collect the fields for all the requests
159 foreach ( $reqs as $req ) {
160 $fields +
= (array)$req->getFieldInfo();
163 // Extract the request data for the fields and mark those request
164 // parameters as used
165 $data = array_intersect_key( $this->module
->getRequest()->getValues(), $fields );
166 $this->module
->getMain()->markParamsUsed( array_keys( $data ) );
168 return AuthenticationRequest
::loadRequestsFromSubmission( $reqs, $data );
172 * Format an AuthenticationResponse for return
173 * @param AuthenticationResponse $res
176 public function formatAuthenticationResponse( AuthenticationResponse
$res ) {
177 $params = $this->module
->extractRequestParams();
180 'status' => $res->status
,
183 if ( $res->status
=== AuthenticationResponse
::PASS
&& $res->username
!== null ) {
184 $ret['username'] = $res->username
;
187 if ( $res->status
=== AuthenticationResponse
::REDIRECT
) {
188 $ret['redirecttarget'] = $res->redirectTarget
;
189 if ( $res->redirectApiData
!== null ) {
190 $ret['redirectdata'] = $res->redirectApiData
;
194 if ( $res->status
=== AuthenticationResponse
::REDIRECT ||
195 $res->status
=== AuthenticationResponse
::UI ||
196 $res->status
=== AuthenticationResponse
::RESTART
198 $ret +
= $this->formatRequests( $res->neededRequests
);
201 if ( $res->status
=== AuthenticationResponse
::FAIL ||
202 $res->status
=== AuthenticationResponse
::UI ||
203 $res->status
=== AuthenticationResponse
::RESTART
205 $this->formatMessage( $ret, 'message', $res->message
);
208 if ( $res->status
=== AuthenticationResponse
::FAIL ||
209 $res->status
=== AuthenticationResponse
::RESTART
211 $this->module
->getRequest()->getSession()->set(
212 'ApiAuthManagerHelper::createRequest',
215 $ret['canpreservestate'] = $res->createRequest
!== null;
217 $this->module
->getRequest()->getSession()->remove( 'ApiAuthManagerHelper::createRequest' );
224 * Fetch the preserved CreateFromLoginAuthenticationRequest, if any
225 * @return CreateFromLoginAuthenticationRequest|null
227 public function getPreservedRequest() {
228 $ret = $this->module
->getRequest()->getSession()->get( 'ApiAuthManagerHelper::createRequest' );
229 return $ret instanceof CreateFromLoginAuthenticationRequest ?
$ret : null;
233 * Format an array of AuthenticationRequests for return
234 * @param AuthenticationRequest[] $reqs
235 * @return array Will have a 'requests' key, and also 'fields' if $module's
236 * params include 'mergerequestfields'.
238 public function formatRequests( array $reqs ) {
239 $params = $this->module
->extractRequestParams();
240 $mergeFields = !empty( $params['mergerequestfields'] );
242 $ret = [ 'requests' => [] ];
243 foreach ( $reqs as $req ) {
244 $describe = $req->describeCredentials();
246 'id' => $req->getUniqueId(),
247 'metadata' => $req->getMetadata() +
[ ApiResult
::META_TYPE
=> 'assoc' ],
249 switch ( $req->required
) {
250 case AuthenticationRequest
::OPTIONAL
:
251 $reqInfo['required'] = 'optional';
253 case AuthenticationRequest
::REQUIRED
:
254 $reqInfo['required'] = 'required';
256 case AuthenticationRequest
::PRIMARY_REQUIRED
:
257 $reqInfo['required'] = 'primary-required';
260 $this->formatMessage( $reqInfo, 'provider', $describe['provider'] );
261 $this->formatMessage( $reqInfo, 'account', $describe['account'] );
262 if ( !$mergeFields ) {
263 $reqInfo['fields'] = $this->formatFields( (array)$req->getFieldInfo() );
265 $ret['requests'][] = $reqInfo;
268 if ( $mergeFields ) {
269 $fields = AuthenticationRequest
::mergeFieldInfo( $reqs );
270 $ret['fields'] = $this->formatFields( $fields );
277 * Clean up a field array for output
278 * @param ApiBase $module For context and parameters 'mergerequestfields'
279 * and 'messageformat'
280 * @param array $fields
283 private function formatFields( array $fields ) {
289 $module = $this->module
;
292 foreach ( $fields as $name => $field ) {
293 $ret = array_intersect_key( $field, $copy );
295 if ( isset( $field['options'] ) ) {
296 $ret['options'] = array_map( function ( $msg ) use ( $module ) {
297 return $msg->setContext( $module )->plain();
298 }, $field['options'] );
299 ApiResult
::setArrayType( $ret['options'], 'assoc' );
301 $this->formatMessage( $ret, 'label', $field['label'] );
302 $this->formatMessage( $ret, 'help', $field['help'] );
303 $ret['optional'] = !empty( $field['optional'] );
305 $retFields[$name] = $ret;
308 ApiResult
::setArrayType( $retFields, 'assoc' );
314 * Fetch the standard parameters this helper recognizes
315 * @param string $action AuthManager action
316 * @param string $param... Parameters to use
319 public static function getStandardParams( $action, $param /* ... */ ) {
322 ApiBase
::PARAM_TYPE
=> 'string',
323 ApiBase
::PARAM_ISMULTI
=> true,
324 ApiBase
::PARAM_HELP_MSG
=> [ 'api-help-authmanagerhelper-requests', $action ],
327 ApiBase
::PARAM_TYPE
=> 'string',
328 ApiBase
::PARAM_REQUIRED
=> true,
329 ApiBase
::PARAM_HELP_MSG
=> [ 'api-help-authmanagerhelper-request', $action ],
332 ApiBase
::PARAM_DFLT
=> 'wikitext',
333 ApiBase
::PARAM_TYPE
=> [ 'html', 'wikitext', 'raw', 'none' ],
334 ApiBase
::PARAM_HELP_MSG
=> 'api-help-authmanagerhelper-messageformat',
336 'mergerequestfields' => [
337 ApiBase
::PARAM_DFLT
=> false,
338 ApiBase
::PARAM_HELP_MSG
=> 'api-help-authmanagerhelper-mergerequestfields',
341 ApiBase
::PARAM_DFLT
=> false,
342 ApiBase
::PARAM_HELP_MSG
=> 'api-help-authmanagerhelper-preservestate',
345 ApiBase
::PARAM_TYPE
=> 'string',
346 ApiBase
::PARAM_HELP_MSG
=> 'api-help-authmanagerhelper-returnurl',
349 ApiBase
::PARAM_DFLT
=> false,
350 ApiBase
::PARAM_HELP_MSG
=> 'api-help-authmanagerhelper-continue',
355 $wantedParams = func_get_args();
356 array_shift( $wantedParams );
357 foreach ( $wantedParams as $name ) {
358 if ( isset( $params[$name] ) ) {
359 $ret[$name] = $params[$name];