1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
|
<?php
/**
* Copyright © 2016 Wikimedia Foundation and contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
* @since 1.27
*/
namespace MediaWiki\Api;
use MediaWiki\Auth\AuthenticationRequest;
use MediaWiki\Auth\AuthenticationResponse;
use MediaWiki\Auth\AuthManager;
use MediaWiki\Auth\CreateFromLoginAuthenticationRequest;
use MediaWiki\Logger\LoggerFactory;
use MediaWiki\MediaWikiServices;
use MediaWiki\Message\Message;
use MediaWiki\Parser\Parser;
use UnexpectedValueException;
use Wikimedia\ParamValidator\ParamValidator;
/**
* Helper class for AuthManager-using API modules. Intended for use via
* composition.
*
* @ingroup API
*/
class ApiAuthManagerHelper {
/** @var ApiBase API module, for context and parameters */
private $module;
/** @var string Message output format */
private $messageFormat;
private AuthManager $authManager;
/**
* @param ApiBase $module API module, for context and parameters
* @param AuthManager|null $authManager
*/
public function __construct( ApiBase $module, ?AuthManager $authManager = null ) {
$this->module = $module;
$params = $module->extractRequestParams();
$this->messageFormat = $params['messageformat'] ?? 'wikitext';
$this->authManager = $authManager ?: MediaWikiServices::getInstance()->getAuthManager();
}
/**
* Static version of the constructor, for chaining
* @param ApiBase $module API module, for context and parameters
* @param AuthManager|null $authManager
* @return ApiAuthManagerHelper
*/
public static function newForModule( ApiBase $module, ?AuthManager $authManager = null ) {
return new self( $module, $authManager );
}
/**
* Format a message for output
* @param array &$res Result array
* @param string $key Result key
* @param Message $message
*/
private function formatMessage( array &$res, $key, Message $message ) {
switch ( $this->messageFormat ) {
case 'none':
break;
case 'wikitext':
$res[$key] = $message->setContext( $this->module )->text();
break;
case 'html':
$res[$key] = $message->setContext( $this->module )->parseAsBlock();
$res[$key] = Parser::stripOuterParagraph( $res[$key] );
break;
case 'raw':
$params = $message->getParams();
$res[$key] = [
'key' => $message->getKey(),
'params' => $params,
];
ApiResult::setIndexedTagName( $params, 'param' );
break;
}
}
/**
* Call $manager->securitySensitiveOperationStatus()
* @param string $operation Operation being checked.
* @throws ApiUsageException
*/
public function securitySensitiveOperation( $operation ) {
$status = $this->authManager->securitySensitiveOperationStatus( $operation );
switch ( $status ) {
case AuthManager::SEC_OK:
return;
case AuthManager::SEC_REAUTH:
$this->module->dieWithError( 'apierror-reauthenticate' );
// dieWithError prevents continuation
case AuthManager::SEC_FAIL:
$this->module->dieWithError( 'apierror-cannotreauthenticate' );
// dieWithError prevents continuation
default:
throw new UnexpectedValueException( "Unknown status \"$status\"" );
}
}
/**
* Filter out authentication requests by class name
* @param AuthenticationRequest[] $reqs Requests to filter
* @param string[] $remove Class names to remove
* @return AuthenticationRequest[]
*/
public static function blacklistAuthenticationRequests( array $reqs, array $remove ) {
if ( $remove ) {
$remove = array_fill_keys( $remove, true );
$reqs = array_filter( $reqs, static function ( $req ) use ( $remove ) {
return !isset( $remove[get_class( $req )] );
} );
}
return $reqs;
}
/**
* Fetch and load the AuthenticationRequests for an action
* @param string $action One of the AuthManager::ACTION_* constants
* @return AuthenticationRequest[]
*/
public function loadAuthenticationRequests( $action ) {
$params = $this->module->extractRequestParams();
$reqs = $this->authManager->getAuthenticationRequests( $action, $this->module->getUser() );
// Filter requests, if requested to do so
$wantedRequests = null;
if ( isset( $params['requests'] ) ) {
$wantedRequests = array_fill_keys( $params['requests'], true );
} elseif ( isset( $params['request'] ) ) {
$wantedRequests = [ $params['request'] => true ];
}
if ( $wantedRequests !== null ) {
$reqs = array_filter(
$reqs,
static function ( AuthenticationRequest $req ) use ( $wantedRequests ) {
return isset( $wantedRequests[$req->getUniqueId()] );
}
);
}
// Collect the fields for all the requests
$fields = [];
$sensitive = [];
foreach ( $reqs as $req ) {
$info = (array)$req->getFieldInfo();
$fields += $info;
$sensitive += array_filter( $info, static function ( $opts ) {
return !empty( $opts['sensitive'] );
} );
}
// Extract the request data for the fields and mark those request
// parameters as used
$data = array_intersect_key( $this->module->getRequest()->getValues(), $fields );
$this->module->getMain()->markParamsUsed( array_keys( $data ) );
if ( $sensitive ) {
$this->module->getMain()->markParamsSensitive( array_keys( $sensitive ) );
$this->module->requirePostedParameters( array_keys( $sensitive ), 'noprefix' );
}
return AuthenticationRequest::loadRequestsFromSubmission( $reqs, $data );
}
/**
* Format an AuthenticationResponse for return
* @param AuthenticationResponse $res
* @return array
*/
public function formatAuthenticationResponse( AuthenticationResponse $res ) {
$ret = [
'status' => $res->status,
];
if ( $res->status === AuthenticationResponse::PASS && $res->username !== null ) {
$ret['username'] = $res->username;
}
if ( $res->status === AuthenticationResponse::REDIRECT ) {
$ret['redirecttarget'] = $res->redirectTarget;
if ( $res->redirectApiData !== null ) {
$ret['redirectdata'] = $res->redirectApiData;
}
}
if ( $res->status === AuthenticationResponse::REDIRECT ||
$res->status === AuthenticationResponse::UI ||
$res->status === AuthenticationResponse::RESTART
) {
$ret += $this->formatRequests( $res->neededRequests );
}
if ( $res->status === AuthenticationResponse::FAIL ||
$res->status === AuthenticationResponse::UI ||
$res->status === AuthenticationResponse::RESTART
) {
$this->formatMessage( $ret, 'message', $res->message );
$ret['messagecode'] = ApiMessage::create( $res->message )->getApiCode();
}
if ( $res->status === AuthenticationResponse::FAIL ||
$res->status === AuthenticationResponse::RESTART
) {
$this->module->getRequest()->getSession()->set(
'ApiAuthManagerHelper::createRequest',
$res->createRequest
);
$ret['canpreservestate'] = $res->createRequest !== null;
} else {
$this->module->getRequest()->getSession()->remove( 'ApiAuthManagerHelper::createRequest' );
}
return $ret;
}
/**
* Logs successful or failed authentication.
* @param string $event Event type (e.g. 'accountcreation')
* @param AuthenticationResponse $result Response or error message
*/
public function logAuthenticationResult( $event, AuthenticationResponse $result ) {
if ( !in_array( $result->status, [ AuthenticationResponse::PASS, AuthenticationResponse::FAIL ] ) ) {
return;
}
$module = $this->module->getModuleName();
LoggerFactory::getInstance( 'authevents' )->info( "$module API attempt", [
'event' => $event,
'successful' => $result->status === AuthenticationResponse::PASS,
'status' => $result->message ? $result->message->getKey() : '-',
'module' => $module,
] );
}
/**
* Fetch the preserved CreateFromLoginAuthenticationRequest, if any
* @return CreateFromLoginAuthenticationRequest|null
*/
public function getPreservedRequest() {
$ret = $this->module->getRequest()->getSession()->get( 'ApiAuthManagerHelper::createRequest' );
return $ret instanceof CreateFromLoginAuthenticationRequest ? $ret : null;
}
/**
* Format an array of AuthenticationRequests for return
* @param AuthenticationRequest[] $reqs
* @return array Will have a 'requests' key, and also 'fields' if $module's
* params include 'mergerequestfields'.
*/
public function formatRequests( array $reqs ) {
$params = $this->module->extractRequestParams();
$mergeFields = !empty( $params['mergerequestfields'] );
$ret = [ 'requests' => [] ];
foreach ( $reqs as $req ) {
$describe = $req->describeCredentials();
$reqInfo = [
'id' => $req->getUniqueId(),
'metadata' => $req->getMetadata() + [ ApiResult::META_TYPE => 'assoc' ],
];
switch ( $req->required ) {
case AuthenticationRequest::OPTIONAL:
$reqInfo['required'] = 'optional';
break;
case AuthenticationRequest::REQUIRED:
$reqInfo['required'] = 'required';
break;
case AuthenticationRequest::PRIMARY_REQUIRED:
$reqInfo['required'] = 'primary-required';
break;
}
$this->formatMessage( $reqInfo, 'provider', $describe['provider'] );
$this->formatMessage( $reqInfo, 'account', $describe['account'] );
if ( !$mergeFields ) {
$reqInfo['fields'] = $this->formatFields( (array)$req->getFieldInfo() );
}
$ret['requests'][] = $reqInfo;
}
if ( $mergeFields ) {
$fields = AuthenticationRequest::mergeFieldInfo( $reqs );
$ret['fields'] = $this->formatFields( $fields );
}
return $ret;
}
/**
* Clean up a field array for output
* @param array $fields
* @phpcs:ignore Generic.Files.LineLength
* @phan-param array{type:string,options:array,value:string,label:Message,help:Message,optional:bool,sensitive:bool,skippable:bool} $fields
* @return array
*/
private function formatFields( array $fields ) {
static $copy = [
'type' => true,
'value' => true,
];
$module = $this->module;
$retFields = [];
foreach ( $fields as $name => $field ) {
$ret = array_intersect_key( $field, $copy );
if ( isset( $field['options'] ) ) {
$ret['options'] = array_map( static function ( $msg ) use ( $module ) {
return $msg->setContext( $module )->plain();
}, $field['options'] );
ApiResult::setArrayType( $ret['options'], 'assoc' );
}
$this->formatMessage( $ret, 'label', $field['label'] );
$this->formatMessage( $ret, 'help', $field['help'] );
$ret['optional'] = !empty( $field['optional'] );
$ret['sensitive'] = !empty( $field['sensitive'] );
$retFields[$name] = $ret;
}
ApiResult::setArrayType( $retFields, 'assoc' );
return $retFields;
}
/**
* Fetch the standard parameters this helper recognizes
* @param string $action AuthManager action
* @param string ...$wantedParams Parameters to use
* @return array
*/
public static function getStandardParams( $action, ...$wantedParams ) {
$params = [
'requests' => [
ParamValidator::PARAM_TYPE => 'string',
ParamValidator::PARAM_ISMULTI => true,
ApiBase::PARAM_HELP_MSG => [ 'api-help-authmanagerhelper-requests', $action ],
],
'request' => [
ParamValidator::PARAM_TYPE => 'string',
ParamValidator::PARAM_REQUIRED => true,
ApiBase::PARAM_HELP_MSG => [ 'api-help-authmanagerhelper-request', $action ],
],
'messageformat' => [
ParamValidator::PARAM_DEFAULT => 'wikitext',
ParamValidator::PARAM_TYPE => [ 'html', 'wikitext', 'raw', 'none' ],
ApiBase::PARAM_HELP_MSG => 'api-help-authmanagerhelper-messageformat',
],
'mergerequestfields' => [
ParamValidator::PARAM_DEFAULT => false,
ApiBase::PARAM_HELP_MSG => 'api-help-authmanagerhelper-mergerequestfields',
],
'preservestate' => [
ParamValidator::PARAM_DEFAULT => false,
ApiBase::PARAM_HELP_MSG => 'api-help-authmanagerhelper-preservestate',
],
'returnurl' => [
ParamValidator::PARAM_TYPE => 'string',
ApiBase::PARAM_HELP_MSG => 'api-help-authmanagerhelper-returnurl',
],
'continue' => [
ParamValidator::PARAM_DEFAULT => false,
ApiBase::PARAM_HELP_MSG => 'api-help-authmanagerhelper-continue',
],
];
$ret = [];
foreach ( $wantedParams as $name ) {
if ( isset( $params[$name] ) ) {
$ret[$name] = $params[$name];
}
}
return $ret;
}
}
/** @deprecated class alias since 1.43 */
class_alias( ApiAuthManagerHelper::class, 'ApiAuthManagerHelper' );
|