mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 07:54:13 +00:00
8e5aa13a73
Class Revision is deprecated and in this patch, replaces usage with appropriate classes; RevisionRecord, RevisionStore, etc. Bug: T221163 Change-Id: Icfc85167a636bef95daab236ab80113c1a3cf41b
62 lines
1.5 KiB
PHP
62 lines
1.5 KiB
PHP
<?php
|
|
|
|
use MediaWiki\Revision\RevisionRecord;
|
|
|
|
class EchoMentionInSummaryPresentationModel extends EchoEventPresentationModel {
|
|
|
|
public function getIconType() {
|
|
return 'mention';
|
|
}
|
|
|
|
public function canRender() {
|
|
return (bool)$this->event->getTitle();
|
|
}
|
|
|
|
public function getHeaderMessage() {
|
|
$msg = $this->getMessageWithAgent( 'notification-header-mention-summary' );
|
|
$msg->params( $this->getViewingUserForGender() );
|
|
$msg->params( $this->getTruncatedTitleText( $this->event->getTitle(), true ) );
|
|
|
|
return $msg;
|
|
}
|
|
|
|
public function getBodyMessage() {
|
|
$revision = $this->event->getRevision();
|
|
if ( $revision && $this->userCan( RevisionRecord::DELETED_COMMENT ) ) {
|
|
$summary = $revision->getComment();
|
|
$summary = Linker::formatComment( $summary );
|
|
$summary = Sanitizer::stripAllTags( $summary );
|
|
|
|
$msg = $this->msg( 'notification-body-mention' )
|
|
->plaintextParams( $summary );
|
|
return $msg;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public function getPrimaryLink() {
|
|
return [
|
|
'url' => $this->getDiffURL(),
|
|
'label' => $this->msg( 'notification-link-text-view-changes', $this->getViewingUserForGender() )->text(),
|
|
];
|
|
}
|
|
|
|
public function getSecondaryLinks() {
|
|
return [ $this->getAgentLink() ];
|
|
}
|
|
|
|
protected function getSubjectMessageKey() {
|
|
return 'notification-mention-email-subject';
|
|
}
|
|
|
|
private function getDiffURL() {
|
|
$title = $this->event->getTitle();
|
|
|
|
return $title->getLocalURL( [
|
|
'oldid' => 'prev',
|
|
'diff' => $this->event->getExtraParam( 'revid' )
|
|
] );
|
|
}
|
|
}
|