mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
extract payload from generic format method
This will allow 3rd parties to define their own payload for notification Change-Id: If3a7c1d7d51beb96379af46617e15f76a32e6c05
This commit is contained in:
parent
5f945a6fdd
commit
5526c24375
|
@ -1,5 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @Todo - Consider having $event/$user as class properties since the formatter is
|
||||
* always tied to these two entities, in this case, we won't have to pass it around
|
||||
* in all the internal method
|
||||
*/
|
||||
class EchoBasicFormatter extends EchoNotificationFormatter {
|
||||
protected $messageKey = false;
|
||||
protected $messageParams = false;
|
||||
|
@ -7,7 +12,6 @@ class EchoBasicFormatter extends EchoNotificationFormatter {
|
|||
'title-message',
|
||||
'title-params',
|
||||
);
|
||||
protected $validPayloadComponents = array( 'summary', 'snippet', 'welcome' );
|
||||
|
||||
protected $title, $flyoutTitle, $content, $email, $icon;
|
||||
|
||||
|
@ -142,25 +146,7 @@ class EchoBasicFormatter extends EchoNotificationFormatter {
|
|||
// Build the notification payload
|
||||
$payload = '';
|
||||
foreach ( $this->payload as $payloadComponent ) {
|
||||
if ( in_array( $payloadComponent, $this->validPayloadComponents ) ) {
|
||||
switch ( $payloadComponent ) {
|
||||
case 'summary':
|
||||
$payload .= $this->formatSummary( $event, $user );
|
||||
break;
|
||||
case 'snippet':
|
||||
// TODO: build this
|
||||
break;
|
||||
case 'welcome':
|
||||
$details = array(
|
||||
'message' => 'notification-new-user-content',
|
||||
'params' => array( 'agent' )
|
||||
);
|
||||
$payload .= $this->formatFragment( $details, $event, $user )->parse();
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
throw new MWException( "Unrecognised payload component $payloadComponent" );
|
||||
}
|
||||
$payload .= $this->formatPayload( $payloadComponent, $event, $user );
|
||||
}
|
||||
|
||||
if ( $payload !== '' ) {
|
||||
|
@ -247,6 +233,32 @@ class EchoBasicFormatter extends EchoNotificationFormatter {
|
|||
return $message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Formats the payload of a notification, child method overwriting this method should
|
||||
* always call this method in default case so they can use the payload defined in this
|
||||
* function as well
|
||||
* @param $payload string
|
||||
* @param $event EchoEvent
|
||||
* @param $user User
|
||||
* @return string
|
||||
*/
|
||||
protected function formatPayload( $payload, $event, $user ) {
|
||||
switch ( $payload ) {
|
||||
case 'summary':
|
||||
return $this->formatSummary( $event, $user );
|
||||
break;
|
||||
case 'welcome':
|
||||
$details = array(
|
||||
'message' => 'notification-new-user-content',
|
||||
'params' => array( 'agent' )
|
||||
);
|
||||
return $this->formatFragment( $details, $event, $user )->parse();
|
||||
break;
|
||||
default:
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate links based on output format and passed properties
|
||||
* $event EchoEvent
|
||||
|
|
Loading…
Reference in a new issue