mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 19:28:31 +00:00
7619a76877
Change-Id: I5bf398cdb76a577543f6526ac1bee4a73897103d
61 lines
1.5 KiB
PHP
61 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace MediaWiki\Extension\Notifications\Formatters;
|
|
|
|
use Sanitizer;
|
|
use SpecialPage;
|
|
|
|
class EchoPlainTextEmailFormatter extends EchoEventFormatter {
|
|
protected function formatModel( EchoEventPresentationModel $model ) {
|
|
$subject = Sanitizer::stripAllTags( $model->getSubjectMessage()->parse() );
|
|
|
|
$text = Sanitizer::stripAllTags( $model->getHeaderMessage()->parse() );
|
|
|
|
$text .= "\n\n";
|
|
|
|
$bodyMsg = $model->getBodyMessage();
|
|
if ( $bodyMsg ) {
|
|
$text .= Sanitizer::stripAllTags( $bodyMsg->parse() );
|
|
}
|
|
|
|
$primaryLink = $model->getPrimaryLinkWithMarkAsRead();
|
|
$colon = $this->msg( 'colon-separator' )->text();
|
|
|
|
if ( $primaryLink ) {
|
|
$primaryUrl = wfExpandUrl( $primaryLink['url'], PROTO_CANONICAL );
|
|
$text .= "\n\n{$primaryLink['label']}$colon <$primaryUrl>";
|
|
}
|
|
|
|
foreach ( array_filter( $model->getSecondaryLinks() ) as $secondaryLink ) {
|
|
$url = wfExpandUrl( $secondaryLink['url'], PROTO_CANONICAL );
|
|
$text .= "\n\n{$secondaryLink['label']}$colon <$url>";
|
|
}
|
|
|
|
// Footer
|
|
$text .= "\n\n{$this->getFooter()}";
|
|
|
|
return [
|
|
'body' => $text,
|
|
'subject' => $subject,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getFooter() {
|
|
global $wgEchoEmailFooterAddress;
|
|
|
|
$footerMsg = $this->msg( 'echo-email-plain-footer', $this->user )->text();
|
|
$prefsUrl = SpecialPage::getTitleFor( 'Preferences', false, 'mw-prefsection-echo' )
|
|
->getFullURL( '', false, PROTO_CANONICAL );
|
|
$text = "--\n\n$footerMsg\n$prefsUrl";
|
|
|
|
if ( $wgEchoEmailFooterAddress !== '' ) {
|
|
$text .= "\n\n$wgEchoEmailFooterAddress";
|
|
}
|
|
|
|
return $text;
|
|
}
|
|
}
|