Current File : /home/jvzmxxx/wiki1/extensions/Echo/includes/formatters/UserRightsPresentationModel.php
<?php

/**
 * Formatter for 'user-rights' notifications
 */
class EchoUserRightsPresentationModel extends EchoEventPresentationModel {

	public function getIconType() {
		return 'user-rights';
	}

	public function getHeaderMessage() {
		list( $formattedName, $genderName ) = $this->getAgentForOutput();
		$add = array_map(
			array( $this->language, 'embedBidi' ),
			$this->getLocalizedGroupNames( array_values( $this->event->getExtraParam( 'add', array() ) ) )
		);
		$remove = array_map(
			array( $this->language, 'embedBidi' ),
			$this->getLocalizedGroupNames( array_values( $this->event->getExtraParam( 'remove', array() ) ) )
		);
		if ( $add && !$remove ) {
			$msg = $this->msg( 'notification-header-user-rights-add-only' );
			$msg->params( $genderName );
			$msg->params( $this->language->commaList( $add ) );
			$msg->params( count( $add ) );
			$msg->params( $this->getViewingUserForGender() );
			return $msg;
		} elseif ( !$add && $remove ) {
			$msg = $this->msg( 'notification-header-user-rights-remove-only' );
			$msg->params( $genderName );
			$msg->params( $this->language->commaList( $remove ) );
			$msg->params( count( $remove ) );
			$msg->params( $this->getViewingUserForGender() );
			return $msg;
		} else {
			$msg = $this->msg( 'notification-header-user-rights-add-and-remove' );
			$msg->params( $genderName );
			$msg->params( $this->language->commaList( $add ) );
			$msg->params( count( $add ) );
			$msg->params( $this->language->commaList( $remove ) );
			$msg->params( count( $remove ) );
			$msg->params( $this->getViewingUserForGender() );
			return $msg;
		}
	}

	public function getBodyMessage() {
		$reason = $this->event->getExtraParam( 'reason' );
		return $reason ? $this->msg( 'notification-body-user-rights' )->params( $reason ) : false;
	}

	private function getLocalizedGroupNames( $names ) {
		return array_map( function( $name ) {
			$msg = $this->msg( 'group-' . $name );
			return $msg->isBlank() ? $name : $msg->text();
		}, $names );
	}

	public function getPrimaryLink() {
		$addedGroups = array_values( $this->event->getExtraParam( 'add', array() ) );
		$removedGroups = array_values( $this->event->getExtraParam( 'remove', array() ) );
		if ( count( $addedGroups ) >= 1 && count( $removedGroups ) === 0 ) {
			$fragment = $addedGroups[0];
		} elseif ( count( $addedGroups ) === 0 && count( $removedGroups ) >= 1 ) {
			$fragment = $removedGroups[0];
		} else {
			$fragment = '';
		}
		return array(
			'url' => SpecialPage::getTitleFor( 'Listgrouprights', false, $fragment )->getFullURL(),
			'label' => $this->msg( 'echo-learn-more' )->text()
		);
	}

	public function getSecondaryLinks() {
		return array( $this->getAgentLink(), $this->getLogLink() );
	}

	private function getLogLink() {
		$affectedUserPage = User::newFromId( $this->event->getExtraParam( 'user' ) )->getUserPage();
		$query = array(
			'type' => 'rights',
			'page' => $affectedUserPage->getPrefixedText(),
			'user' => $this->event->getAgent()->getName(),
		);
		return array(
			'label' => $this->msg( 'echo-log' )->text(),
			'url' => SpecialPage::getTitleFor( 'Log' )->getFullURL( $query ),
			'description' => '',
			'icon' => false,
			'prioritized' => true,
		);
	}

	protected function getSubjectMessageKey() {
		return 'notification-user-rights-email-subject';
	}
}