2021-08-19 20:35:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace MediaWiki\Extension\DiscussionTools;
|
|
|
|
|
|
|
|
use ApiBase;
|
|
|
|
use ApiMain;
|
2022-10-28 18:24:02 +00:00
|
|
|
use ApiUsageException;
|
2021-08-19 20:35:32 +00:00
|
|
|
use Wikimedia\ParamValidator\ParamValidator;
|
|
|
|
|
|
|
|
class ApiDiscussionToolsGetSubscriptions extends ApiBase {
|
|
|
|
|
2022-10-21 19:34:18 +00:00
|
|
|
private SubscriptionStore $subscriptionStore;
|
2021-08-19 20:35:32 +00:00
|
|
|
|
|
|
|
public function __construct(
|
|
|
|
ApiMain $main,
|
2022-09-02 02:05:02 +00:00
|
|
|
string $name,
|
2022-02-04 18:22:10 +00:00
|
|
|
SubscriptionStore $subscriptionStore
|
2021-08-19 20:35:32 +00:00
|
|
|
) {
|
|
|
|
parent::__construct( $main, $name );
|
|
|
|
$this->subscriptionStore = $subscriptionStore;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
2022-10-28 18:24:02 +00:00
|
|
|
* @throws ApiUsageException
|
2021-08-19 20:35:32 +00:00
|
|
|
*/
|
|
|
|
public function execute() {
|
|
|
|
$user = $this->getUser();
|
2023-06-02 19:11:36 +00:00
|
|
|
if ( !$user->isNamed() ) {
|
2021-08-19 20:35:32 +00:00
|
|
|
$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,
|
2022-04-03 23:26:15 +00:00
|
|
|
ParamValidator::PARAM_ISMULTI => true,
|
2021-08-19 20:35:32 +00:00
|
|
|
],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
public function isInternal() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|