2015-04-29 12:08:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class ApiEchoMarkSeen extends ApiBase {
|
|
|
|
|
|
|
|
public function execute() {
|
|
|
|
// To avoid API warning, register the parameter used to bust browser cache
|
|
|
|
$this->getMain()->getVal( '_' );
|
|
|
|
|
|
|
|
$user = $this->getUser();
|
|
|
|
if ( $user->isAnon() ) {
|
2016-11-03 19:16:56 +00:00
|
|
|
$this->dieWithError( 'apierror-mustbeloggedin-generic', 'login-required' );
|
2015-04-29 12:08:30 +00:00
|
|
|
}
|
|
|
|
|
2015-09-03 01:11:10 +00:00
|
|
|
$params = $this->extractRequestParams();
|
2015-04-29 12:08:30 +00:00
|
|
|
$timestamp = wfTimestamp( TS_MW );
|
2015-08-24 23:43:38 +00:00
|
|
|
$seenTime = EchoSeenTime::newFromUser( $user );
|
2015-09-03 01:11:10 +00:00
|
|
|
$seenTime->setTime( $timestamp, $params['type'] );
|
2015-04-29 12:08:30 +00:00
|
|
|
|
2016-07-20 22:20:59 +00:00
|
|
|
if ( $params['timestampFormat'] === 'ISO_8601' ) {
|
|
|
|
$outputTimestamp = wfTimestamp( TS_ISO_8601, $timestamp );
|
|
|
|
} else {
|
|
|
|
// MW
|
2017-01-05 22:06:26 +00:00
|
|
|
$this->addDeprecation( 'apiwarn-echo-deprecation-timestampformat', 'action=echomarkseen×tampFormat=MW' );
|
2016-07-20 22:20:59 +00:00
|
|
|
|
|
|
|
$outputTimestamp = $timestamp;
|
|
|
|
}
|
|
|
|
|
2016-12-05 18:51:07 +00:00
|
|
|
$this->getResult()->addValue( 'query', $this->getModuleName(), [
|
2015-04-29 12:08:30 +00:00
|
|
|
'result' => 'success',
|
2016-07-20 22:20:59 +00:00
|
|
|
'timestamp' => $outputTimestamp,
|
2016-12-05 18:51:07 +00:00
|
|
|
] );
|
2015-04-29 12:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getAllowedParams() {
|
2016-12-05 18:51:07 +00:00
|
|
|
return [
|
|
|
|
'token' => [
|
2015-04-29 12:08:30 +00:00
|
|
|
ApiBase::PARAM_REQUIRED => true,
|
2016-12-05 18:51:07 +00:00
|
|
|
],
|
|
|
|
'type' => [
|
2015-09-03 01:11:10 +00:00
|
|
|
ApiBase::PARAM_REQUIRED => true,
|
2016-12-05 18:51:07 +00:00
|
|
|
ApiBase::PARAM_TYPE => [ 'alert', 'message', 'all' ],
|
|
|
|
],
|
|
|
|
'timestampFormat' => [
|
2016-07-20 22:20:59 +00:00
|
|
|
// Not using the TS constants, since clients can't.
|
|
|
|
ApiBase::PARAM_DFLT => 'MW',
|
2016-12-05 18:51:07 +00:00
|
|
|
ApiBase::PARAM_TYPE => [ 'ISO_8601', 'MW' ],
|
|
|
|
],
|
|
|
|
];
|
2015-04-29 12:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function needsToken() {
|
|
|
|
return 'csrf';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getTokenSalt() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function mustBePosted() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function isWriteMode() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see ApiBase::getExamplesMessages()
|
2018-08-13 07:25:22 +00:00
|
|
|
* @return string[]
|
2015-04-29 12:08:30 +00:00
|
|
|
*/
|
|
|
|
protected function getExamplesMessages() {
|
2016-12-05 18:51:07 +00:00
|
|
|
return [
|
2015-09-03 01:11:10 +00:00
|
|
|
'action=echomarkseen&type=all' => 'apihelp-echomarkseen-example-1',
|
2016-12-05 18:51:07 +00:00
|
|
|
];
|
2015-04-29 12:08:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHelpUrls() {
|
|
|
|
return 'https://www.mediawiki.org/wiki/Echo_(Notifications)/API';
|
|
|
|
}
|
|
|
|
}
|