/**
	 * Generates the subheading with links
	 * @param $userObj User object for the target
	 * @return String: appropriately-escaped HTML to be output literally
	 * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
	 */
	function getSubTitle( $userObj ) {
		if ( $userObj->isAnon() ) {
			$user = htmlspecialchars( $userObj->getName() );
		} else {
			$user = Linker::link( $userObj->getUserPage(), htmlspecialchars( $userObj->getName() ) );
		}
		$links = '';
		$nt = $userObj->getUserPage();
		$id = $userObj->getID();
		$talk = $nt->getTalkPage();
		if ( $talk ) {
			# Talk page link
			$tools[] = Linker::link( $talk, $this->msg( 'sp-contributions-talk' )->escaped() );
			if ( ( $id !== null ) || ( $id === null && IP::isIPAddress( $nt->getText() ) ) ) {
				# Block / Change block / Unblock links
				if ( $this->getUser()->isAllowed( 'block' ) ) {
					if ( $userObj->isBlocked() ) {
						$tools[] = Linker::linkKnown( # Change block link
							SpecialPage::getTitleFor( 'Block', $nt->getDBkey() ),
							$this->msg( 'change-blocklink' )->escaped()
						);
						$tools[] = Linker::linkKnown( # Unblock link
							SpecialPage::getTitleFor( 'BlockList' ),
							$this->msg( 'unblocklink' )->escaped(),
							array(),
							array(
								'action' => 'unblock',
								'ip' => $nt->getDBkey()
							)
						);
					} else {
						# User is not blocked
						$tools[] = Linker::linkKnown( # Block link
							SpecialPage::getTitleFor( 'Block', $nt->getDBkey() ),
							$this->msg( 'blocklink' )->escaped()
						);
					}
				}
				# Block log link
				$tools[] = Linker::linkKnown(
					SpecialPage::getTitleFor( 'Log' ),
					$this->msg( 'sp-contributions-blocklog' )->escaped(),
					array(),
					array(
						'type' => 'block',
						'page' => $nt->getPrefixedText()
					)
				);
			}

			# Uploads
			$tools[] = Linker::linkKnown(
				SpecialPage::getTitleFor( 'Listfiles', $userObj->getName() ),
				$this->msg( 'sp-contributions-uploads' )->escaped()
			);

			# Other logs link
			$tools[] = Linker::linkKnown(
				SpecialPage::getTitleFor( 'Log' ),
				$this->msg( 'sp-contributions-logs' )->escaped(),
				array(),
				array( 'user' => $nt->getText() )
			);
			# Link to contributions
			$tools[] = Linker::linkKnown(
				SpecialPage::getTitleFor( 'Contributions', $nt->getDBkey() ),
				$this->msg( 'sp-deletedcontributions-contribs' )->escaped()
			);

			# Add a link to change user rights for privileged users
			$userrightsPage = new UserrightsPage();
			$userrightsPage->setContext( $this->getContext() );
			if ( $userrightsPage->userCanChangeRights( $userObj ) ) {
				$tools[] = Linker::linkKnown(
					SpecialPage::getTitleFor( 'Userrights', $nt->getDBkey() ),
					$this->msg( 'sp-contributions-userrights' )->escaped()
				);
			}

			wfRunHooks( 'ContributionsToolLinks', array( $id, $nt, &$tools ) );

			$links = $this->getLanguage()->pipeList( $tools );

			// Show a note if the user is blocked and display the last block log entry.
			if ( $userObj->isBlocked() ) {
				// LogEventsList::showLogExtract() wants the first parameter by ref
				$out = $this->getOutput();
				LogEventsList::showLogExtract(
					$out,
					'block',
					$nt,
					'',
					array(
						'lim' => 1,
						'showIfEmpty' => false,
						'msgKey' => array(
							'sp-contributions-blocked-notice',
							$nt->getText() # Support GENDER in 'sp-contributions-blocked-notice'
						),
						'offset' => '' # don't use $this->getRequest() parameter offset
					)
				);
			}
		}

		return $this->msg( 'contribsub2' )->rawParams( $user, $links )->params( $userObj->getName() );
	}
Пример #2
0
 /**
  * Links to different places.
  * @param $userpage Title: Target user page
  * @param $talkpage Title: Talk page
  * @param $target User: Target user object
  * @return array
  */
 public function getUserLinks(Title $userpage, Title $talkpage, User $target)
 {
     $id = $target->getId();
     $username = $target->getName();
     $tools[] = Linker::link($talkpage, $this->msg('sp-contributions-talk')->escaped());
     if ($id !== null || $id === null && IP::isIPAddress($username)) {
         if ($this->getUser()->isAllowed('block')) {
             # Block / Change block / Unblock links
             if ($target->isBlocked()) {
                 $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $username), $this->msg('change-blocklink')->escaped());
                 $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Unblock', $username), $this->msg('unblocklink')->escaped());
             } else {
                 # User is not blocked
                 $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $username), $this->msg('blocklink')->escaped());
             }
         }
         # Block log link
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log', 'block'), $this->msg('sp-contributions-blocklog')->escaped(), array(), array('page' => $userpage->getPrefixedText()));
     }
     # Uploads
     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Listfiles', $username), $this->msg('sp-contributions-uploads')->escaped());
     # Other logs link
     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log', $username), $this->msg('sp-contributions-logs')->escaped());
     # Add link to deleted user contributions for priviledged users
     if ($this->getUser()->isAllowed('deletedhistory')) {
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('DeletedContributions', $username), $this->msg('sp-contributions-deleted')->escaped());
     }
     # Add a link to change user rights for privileged users
     $userrightsPage = new UserrightsPage();
     $userrightsPage->setContext($this->getContext());
     if ($userrightsPage->userCanChangeRights($target)) {
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Userrights', $username), $this->msg('sp-contributions-userrights')->escaped());
     }
     wfRunHooks('ContributionsToolLinks', array($id, $userpage, &$tools));
     return $tools;
 }
