summaryrefslogtreecommitdiff
blob: 34fdc7d1056a664903b4e8fff4a9a05ffbad782b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php

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();

		$primaryUrl = wfExpandUrl( $primaryLink['url'], PROTO_CANONICAL );
		$colon = $this->msg( 'colon-separator' )->text();
		$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 ( strlen( $wgEchoEmailFooterAddress ) ) {
			$text .= "\n\n$wgEchoEmailFooterAddress";
		}

		return $text;
	}
}