mediawiki-extensions-Echo/includes/Formatters/EchoMentionInSummaryPresentationModel.php
Reedy 7619a76877 Namespace Echo Formatters
Change-Id: I5bf398cdb76a577543f6526ac1bee4a73897103d
2022-11-01 21:20:06 -06:00

63 lines
1.6 KiB
PHP

<?php
namespace MediaWiki\Extension\Notifications\Formatters;
use Linker;
use MediaWiki\Revision\RevisionRecord;
use Sanitizer;
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 && $revision->getComment() && $this->userCan( RevisionRecord::DELETED_COMMENT ) ) {
$summary = $revision->getComment()->text;
$summary = Linker::formatComment( $summary );
$summary = Sanitizer::stripAllTags( $summary );
return $this->msg( 'notification-body-mention' )
->plaintextParams( $summary );
} 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() {
return $this->event->getTitle()->getLocalURL( [
'oldid' => 'prev',
'diff' => $this->event->getExtraParam( 'revid' )
] );
}
}