</li>
            </ul>
        </li>
        <li class="sidebar-brand left-manager">
            <a>管理员</a>
            <div>
            <?php 
$fanbox_link = SpecialPage::getTitleFor('UserList');
$group = 'sysop';
$ums = self::getSiteManager($wgHuijiPrefix, $group);
foreach ($ums as $value) {
    $uname = User::newFromId($value);
    $user_group = $uname->getEffectiveGroups();
    if (!in_array('bot', $user_group) && !in_array('bot-global', $user_group)) {
        $usersys['user_name'] = $uname->getName();
        $usersys['count'] = UserStats::getSiteEditsCount($uname, $wgHuijiPrefix);
        $userPage = Title::makeTitle(NS_USER, $uname->getName());
        $usersys['url'] = htmlspecialchars($userPage->getFullURL());
        $avatar = new wAvatar($value, 'm');
        $usersys['avatar'] = $avatar->getAvatarURL();
        $sysop[] = $usersys;
    }
}
foreach ($sysop as $key => $value) {
    $count[$key] = $value['count'];
}
array_multisort($count, SORT_DESC, $sysop);
$nums = count($ums) > 5 ? 5 : count($ums);
for ($j = 0; $j < $nums; $j++) {
    echo '<a href="' . $sysop[$j]['url'] . '"  title="' . $sysop[$j]['user_name'] . '">' . $sysop[$j]['avatar'] . '</a>';
}
    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->getTopFollowedSites($this->user);
        $temp = array();
        $res = array();
        $count = array();
        foreach ($topFollowedSites as $key => $value) {
            // if ( $wgUser->isLoggedIn() ) {
            $user = User::newFromName($this->user_name);
            // }
            $temp['url'] = 'http://' . $key . '.huiji.wiki';
            $temp['name'] = $value;
            $temp['count'] = UserStats::getSiteEditsCount($user, $key);
            $res[] = $temp;
        }
        //sort by edit num
        foreach ($res as $val) {
            $count[] = $val['count'];
        }
        array_multisort($count, SORT_DESC, $res);
        $userCount = UserSiteFollow::getUserCount($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 ($res as $value) {
            $Turl[] = $value['url'];
            $Tname[] = $value['name'];
            $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 = array();
        $userEditInfo = $ueb->getUserEditInfo($this->user_id);
        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 (!empty($value->_id)) {
                    $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);
            $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;
                }
            }
            $wgOut->addHTML('
	            <div class="check-wrapper"><svg width="721" 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>');
    }
 /**
  * get user stats
  * @param  string $prefix if $prefix is null, return this user stats of all sites, else return the prefix stats
  * @return array
  */
 public function getStats($prefix = '')
 {
     $statsObj = new UserStats($this->mUser->getId(), $this->mUser->getName());
     if ($prefix === '') {
         return $statsObj->getUserStats();
     } else {
         $result = array();
         $result['edits'] = $statsObj->getSiteEditsCount($this->mUser, $prefix);
         return $result;
     }
     // getSiteEditsCount( $user, $prefix )
 }
 /**
  * Get site followed users 
  *
  * @param $user:current username; $site_name:servername
  * @return array
  */
 public static function getSiteFollowersWithDetails($user, $site_name)
 {
     // return '';
     $dbr = wfGetDB(DB_SLAVE);
     $request = array();
     // $follower = UserUserFollow::getFollowedByUser( $user->getName() );
     $res = self::getSiteFollowers($user, $site_name);
     foreach ($res as $value) {
         $u_name = $value['user_name'];
         $temp['user'] = $u_name;
         // $temp['user'] = User::getEffectiveGroups($user);
         $userPage = Title::makeTitle(NS_USER, $u_name);
         $userPageURL = htmlspecialchars($userPage->getFullURL());
         $temp['userUrl'] = $userPageURL;
         $user_id = User::idFromName($u_name);
         $stats = new UserStats($user_id, $u_name);
         $stats_data = $stats->getUserStats();
         $user_level = new UserLevel($stats_data['points']);
         $temp['level'] = $user_level->getLevelName();
         $avatar = new wAvatar($user_id, 'm');
         $temp['url'] = $avatar->getAvatarURL();
         $tuser = User::newFromName($u_name);
         $temp['count'] = UserStats::getSiteEditsCount($tuser, $site_name);
         // if(in_array($u_name, $follower)){
         // 	$is_follow = 'Y';
         // }else{
         // 	$is_follow = 'N';
         // }
         // $temp['is_follow'] = $is_follow;
         $request[] = $temp;
     }
     foreach ($request as $key => $value) {
         $count[$key] = $value['count'];
     }
     array_multisort($count, SORT_DESC, $request);
     return $request;
 }
 /**
  * get user on this site edit count
  * @param object $user user object
  * @return string
  */
 public function getUserEditsCountOnSite($user)
 {
     return UserStats::getSiteEditsCount($user, $this->mPrefix);
 }