isRegistered = $isRegistered; $this->isTemp = $isTemp; $this->localizer = $localizer; $this->title = $title; $this->user = $user; $this->userPageData = $userPageData; } /** * Get the user edit count * * @return array|null */ private function getUserEditCount(): ?array { // Return user edits $edits = MediaWikiServices::getInstance()->getUserEditTracker()->getUserEditCount( $this->user ); if ( empty( $edits ) ) { return null; } $label = $this->localizer->msg( 'usereditcount' )->numParams( $edits ); $label = str_replace( $edits, '', $label ); return [ 'count' => number_format( $edits, 0 ), 'label' => $label ]; } /** * Build the template data for the user groups * * @return array|null */ private function getUserGroups(): ?array { $groups = MediaWikiServices::getInstance()->getUserGroupManager()->getUserGroups( $this->user ); if ( empty( $groups ) ) { return null; } $listItems = []; $msgKey = 'group-%s-member'; foreach ( $groups as $group ) { $id = sprintf( $msgKey, $group ); $text = $this->localizer->msg( $id )->text(); try { $title = $this->title->newFromTextThrow( $text, NS_PROJECT ); catch ( MalformedTitleException $e ) { // ignore } if ( !$text || !$title ) { continue; } $link = new CitizenComponentLink( $title->getLinkURL(), ucfirst( $text ) ); $listItem = new CitizenComponentMenuListItem( $link, 'citizen-userInfo-usergroup', $id ); $listItems[] = $listItem->getTemplateData(); } return [ 'array-list-items' => $listItems ]; } /** * Build the template data for the user page menu * * @return array */ private function getUserPage(): array { $user = $this->user; $userPageData = $this->userPageData; $htmlItems = $userPageData['html-items']; $realname = $user->getRealName(); if ( !empty( $realname ) ) { $username = $user->getName(); $innerHtml = <<$realname $username HTML; // Dirty but it works $htmlItems = str_replace( ">" . $username . "<", ">" . $innerHtml . "<", $userPageData['html-items'] ); } $menu = new CitizenComponentMenu( [ 'id' => 'citizen-user-menu-userpage', 'class' => null, 'label' => null, 'html-items' => $htmlItems ] ); return $menu->getTemplateData(); } /** * @inheritDoc */ public function getTemplateData(): array { $localizer = $this->localizer; $data = []; if ( $this->isRegistered ) { $data = [ 'data-user-page' => $this->getUserPage(), 'data-user-edit' => $this->getUserEditCount() ]; if ( $this->isTemp ) { $data['text'] = $localizer->msg( 'citizen-user-info-text-temp' ); } else { $data['data-user-groups'] = $this->getUserGroups(); } } else { $data = [ 'title' => $localizer->msg( 'notloggedin' ), 'text' => $localizer->msg( 'citizen-user-info-text-anon' ) ]; } return $data; } }