2019-12-09 02:42:55 +00:00
|
|
|
<?php
|
|
|
|
|
2022-11-01 22:01:23 +00:00
|
|
|
namespace MediaWiki\Extension\Notifications\Formatters;
|
|
|
|
|
2023-12-11 15:33:08 +00:00
|
|
|
use MediaWiki\SpecialPage\SpecialPage;
|
2022-11-01 22:01:23 +00:00
|
|
|
|
2019-12-09 02:42:55 +00:00
|
|
|
class EchoWatchlistChangePresentationModel extends EchoEventPresentationModel {
|
|
|
|
|
|
|
|
public function getIconType() {
|
2022-05-11 11:51:52 +00:00
|
|
|
return 'watchlist-progressive';
|
2019-12-09 02:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getHeaderMessage() {
|
|
|
|
if ( $this->isMultiTypeBundle() ) {
|
|
|
|
$status = "changed";
|
|
|
|
} else {
|
|
|
|
$status = $this->event->getExtraParam( 'status' );
|
|
|
|
}
|
|
|
|
if ( $this->isMultiUserBundle() ) {
|
|
|
|
// Messages: notification-header-watchlist-multiuser-changed,
|
|
|
|
// notification-header-watchlist-multiuser-created
|
|
|
|
// notification-header-watchlist-multiuser-deleted
|
|
|
|
// notification-header-watchlist-multiuser-moved
|
|
|
|
// notification-header-watchlist-multiuser-restored
|
|
|
|
$msg = $this->msg( "notification-header-watchlist-multiuser-" . $status );
|
|
|
|
} else {
|
|
|
|
// Messages: notification-header-watchlist-changed,
|
|
|
|
// notification-header-watchlist-created
|
|
|
|
// notification-header-watchlist-deleted
|
|
|
|
// notification-header-watchlist-moved
|
|
|
|
// notification-header-watchlist-restored
|
|
|
|
$msg = $this->getMessageWithAgent( "notification-header-watchlist-" . $status );
|
|
|
|
}
|
2022-06-03 07:38:27 +00:00
|
|
|
$msg->params( $this->getTruncatedTitleText( $this->event->getTitle(), true ) );
|
2019-12-09 02:42:55 +00:00
|
|
|
$msg->params( $this->getViewingUserForGender() );
|
|
|
|
$msg->numParams( $this->getBundleCount() );
|
|
|
|
return $msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getPrimaryLink() {
|
|
|
|
if ( $this->isBundled() ) {
|
|
|
|
return [
|
|
|
|
'url' => $this->event->getTitle()->getLocalUrl(),
|
|
|
|
'label' => $this->msg( 'notification-link-text-view-page' )->text()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
return [
|
|
|
|
'url' => $this->getViewChangesUrl(),
|
2020-06-27 10:05:03 +00:00
|
|
|
'label' => $this->msg( 'notification-link-text-view-changes', $this->getViewingUserForGender() )
|
|
|
|
->text(),
|
2019-12-09 02:42:55 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSecondaryLinks() {
|
|
|
|
if ( $this->isBundled() ) {
|
|
|
|
if ( $this->isMultiUserBundle() ) {
|
|
|
|
return [];
|
|
|
|
} else {
|
|
|
|
return [ $this->getAgentLink() ];
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$viewChangesLink = [
|
|
|
|
'url' => $this->getViewChangesUrl(),
|
2020-06-27 10:05:03 +00:00
|
|
|
'label' => $this->msg( 'notification-link-text-view-changes', $this->getViewingUserForGender() )
|
|
|
|
->text(),
|
2019-12-09 02:42:55 +00:00
|
|
|
'description' => '',
|
|
|
|
'icon' => 'changes',
|
|
|
|
'prioritized' => true,
|
|
|
|
];
|
|
|
|
return [ $this->getAgentLink(), $viewChangesLink ];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-01 02:17:13 +00:00
|
|
|
public function getBodyMessage() {
|
|
|
|
if ( $this->event->getExtraParam( 'emailonce' ) && $this->getDistributionType() == 'email' ) {
|
|
|
|
return $this->msg( 'notification-body-watchlist-once', $this->getViewingUserForGender() );
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-09 02:42:55 +00:00
|
|
|
private function isMultiUserBundle() {
|
|
|
|
foreach ( $this->getBundledEvents() as $bundled ) {
|
|
|
|
if ( !$bundled->getAgent()->equals( $this->event->getAgent() ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function isMultiTypeBundle() {
|
|
|
|
foreach ( $this->getBundledEvents() as $bundled ) {
|
|
|
|
if ( $bundled->getExtraParam( 'status' ) !== $this->event->getExtraParam( 'status' ) ) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getViewChangesUrl() {
|
|
|
|
$revid = $this->event->getExtraParam( 'revid' );
|
|
|
|
if ( $revid === 0 ) {
|
|
|
|
$url = SpecialPage::getTitleFor( 'Log' )->getLocalUrl( [
|
|
|
|
'logid' => $this->event->getExtraParam( 'logid' )
|
|
|
|
] );
|
|
|
|
} else {
|
|
|
|
$url = $this->event->getTitle()->getLocalURL( [
|
|
|
|
'oldid' => 'prev',
|
|
|
|
'diff' => $revid
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
}
|