mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-29 01:54:33 +00:00
cac85b635f
This involves: * Making this value no longer admin-configurable. * Changing getNotificationCountForOutput to return only a single value Since there is no + in the formatted value anymore, we can actually use the same value for both. This is a B/C break, but hopefully worth it to simplify the method call. For now, the excess parameter is just marked unused. It could be removed at some point if the translations are updated. This must be merged at the same time as: * Flow - Ibfa56b1af9e8c56b4c5f900e0d487bc09688b2a2 * MobileFrontend - Ibf784b279d56773a227ff261b75f2b26125bbb63 (well, MF can be merged first) * translatewiki - I2a4b6938aed49e4101deb6b9351c43656a863490 Also, change 1 to One/one, per Siebrand on the task. This can easily be dropped/undone if we don't want it. Also, remove reference to no-longer-existent notification-page-linked-bundle Bug: T127288 Change-Id: Iabeaae747f99980c0610d552f6b38f89d940b890
142 lines
3.9 KiB
PHP
142 lines
3.9 KiB
PHP
<?php
|
|
|
|
class EchoEditUserTalkPresentationModel extends EchoEventPresentationModel {
|
|
|
|
public function canRender() {
|
|
return (bool)$this->event->getTitle();
|
|
}
|
|
|
|
public function getIconType() {
|
|
return 'edit-user-talk';
|
|
}
|
|
|
|
public function getPrimaryLink() {
|
|
$title = $this->event->getTitle();
|
|
if ( !$this->isBundled() && $this->hasSection() ) {
|
|
$title = Title::makeTitle(
|
|
$title->getNamespace(),
|
|
$title->getDBkey(),
|
|
$this->formatSubjectAnchor()
|
|
);
|
|
}
|
|
|
|
return array(
|
|
'url' => $title->getFullURL(),
|
|
'label' => $this->msg( 'notification-link-text-view-message' )->text()
|
|
);
|
|
}
|
|
|
|
public function getSecondaryLinks() {
|
|
$diffLink = array(
|
|
'url' => $this->getDiffLinkUrl(),
|
|
'label' => $this->msg( 'notification-link-text-view-changes', $this->getViewingUserForGender() )->text(),
|
|
'description' => '',
|
|
'icon' => 'changes',
|
|
'prioritized' => true
|
|
);
|
|
|
|
if ( $this->isBundled() ) {
|
|
return array( $diffLink );
|
|
} else {
|
|
return array( $this->getAgentLink(), $diffLink );
|
|
}
|
|
}
|
|
|
|
public function getHeaderMessage() {
|
|
if ( $this->isBundled() ) {
|
|
$msg = $this->msg( "notification-bundle-header-{$this->type}-v2" );
|
|
$count = $this->getNotificationCountForOutput();
|
|
|
|
// Repeat is B/C until unused parameter is removed from translations
|
|
$msg->numParams( $count, $count );
|
|
$msg->params( $this->getViewingUserForGender() );
|
|
return $msg;
|
|
} elseif ( $this->hasSection() ) {
|
|
$msg = $this->getMessageWithAgent( "notification-header-{$this->type}-with-section" );
|
|
$msg->params( $this->getViewingUserForGender() );
|
|
$msg->params( $this->language->embedBidi( $this->getSectionTitleSnippet() ) );
|
|
return $msg;
|
|
} else {
|
|
$msg = parent::getHeaderMessage();
|
|
$msg->params( $this->getViewingUserForGender() );
|
|
return $msg;
|
|
}
|
|
}
|
|
|
|
public function getBodyMessage() {
|
|
if ( !$this->isBundled() && $this->hasSection() ) {
|
|
$msg = $this->msg( 'notification-body-edit-user-talk-with-section' );
|
|
$msg->params( wfEscapeWikiText( $this->getRevisionSnippet() ) );
|
|
return $msg;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
private function hasSection() {
|
|
return (bool)$this->event->getExtraParam( 'section-title' );
|
|
}
|
|
|
|
/**
|
|
* Get the section title for a talk page post
|
|
* @return string
|
|
*/
|
|
private function getSectionTitleSnippet() {
|
|
if ( $this->userCan( Revision::DELETED_TEXT ) ) {
|
|
return EchoDiscussionParser::getTextSnippet(
|
|
$this->event->getExtraParam( 'section-title' ),
|
|
$this->language,
|
|
self::SECTION_TITLE_RECOMMENDED_LENGTH
|
|
);
|
|
} else {
|
|
return $this->msg( 'echo-rev-deleted-text-view' )->text();
|
|
}
|
|
}
|
|
|
|
private function getRevisionSnippet() {
|
|
$sectionText = $this->event->getExtraParam( 'section-text' );
|
|
if ( $sectionText === null || !$this->userCan( Revision::DELETED_TEXT ) ) {
|
|
return '';
|
|
}
|
|
|
|
return trim( $sectionText );
|
|
}
|
|
|
|
/**
|
|
* Extract the subject anchor (linkable portion of the edited page) from
|
|
* the event.
|
|
*
|
|
* @return string The anchor on page, or an empty string
|
|
*/
|
|
private function formatSubjectAnchor() {
|
|
global $wgParser;
|
|
|
|
if ( !$this->userCan( Revision::DELETED_TEXT ) ) {
|
|
return $this->msg( 'echo-rev-deleted-text-view' )->text();
|
|
}
|
|
$sectionTitle = $this->event->getExtraParam( 'section-title' );
|
|
if ( $sectionTitle === null ) {
|
|
return '';
|
|
}
|
|
|
|
// Strip out #
|
|
return substr( $wgParser->guessLegacySectionNameFromWikiText( $sectionTitle ), 1 );
|
|
}
|
|
|
|
private function getDiffLinkUrl() {
|
|
$revId = $this->event->getExtraParam( 'revid' );
|
|
$oldId = $this->isBundled() ? $this->getRevBeforeFirstNotification() : 'prev';
|
|
$query = array(
|
|
'oldid' => $oldId,
|
|
'diff' => $revId,
|
|
);
|
|
return $this->event->getTitle()->getFullURL( $query );
|
|
}
|
|
|
|
private function getRevBeforeFirstNotification() {
|
|
$events = $this->getBundledEvents();
|
|
$firstNotificationRevId = end( $events )->getExtraParam( 'revid' );
|
|
return $this->event->getTitle()->getPreviousRevisionID( $firstNotificationRevId );
|
|
}
|
|
}
|