mediawiki-extensions-Discus.../includes/ApiDiscussionToolsGetSubscriptions.php
gerritbot 731d530534 Fix usage of ApiBase::PARAM_* deprecated constants
The ones that are replaced with ParamValidator

Bug: T275455
Change-Id: I9ed72118c05cff879142ed89a3906c077413d25b
2022-04-04 00:40:51 +00:00

72 lines
1.5 KiB
PHP

<?php
namespace MediaWiki\Extension\DiscussionTools;
use ApiBase;
use ApiMain;
use Wikimedia\ParamValidator\ParamValidator;
class ApiDiscussionToolsGetSubscriptions extends ApiBase {
/** @var SubscriptionStore */
private $subscriptionStore;
/**
* @param ApiMain $main
* @param string $name
* @param SubscriptionStore $subscriptionStore
*/
public function __construct(
ApiMain $main,
$name,
SubscriptionStore $subscriptionStore
) {
parent::__construct( $main, $name );
$this->subscriptionStore = $subscriptionStore;
}
/**
* @inheritDoc
*/
public function execute() {
$user = $this->getUser();
if ( !$user->isRegistered() ) {
$this->dieWithError( 'apierror-mustbeloggedin-generic', 'notloggedin' );
}
$params = $this->extractRequestParams();
$itemNames = $params['commentname'];
$items = $this->subscriptionStore->getSubscriptionItemsForUser(
$user,
$itemNames
);
// Ensure consistent formatting in JSON and XML formats
$this->getResult()->addIndexedTagName( 'subscriptions', 'subscription' );
$this->getResult()->addArrayType( 'subscriptions', 'kvp', 'name' );
foreach ( $items as $item ) {
$this->getResult()->addValue( 'subscriptions', $item->getItemName(), $item->getState() );
}
}
/**
* @inheritDoc
*/
public function getAllowedParams() {
return [
'commentname' => [
ParamValidator::PARAM_REQUIRED => true,
ParamValidator::PARAM_ISMULTI => true,
],
];
}
/**
* @inheritDoc
*/
public function isInternal() {
return true;
}
}