Пример #3
0
 /**
  * Generates the subheading with links
  * @param Title $nt @see Title object for the target
  * @param integer $id User ID for the target
  * @return String: appropriately-escaped HTML to be output literally
  * @todo Fixme: almost the same as getSubTitle in SpecialDeletedContributions.php. Could be combined.
  */
 protected function contributionsSub($nt, $id)
 {
     global $wgSysopUserBans, $wgLang, $wgUser, $wgOut;
     $sk = $wgUser->getSkin();
     if ($id === null) {
         $user = htmlspecialchars($nt->getText());
     } else {
         $user = $sk->link($nt, htmlspecialchars($nt->getText()));
     }
     $userObj = User::newFromName($nt->getText(), false);
     $talk = $nt->getTalkPage();
     if ($talk) {
         # Talk page link
         $tools[] = $sk->link($talk, wfMsgHtml('sp-contributions-talk'));
         if ($id !== null && $wgSysopUserBans || $id === null && IP::isIPAddress($nt->getText())) {
             if ($wgUser->isAllowed('block')) {
                 # Block / Change block / Unblock links
                 if ($userObj->isBlocked()) {
                     $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('Blockip', $nt->getDBkey()), wfMsgHtml('change-blocklink'));
                     $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('BlockList'), wfMsgHtml('unblocklink'), array(), array('action' => 'unblock', 'ip' => $nt->getDBkey()));
                 } else {
                     # User is not blocked
                     $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('Blockip', $nt->getDBkey()), wfMsgHtml('blocklink'));
                 }
             }
             # Block log link
             $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('Log'), wfMsgHtml('sp-contributions-blocklog'), array(), array('type' => 'block', 'page' => $nt->getPrefixedText()));
         }
         # Other logs link
         $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('Log'), wfMsgHtml('sp-contributions-logs'), array(), array('user' => $nt->getText()));
         # Add link to deleted user contributions for priviledged users
         if ($wgUser->isAllowed('deletedhistory')) {
             $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('DeletedContributions', $nt->getDBkey()), wfMsgHtml('sp-contributions-deleted'));
         }
         # Add a link to change user rights for privileged users
         $userrightsPage = new UserrightsPage();
         if ($id !== null && $userrightsPage->userCanChangeRights(User::newFromId($id))) {
             $tools[] = $sk->linkKnown(SpecialPage::getTitleFor('Userrights', $nt->getDBkey()), wfMsgHtml('sp-contributions-userrights'));
         }
         wfRunHooks('ContributionsToolLinks', array($id, $nt, &$tools));
         $links = $wgLang->pipeList($tools);
         // Show a note if the user is blocked and display the last block log entry.
         if ($userObj->isBlocked()) {
             LogEventsList::showLogExtract($wgOut, 'block', $nt->getPrefixedText(), '', array('lim' => 1, 'showIfEmpty' => false, 'msgKey' => array('sp-contributions-blocked-notice', $nt->getText()), 'offset' => ''));
         }
     }
     // Old message 'contribsub' had one parameter, but that doesn't work for
     // languages that want to put the "for" bit right after $user but before
     // $links.  If 'contribsub' is around, use it for reverse compatibility,
     // otherwise use 'contribsub2'.
     if (wfEmptyMsg('contribsub', wfMsg('contribsub'))) {
         return wfMsgHtml('contribsub2', $user, $links);
     } else {
         return wfMsgHtml('contribsub', "{$user} ({$links})");
     }
 }
