mediawiki-extensions-Echo/includes/formatters/EchoEventFormatter.php
Pppery cf1acd5048 Specify that watchlist emails are only sent once per page
Bug: T203941
Change-Id: I2a19b06dbddd927a0f9c046301abc698c2494b8d
2021-12-12 13:35:12 -05:00

82 lines
1.9 KiB
PHP

<?php
use MediaWiki\Logger\LoggerFactory;
/**
* Abstract class that each "formatter" should implement.
*
* A formatter is an output type, example formatters would be:
* * Special:Notifications
* * HTML email
* * plaintext email
*
* The formatter does not maintain any state except for the
* arguments passed in the constructor (user and language)
*/
abstract class EchoEventFormatter {
/** @var User */
protected $user;
/** @var Language */
protected $language;
public function __construct( User $user, Language $language ) {
$this->user = $user;
$this->language = $language;
}
/**
* Equivalent to IContextSource::msg for the current
* language
*
* @param string ...$args
* @return Message
*/
protected function msg( ...$args ) {
/**
* @var Message $msg
*/
$msg = wfMessage( ...$args );
$msg->inLanguage( $this->language );
return $msg;
}
/**
* @param EchoEvent $event
* @param string $distributionType 'web' or 'email'
* @return string[]|string|false Output format depends on implementation, false if it cannot be formatted
*/
final public function format( EchoEvent $event, string $distributionType = "web" ) {
// Deleted events should have been filtered out before getting there.
// This is just to be sure.
if ( $event->isDeleted() ) {
return false;
}
if ( !EchoEventPresentationModel::supportsPresentationModel( $event->getType() ) ) {
LoggerFactory::getInstance( 'Echo' )->debug(
"No presentation model found for event type \"{type}\"",
[
'type' => $event->getType(),
]
);
return false;
}
$model = EchoEventPresentationModel::factory( $event, $this->language, $this->user, $distributionType );
if ( !$model->canRender() ) {
return false;
}
return $this->formatModel( $model );
}
/**
* @param EchoEventPresentationModel $model
* @return string[]|string
*/
abstract protected function formatModel( EchoEventPresentationModel $model );
}