Пример #4
0
 /**
  * Links to different places.
  *
  * @note This function is also called in DeletedContributionsPage
  * @param SpecialPage $sp SpecialPage instance, for context
  * @param User $target Target user object
  * @return array
  */
 public static function getUserLinks(SpecialPage $sp, User $target)
 {
     $id = $target->getId();
     $username = $target->getName();
     $userpage = $target->getUserPage();
     $talkpage = $target->getTalkPage();
     $linkRenderer = $sp->getLinkRenderer();
     $tools['user-talk'] = $linkRenderer->makeLink($talkpage, $sp->msg('sp-contributions-talk')->text());
     if ($id !== null || $id === null && IP::isIPAddress($username)) {
         if ($sp->getUser()->isAllowed('block')) {
             # Block / Change block / Unblock links
             if ($target->isBlocked() && $target->getBlock()->getType() != Block::TYPE_AUTO) {
                 $tools['block'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Block', $username), $sp->msg('change-blocklink')->text());
                 $tools['unblock'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Unblock', $username), $sp->msg('unblocklink')->text());
             } else {
                 # User is not blocked
                 $tools['block'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Block', $username), $sp->msg('blocklink')->text());
             }
         }
         # Block log link
         $tools['log-block'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Log', 'block'), $sp->msg('sp-contributions-blocklog')->text(), [], ['page' => $userpage->getPrefixedText()]);
         # Suppression log link (bug 59120)
         if ($sp->getUser()->isAllowed('suppressionlog')) {
             $tools['log-suppression'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Log', 'suppress'), $sp->msg('sp-contributions-suppresslog', $username)->text(), [], ['offender' => $username]);
         }
     }
     # Uploads
     $tools['uploads'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Listfiles', $username), $sp->msg('sp-contributions-uploads')->text());
     # Other logs link
     $tools['logs'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Log', $username), $sp->msg('sp-contributions-logs')->text());
     # Add link to deleted user contributions for priviledged users
     if ($sp->getUser()->isAllowed('deletedhistory')) {
         $tools['deletedcontribs'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('DeletedContributions', $username), $sp->msg('sp-contributions-deleted', $username)->text());
     }
     # Add a link to change user rights for privileged users
     $userrightsPage = new UserrightsPage();
     $userrightsPage->setContext($sp->getContext());
     if ($userrightsPage->userCanChangeRights($target)) {
         $tools['userrights'] = $linkRenderer->makeKnownLink(SpecialPage::getTitleFor('Userrights', $username), $sp->msg('sp-contributions-userrights')->text());
     }
     Hooks::run('ContributionsToolLinks', [$id, $userpage, &$tools, $sp]);
     return $tools;
 }
Пример #5
0
    function view()
    {
        global $wgOut, $wgUser, $wgHuijiprefix, $wgOnlineStatusBarDefaultOffline, $wgOnlineStatusBarDefaultOnline;
        $wgOut->setPageTitle($this->mTitle->getPrefixedText());
        // No need to display noarticletext, we use our own message
        if (!$this->user_id) {
            parent::view();
            return '';
        }
        $staff = '';
        $bureaucrat = '';
        $sysop = '';
        $rollback = '';
        $autoconfirmed = '';
        if (in_array('staff', $this->user->getEffectiveGroups(true))) {
            $staff = '<li>职员</li> ';
        }
        if (in_array('bot', $this->user->getEffectiveGroups(true))) {
            $staff = '<li>机器人</li> ';
        }
        if (in_array('bureaucrat', $this->user->getEffectiveGroups(true))) {
            $bureaucrat = '<li>行政员</li> ';
        }
        if (in_array('sysop', $this->user->getEffectiveGroups(true))) {
            $sysop = '<li>管理员</li> ';
        }
        if (in_array('rollback', $this->user->getEffectiveGroups(true))) {
            $rollback = '<li>回退员</li> ';
        }
        if (in_array('autoconfirmed', $this->user->getEffectiveGroups(true))) {
            $autoconfirmed = '<li>自动确认用户</li> ';
        }
        $usf = new UserSiteFollow();
        $uuf = new UserUserFollow();
        $topFollowedSites = $usf->getTopFollowedSitesWithDetails($wgUser->getId(), $this->user_id);
        // $temp = array();
        // $res = array();
        // foreach( $topFollowedSites as $value ){
        // 	// if ( $wgUser->isLoggedIn() ) {
        // 	$user = User::newFromName( $this->user_name );
        // 	// }
        // 	$temp['url'] = HuijiPrefix::prefixToUrl($value);
        // 	$temp['name'] = HuijiPrefix::prefixToSiteName($value);
        // 	$temp['count'] = UserStats::getSiteEditsCount($user,$value);
        // 	$res[] = $temp;
        // }
        //sort by edit num
        $count = array();
        foreach ($topFollowedSites as $val) {
            $count[] = $val['count'];
        }
        array_multisort($count, SORT_DESC, $topFollowedSites);
        $userCount = UserSiteFollow::getFollowingCount($this->user);
        if ($this->isOwner()) {
            $target = SpecialPage::getTitleFor('ViewFollows');
            $query = array('user' => $this->user_name, 'rel_type' => 1);
            $button1 = '<li class="mw-ui-button">' . Linker::LinkKnown($target, '<i class="fa fa-users"></i>朋友', array(), $query) . '</li> ';
        } elseif ($uuf->checkUserUserFollow($wgUser, $this->user)) {
            $button1 = '<li id="user-user-follow" class="unfollow mw-ui-button"><a><i class="fa fa-minus-square-o"></i>取关</a></li> ';
        } else {
            $button1 = '<li id="user-user-follow" class="mw-ui-button"><i class="fa fa-plus-square-o"></i></i>关注</li> ';
        }
        if ($this->isOwner()) {
            $target = SpecialPage::getTitleFor('ViewGifts');
            $query = array('user' => $this->user_name);
            $button2 = '<li class="mw-ui-button">' . Linker::LinkKnown($target, '<i class="fa fa-gift"></i>礼物</a>', array(), $query) . '</li> ';
        } else {
            $target = SpecialPage::getTitleFor('GiveGift');
            $query = array('user' => $this->user_name);
            $button2 = '<li class="mw-ui-button">' . Linker::LinkKnown($target, '<i class="fa fa-gift"></i>赠送</a>', array(), $query) . '</li> ';
        }
        $contributions = SpecialPage::getTitleFor('Contributions');
        $watchlist = SpecialPage::getTitleFor('Watchlist');
        $send_message = SpecialPage::getTitleFor('UserBoard');
        $user_safe = urlencode($this->user);
        $tools = array();
        if ($wgUser->isLoggedIn()) {
            if (!$this->isOwner()) {
                $tools[] = '<li><a href="' . htmlspecialchars($send_message->getFullURL('user='******'&conv=' . $user_safe)) . '" rel="nofollow">' . wfMessage('user-send-message')->escaped() . '</a></li>';
                if ($wgUser->isAllowed('block')) {
                    # Block / Change block / Unblock links
                    if ($this->user->isBlocked() && $this->user->getBlock()->getType() != Block::TYPE_AUTO) {
                        $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Block', $this->user_name), wfMessage('change-blocklink')->escaped()) . '</li>';
                        $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Unblock', $this->user_name), wfMessage('unblocklink')->escaped()) . '</li>';
                    } else {
                        $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Block', $this->user_name), wfMessage('blocklink')->escaped()) . '</li>';
                    }
                }
                # Block log link
                $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Log', 'block'), wfMessage('sp-contributions-blocklog'), array(), array('page' => $this->mTitle->getPrefixedText())) . '</li>';
                # Suppression log link
                if ($wgUser->isAllowed('suppressionlog')) {
                    $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Log', 'suppress'), wfMessage('sp-contributions-suppresslog')->escaped(), array(), array('offender' => $this->user_name)) . '</li>';
                }
            }
            # Uploads
            $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Listfiles', $this->user_name), wfMessage('sp-contributions-uploads')->escaped()) . '</li>';
            # Other logs link
            $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Log', $this->user_name), wfMessage('sp-contributions-logs')->escaped()) . '</li>';
            # Add link to deleted user contributions for priviledged users
            if ($wgUser->isAllowed('deletedhistory')) {
                $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('DeletedContributions', $this->user_name), wfMessage('sp-contributions-deleted')->escaped()) . '</li>';
            }
            # Add a link to change user rights for privileged users
            $userrightsPage = new UserrightsPage();
            $userrightsPage->setContext($this->getContext());
            if ($userrightsPage->userCanChangeRights($this->user)) {
                $tools[] = '<li>' . Linker::linkKnown(SpecialPage::getTitleFor('Userrights', $this->user_name), wfMessage('sp-contributions-userrights')->escaped()) . '</li>';
            }
            if ($this->isOwner()) {
                $tools[] = '<li><a href="' . htmlspecialchars($watchlist->getFullURL()) . '">' . wfMessage('user-watchlist')->escaped() . '</a></li>';
            }
        }
        //user isonline
        // $_SESSION['username'] = $wgUser->getName();
        // $user = User::newFromName( $this->user_name );
        // $isonline = OnlineStatusBar_StatusCheck::getStatus( $user );
        // if($isonline === 'online'){
        // 	$online = '在线';
        // }else{
        // 	$online = '未知';
        // }
        // $wgOut->addModuleScripts( 'ext.socialprofile.useruserfollows.js' ); #this script is already added globally
        // $wgOut->addHTML($wgAjaxExportList); # What is that for??
        $wgOut->addHTML('<div class="profile-page"><div id="profile-top" class="jumbotron row">');
        $wgOut->addHTML($this->getProfileTop($this->user_id, $this->user_name));
        $wgOut->addHTML('
            
            <div class="col-md-6 col-sm-12 col-xs-12 profile-top-right">
                <div class="profile-top-right-top">
                    <div><h4><span class="icon-huiji"></span>在本wiki</h4></div>
                    <ul>' . $staff . $bureaucrat . $sysop . $rollback . $autoconfirmed . '</ul>
                </div>
                <div class="profile-top-right-bottom">
                    <ul>');
        foreach ($topFollowedSites as $value) {
            $Turl[] = HuijiPrefix::prefixToUrl($value['key']);
            $Tname[] = $value['val'];
            $Tcount[] = $value['count'];
        }
        if (isset($Tname)) {
            $num = count($Tname) > 3 ? 3 : count($Tname);
            for ($i = 0; $i < $num; $i++) {
                $wgOut->addHTML('<li><a href="' . $Turl[$i] . '">' . $Tname[$i] . '</a></li>');
            }
        }
        $wgOut->addHTML(' </ul>

        ');
        if ($this->isOwner()) {
            $wgOut->addHTML('<a >查看我关注的<i id="site-following-count">' . $userCount . '</i>个wiki</a>');
        } else {
            $wgOut->addHTML('<a >关注了<i>' . $userCount . '</i>个wiki</a>');
        }
        $wgOut->addHTML('
                    <div>
                        <ul class="profile-interactive">' . $button1 . $button2 . '<li class="dropdown-toggle mw-ui-button" data-toggle="dropdown" aria-expanded="false"><span class="glyphicon glyphicon-align-justify"></span></li>
                            <ul class="dropdown-menu" role="menu">
                                        ' . implode('', $tools) . ' 
                                        <li><a href="' . htmlspecialchars($contributions->getFullURL('target=' . $user_safe . '&contribs=user')) . '" rel="nofollow">' . wfMessage('user-contributions')->escaped() . '</a></li>
                            </ul>
                        </ul>
                    </div>
                </div>
            </div>
        ');
        $wgOut->addHTML('<div class="cleared"></div></div>');
        // // User does not want social profile for User:user_name, so we just
        // // show header + page content
        // if (
        // 	$this->getTitle()->getNamespace() == NS_USER &&
        // 	$this->profile_data['user_id'] &&
        // 	$this->profile_data['user_page_type'] == 0
        // )
        // {
        // 	parent::view();
        // 	return '';
        // }
        $ueb = new UserEditBox();
        $editBox = $editData = array();
        $userEditInfo = $ueb->getUserEditInfo($this->user_id);
        $maxlen = $currentMaxlen = 0;
        //init variables.
        if ($userEditInfo != false) {
            $wgOut->addHTML('<div id="user-page-center" class="col-md-12 hidden-xs">
        	<div class="panel panel-default"><div class="user-section-heading panel-heading">
 			<div class="user-section-title">贡献</div>
 			<div class="action-right"></div>
			<div class="cleared"></div></div><div class="user-gift-container panel-body check-body">');
            foreach ($userEditInfo as $value) {
                if (is_object($value) && !empty($value->_id) && $value->value > 0) {
                    $editBox[$value->_id] = $value->value;
                    $editData[] = $value->_id;
                    //echo $value->_id.'->'.$value->value.'<br>';
                }
            }
            $today = date("Y-m-d");
            $yesterday = date("Y-m-d", strtotime("-1 day"));
            $editBox[$today] = UserEditBox::getTodayEdit($this->user_id);
            if (!empty($editBox[$today])) {
                $editData[] = $today;
            }
            $totalEdit = count($editData);
            if ($totalEdit > 0) {
                $resArr[] = strtotime($editData[0]);
                $maxlen = 1;
            }
            for ($k = 1; $k < count($editData); $k++) {
                if (in_array(strtotime($editData[$k]) - 86400, $resArr)) {
                    $resArr[] = strtotime($editData[$k]);
                    if (count($resArr) > $maxlen) {
                        $maxlen = count($resArr);
                    }
                } else {
                    $resArr = array();
                    $resArr[] = strtotime($editData[$k]);
                }
                if ($resArr[count($resArr) - 1] == strtotime($today) || $resArr[count($resArr) - 1] == strtotime($yesterday)) {
                    $currentMaxlen = count($resArr);
                } else {
                    $currentMaxlen = 0;
                }
            }
            $usg = new UserSystemGifts($this->user->getName());
            if ($maxlen == 2) {
                $usg->sendSystemGift(33);
            } elseif ($maxlen == 3) {
                $usg->sendSystemGift(34);
            } elseif ($maxlen == 7) {
                $usg->sendSystemGift(35);
            } elseif ($maxlen == 13) {
                $usg->sendSystemGift(36);
            } elseif ($maxlen == 23) {
                $usg->sendSystemGift(37);
            } elseif ($maxlen == 61) {
                $usg->sendSystemGift(38);
            } elseif ($maxlen == 109) {
                $usg->sendSystemGift(39);
            } elseif ($maxlen == 199) {
                $usg->sendSystemGift(40);
            } elseif ($maxlen == 367) {
                $usg->sendSystemGift(41);
            } elseif ($maxlen == 727) {
                $usg->sendSystemGift(42);
            } elseif ($maxlen == 1213) {
                $usg->sendSystemGift(43);
            } elseif ($maxlen == 1579) {
                $usg->sendSystemGift(44);
            } elseif ($maxlen == 1949) {
                $usg->sendSystemGift(45);
            } elseif ($maxlen == 2333) {
                $usg->sendSystemGift(46);
            }
            $wgOut->addHTML('
	            <div class="check-wrapper"><svg width="725" height="110" class=" ">
	                <g transform="translate(20, 20)">
	        ');
            $n = 676 / 13;
            $dateArr = array();
            for ($k = 0; $k < 365; $k++) {
                $dateArr[] = date('Y-m-d', strtotime("-{$k} day"));
            }
            $desdateArr = array_reverse($dateArr);
            $translate = array();
            for ($i = 0; $i <= $n; $i++) {
                $trani = $i * 13;
                $wgOut->addHTML('
	                <g transform="translate(' . $trani . ', 0)">');
                $dayofweek = date('w', strtotime($desdateArr[0]));
                if ($i == 0) {
                    $j = $dayofweek;
                    $start = 0;
                    $m = 7 - $dayofweek;
                } else {
                    $j = 0;
                    $m = 7;
                    $start = $i * 7 - $dayofweek;
                }
                $zoneDate = array_slice($desdateArr, $start, $m);
                foreach ($zoneDate as $val) {
                    $arrDate[$j] = $val;
                    $y = $j * 13;
                    $dataCount = isset($editBox[$val]) ? $editBox[$val] : 0;
                    if ($dataCount == 0) {
                        $color = '#eee';
                    } elseif ($dataCount > 0 && $dataCount <= 8) {
                        $color = '#86beee';
                    } elseif ($dataCount > 8 && $dataCount <= 21) {
                        $color = '#5ea2de';
                    } elseif ($dataCount > 21 && $dataCount <= 55) {
                        $color = '#256fb1';
                    } else {
                        $color = '#0d5493';
                    }
                    $wgOut->addHTML('<rect class="day" width="11" height="11" y="' . $y . '" fill="' . $color . '" data-count="' . $dataCount . '" data-date="' . $val . '" title="' . $val . ' 编辑' . $dataCount . '次"></rect>');
                    $j = $j >= 7 ? 0 : $j + 1;
                }
                if (!empty($arrDate[0])) {
                    $translate[$arrDate[0]] = $trani;
                }
                $wgOut->addHTML('</g>');
            }
            $moninit = 1;
            for ($p = 0; $p < 12; $p++) {
                $year = date('Y') - 1;
                $mon = date('m') + $p + 1;
                if ($mon > 12) {
                    $mon = $moninit++;
                    $year = date('Y');
                }
                $sunDay = UserEditBox::getSunday($mon, $year);
                $Stime = strtotime($sunDay);
                $sunDay = date('Y-m-d', $Stime);
                if (!isset($translate[$sunDay])) {
                    $Suntime = strtotime($sunDay);
                    $Sundate = date('Y', $Suntime) - 1;
                    $sunDay = UserEditBox::getSunday($mon, $Sundate);
                }
                foreach ($translate as $key => $value) {
                    if (strtotime($key) == strtotime($sunDay)) {
                        $x = $value;
                    }
                }
                $wgOut->addHTML('<text x="' . $x . '" y="-5" class="' . $year . '">' . $mon . '月</text>');
            }
            $wgOut->addHTML('
						<text text-anchor="middle" class="wday" dx="-10" dy="9" style="display: none;">S</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="22">M</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="35" style="display: none;">T</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="48">W</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="61" style="display: none;">T</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="74">F</text>
			            <text text-anchor="middle" class="wday" dx="-10" dy="87" style="display: none;">S</text>
			          </g>
			        </svg>
			        <div class="legend-intro">
			        <span><b>编辑数</b> 低</span>
			        <ul class="legend">
			            <li style="background-color: #eee"></li>
			            <li style="background-color: #86beee"></li>
			            <li style="background-color: #5ea2de"></li>
			            <li style="background-color: #256fb1"></li>
			            <li style="background-color: #0d5493"></li>
		            </ul>
		            <span>高</span>
		            </div>
		            <div class="edit-statistics"><p>连续编辑纪录<span>' . $maxlen . '</span></p><p>总编辑天数<span>' . $totalEdit . '</span></p><p>当前连续编辑<span>' . $currentMaxlen . '<span></p></div>
	        	</div>');
            $wgOut->addHTML('</div></div></div>');
        }
        // Left side
        $wgOut->addHTML('<div id="user-page-left" class="col-md-6">');
        if (!wfRunHooks('UserProfileBeginLeft', array(&$this))) {
            wfDebug(__METHOD__ . ": UserProfileBeginLeft messed up profile!\n");
        }
        if ($this->user_id != $wgUser->getId()) {
            $wgOut->addHTML($this->getCommonInterest($wgUser->getId(), $this->user_id));
        }
        $wgOut->addHTML($this->getRelationships($this->user_name, 1));
        $wgOut->addHTML($this->getRelationships($this->user_name, 2));
        $wgOut->addHTML($this->getGifts($this->user_name));
        $wgOut->addHTML($this->getCustomInfo($this->user_name));
        $wgOut->addHTML($this->getInterests($this->user_name));
        $wgOut->addHTML($this->getFanBoxes($this->user_name));
        $wgOut->addHTML($this->getUserStats($this->user_id, $this->user_name));
        $wgOut->addHTML($this->getEditingActivity($this->user_name));
        $wgOut->addHTML($this->getNonEditingActivity($this->user_name));
        if (!wfRunHooks('UserProfileEndLeft', array(&$this))) {
            wfDebug(__METHOD__ . ": UserProfileEndLeft messed up profile!\n");
        }
        $wgOut->addHTML('</div>');
        wfDebug("profile start right\n");
        // Right side
        $wgOut->addHTML('<div id="user-page-right" class="col-md-6">');
        if (!wfRunHooks('UserProfileBeginRight', array(&$this))) {
            wfDebug(__METHOD__ . ": UserProfileBeginRight messed up profile!\n");
        }
        $wgOut->addHTML($this->getAwards($this->user_name));
        $wgOut->addHTML($this->getPersonalInfo($this->user_id, $this->user_name));
        // Hook for BlogPage
        if (!wfRunHooks('UserProfileRightSideAfterActivity', array($this))) {
            wfDebug(__METHOD__ . ": UserProfileRightSideAfterActivity hook messed up profile!\n");
        }
        $wgOut->addHTML($this->getCasualGames($this->user_id, $this->user_name));
        $wgOut->addHTML($this->getUserBoard($this->user_id, $this->user_name));
        if (!wfRunHooks('UserProfileEndRight', array(&$this))) {
            wfDebug(__METHOD__ . ": UserProfileEndRight messed up profile!\n");
        }
        $wgOut->addHTML('</div><div class="cleared"></div></div>');
    }
 /**
  * Generates the subheading with links
  * @param User $userObj User object for the target
  * @return string Appropriately-escaped HTML to be output literally
  * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
  */
 function getSubTitle($userObj)
 {
     if ($userObj->isAnon()) {
         $user = htmlspecialchars($userObj->getName());
     } else {
         $user = Linker::link($userObj->getUserPage(), htmlspecialchars($userObj->getName()));
     }
     $links = '';
     $nt = $userObj->getUserPage();
     $id = $userObj->getID();
     $talk = $nt->getTalkPage();
     if ($talk) {
         # Talk page link
         $tools[] = Linker::link($talk, $this->msg('sp-contributions-talk')->escaped());
         if ($id !== null || $id === null && IP::isIPAddress($nt->getText())) {
             # Block / Change block / Unblock links
             if ($this->getUser()->isAllowed('block')) {
                 if ($userObj->isBlocked()) {
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $nt->getDBkey()), $this->msg('change-blocklink')->escaped());
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('BlockList'), $this->msg('unblocklink')->escaped(), array(), array('action' => 'unblock', 'ip' => $nt->getDBkey()));
                 } else {
                     # User is not blocked
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $nt->getDBkey()), $this->msg('blocklink')->escaped());
                 }
             }
             # Block log link
             $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log'), $this->msg('sp-contributions-blocklog')->escaped(), array(), array('type' => 'block', 'page' => $nt->getPrefixedText()));
             # Suppression log link (bug 59120)
             if ($this->getUser()->isAllowed('suppressionlog')) {
                 $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log', 'suppress'), $this->msg('sp-contributions-suppresslog')->escaped(), array(), array('offender' => $userObj->getName()));
             }
         }
         # Uploads
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Listfiles', $userObj->getName()), $this->msg('sp-contributions-uploads')->escaped());
         # Other logs link
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log'), $this->msg('sp-contributions-logs')->escaped(), array(), array('user' => $nt->getText()));
         # Link to contributions
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Contributions', $nt->getDBkey()), $this->msg('sp-deletedcontributions-contribs')->escaped());
         # Add a link to change user rights for privileged users
         $userrightsPage = new UserrightsPage();
         $userrightsPage->setContext($this->getContext());
         if ($userrightsPage->userCanChangeRights($userObj)) {
             $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Userrights', $nt->getDBkey()), $this->msg('sp-contributions-userrights')->escaped());
         }
         Hooks::run('ContributionsToolLinks', array($id, $nt, &$tools));
         $links = $this->getLanguage()->pipeList($tools);
         // Show a note if the user is blocked and display the last block log entry.
         $block = Block::newFromTarget($userObj, $userObj);
         if (!is_null($block) && $block->getType() != Block::TYPE_AUTO) {
             if ($block->getType() == Block::TYPE_RANGE) {
                 $nt = MWNamespace::getCanonicalName(NS_USER) . ':' . $block->getTarget();
             }
             // LogEventsList::showLogExtract() wants the first parameter by ref
             $out = $this->getOutput();
             LogEventsList::showLogExtract($out, 'block', $nt, '', array('lim' => 1, 'showIfEmpty' => false, 'msgKey' => array('sp-contributions-blocked-notice', $userObj->getName()), 'offset' => ''));
         }
     }
     return $this->msg('contribsub2')->rawParams($user, $links)->params($userObj->getName());
 }
Пример #7
0
 /**
  * Generates the subheading with links
  * @param Title $nt Title object for the target
  * @param integer $id User ID for the target
  * @return String: appropriately-escaped HTML to be output literally
  */
 protected function contributionsSub($nt, $id)
 {
     global $wgSysopUserBans, $wgLang, $wgUser;
     $sk = $wgUser->getSkin();
     if (0 == $id) {
         $user = $nt->getText();
     } else {
         $user = $sk->makeLinkObj($nt, htmlspecialchars($nt->getText()));
     }
     $talk = $nt->getTalkPage();
     if ($talk) {
         # Talk page link
         $tools[] = $sk->makeLinkObj($talk, wfMsgHtml('talkpagelinktext'));
         if ($id != 0 && $wgSysopUserBans || $id == 0 && IP::isIPAddress($nt->getText())) {
             # Block link
             if ($wgUser->isAllowed('block')) {
                 $tools[] = $sk->makeKnownLinkObj(SpecialPage::getTitleFor('Blockip', $nt->getDBkey()), wfMsgHtml('blocklink'));
             }
             # Block log link
             $tools[] = $sk->makeKnownLinkObj(SpecialPage::getTitleFor('Log'), wfMsgHtml('sp-contributions-blocklog'), 'type=block&page=' . $nt->getPrefixedUrl());
         }
         # Other logs link
         $tools[] = $sk->makeKnownLinkObj(SpecialPage::getTitleFor('Log'), wfMsg('sp-contributions-logs'), 'user='******'deletedhistory')) {
             $tools[] = $sk->makeKnownLinkObj(SpecialPage::getTitleFor('DeletedContributions', $nt->getDBkey()), wfMsgHtml('deletedcontributions'));
         }
         # Add a link to change user rights for privileged users
         $userrightsPage = new UserrightsPage();
         if (0 !== $id && $userrightsPage->userCanChangeRights(User::newFromId($id))) {
             $tools[] = $sk->makeKnownLinkObj(SpecialPage::getTitleFor('Userrights', $nt->getDBkey()), wfMsgHtml('userrights'));
         }
         wfRunHooks('ContributionsToolLinks', array($id, $nt, &$tools));
         $links = $wgLang->pipeList($tools);
     }
     // Old message 'contribsub' had one parameter, but that doesn't work for
     // languages that want to put the "for" bit right after $user but before
     // $links.  If 'contribsub' is around, use it for reverse compatibility,
     // otherwise use 'contribsub2'.
     if (wfEmptyMsg('contribsub', wfMsg('contribsub'))) {
         return wfMsgHtml('contribsub2', $user, $links);
     } else {
         return wfMsgHtml('contribsub', "{$user} ({$links})");
     }
 }
 /**
  * Generates the subheading with links
  * @param $userObj User object for the target
  * @return String: appropriately-escaped HTML to be output literally
  * @todo FIXME: Almost the same as contributionsSub in SpecialContributions.php. Could be combined.
  */
 function getSubTitle($userObj)
 {
     if ($userObj->isAnon()) {
         $user = htmlspecialchars($userObj->getName());
     } else {
         $user = Linker::link($userObj->getUserPage(), htmlspecialchars($userObj->getName()));
     }
     $links = '';
     $nt = $userObj->getUserPage();
     $id = $userObj->getID();
     $talk = $nt->getTalkPage();
     if ($talk) {
         # Talk page link
         $tools[] = Linker::link($talk, $this->msg('sp-contributions-talk')->escaped());
         if ($id !== null || $id === null && IP::isIPAddress($nt->getText())) {
             if ($this->getUser()->isAllowed('block')) {
                 # Block / Change block / Unblock links
                 if ($userObj->isBlocked()) {
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $nt->getDBkey()), $this->msg('change-blocklink')->escaped());
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('BlockList'), $this->msg('unblocklink')->escaped(), array(), array('action' => 'unblock', 'ip' => $nt->getDBkey()));
                 } else {
                     # User is not blocked
                     $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Block', $nt->getDBkey()), $this->msg('blocklink')->escaped());
                 }
             }
             # Block log link
             $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log'), $this->msg('sp-contributions-blocklog')->escaped(), array(), array('type' => 'block', 'page' => $nt->getPrefixedText()));
         }
         # Uploads
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Listfiles', $userObj->getName()), $this->msg('sp-contributions-uploads')->escaped());
         # Other logs link
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Log'), $this->msg('sp-contributions-logs')->escaped(), array(), array('user' => $nt->getText()));
         # Link to contributions
         $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Contributions', $nt->getDBkey()), $this->msg('sp-deletedcontributions-contribs')->escaped());
         # Add a link to change user rights for privileged users
         $userrightsPage = new UserrightsPage();
         $userrightsPage->setContext($this->getContext());
         if ($userrightsPage->userCanChangeRights($userObj)) {
             $tools[] = Linker::linkKnown(SpecialPage::getTitleFor('Userrights', $nt->getDBkey()), $this->msg('sp-contributions-userrights')->escaped());
         }
         wfRunHooks('ContributionsToolLinks', array($id, $nt, &$tools));
         $links = $this->getLanguage()->pipeList($tools);
         // Show a note if the user is blocked and display the last block log entry.
         if ($userObj->isBlocked()) {
             $out = $this->getOutput();
             // LogEventsList::showLogExtract() wants the first parameter by ref
             LogEventsList::showLogExtract($out, 'block', $nt, '', array('lim' => 1, 'showIfEmpty' => false, 'msgKey' => array('sp-contributions-blocked-notice', $nt->getText()), 'offset' => ''));
         }
     }
     // Old message 'contribsub' had one parameter, but that doesn't work for
     // languages that want to put the "for" bit right after $user but before
     // $links.  If 'contribsub' is around, use it for reverse compatibility,
     // otherwise use 'contribsub2'.
     $oldMsg = $this->msg('contribsub');
     if ($oldMsg->exists()) {
         return $oldMsg->rawParams("{$user} ({$links})");
     } else {
         return $this->msg('contribsub2')->rawParams($user, $links);
     }
 }
 /**
  * Enhanced user tool links, with javascript functionality.
  */
 public function userToolLinks($userId, $userText)
 {
     global $wgUser, $wgDisableAnonTalk;
     $talkable = !($wgDisableAnonTalk && 0 == $userId);
     /*
      * Assign each different user a running id. This is used to show user tool
      * links on demand with javascript, to reduce page size when one user has
      * multiple changes.
      *
      * $linkindex is the running id, and $users contain username -> html snippet
      * for javascript.
      */
     static $linkindex = 0;
     $linkindex++;
     static $users = array();
     $userindex = array_search($userText, $users, true);
     if ($userindex === false) {
         $users[] = $userText;
         $userindex = count($users) - 1;
     }
     global $wgStylePath;
     $image = Xml::element('img', array('src' => $wgStylePath . '/common/images/magnify-clip.png', 'alt' => wfMsg('cleanchanges-showuserlinks'), 'title' => wfMsg('cleanchanges-showuserlinks'), 'height' => '12'));
     $rci = 'RCUI' . $userindex;
     $rcl = 'RCUL' . $linkindex;
     $rcm = 'RCUM' . $linkindex;
     $toggleLink = "javascript:showUserInfo('wgUserInfo{$rci}', '{$rcl}' )";
     $tl = Xml::tags('span', array('id' => $rcm), Xml::tags('a', array('href' => $toggleLink), $image));
     $tl .= Xml::element('span', array('id' => $rcl), ' ');
     $items = array();
     if ($talkable) {
         $items[] = $this->skin->userTalkLink($userId, $userText);
     }
     if ($userId) {
         $targetPage = SpecialPage::getTitleFor('Contributions', $userText);
         $items[] = $this->skin->makeKnownLinkObj($targetPage, wfMsgHtml('contribslink'));
     }
     if ($wgUser->isAllowed('block')) {
         $items[] = $this->skin->blockLink($userId, $userText);
     }
     if ($userId) {
         $userrightsPage = new UserrightsPage();
         if ($userrightsPage->userCanChangeRights(User::newFromId($userId))) {
             $targetPage = SpecialPage::getTitleFor('Userrights', $userText);
             $items[] = $this->skin->makeKnownLinkObj($targetPage, wfMsgHtml('cleanchanges-changerightslink'));
         }
     }
     if ($items) {
         global $wgLang;
         $data = array("wgUserInfo{$rci}" => '(' . $wgLang->pipeList($items) . ')');
         return array($tl, $data);
     } else {
         return '';
     }
 }