setHeaders(); $this->outputHeader(); $this->opts = array(); if( $par == 'newbies' ) { $target = 'newbies'; $this->opts['contribs'] = 'newbie'; } elseif( isset( $par ) ) { $target = $par; } else { $target = $wgRequest->getVal( 'target' ); } // check for radiobox if( $wgRequest->getVal( 'contribs' ) == 'newbie' ) { $target = 'newbies'; $this->opts['contribs'] = 'newbie'; } $this->opts['deletedOnly'] = $wgRequest->getBool( 'deletedOnly' ); if( !strlen( $target ) ) { $wgOut->addHTML( $this->getForm() ); return; } $this->opts['limit'] = $wgRequest->getInt( 'limit', $wgUser->getOption('rclimit') ); $this->opts['target'] = $target; $this->opts['topOnly'] = $wgRequest->getBool( 'topOnly' ); $nt = Title::makeTitleSafe( NS_USER, $target ); if( !$nt ) { $wgOut->addHTML( $this->getForm() ); return; } $id = User::idFromName( $nt->getText() ); if( $target != 'newbies' ) { $target = $nt->getText(); $wgOut->setSubtitle( $this->contributionsSub( $nt, $id ) ); $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsgExt( 'contributions-title', array( 'parsemag' ),$target ) ) ); } else { $wgOut->setSubtitle( wfMsgHtml( 'sp-contributions-newbies-sub') ); $wgOut->setHTMLTitle( wfMsg( 'pagetitle', wfMsg( 'sp-contributions-newbies-title' ) ) ); } if( ( $ns = $wgRequest->getVal( 'namespace', null ) ) !== null && $ns !== '' ) { $this->opts['namespace'] = intval( $ns ); } else { $this->opts['namespace'] = ''; } $this->opts['tagFilter'] = (string) $wgRequest->getVal( 'tagFilter' ); // Allows reverts to have the bot flag in recent changes. It is just here to // be passed in the form at the top of the page if( $wgUser->isAllowed( 'markbotedits' ) && $wgRequest->getBool( 'bot' ) ) { $this->opts['bot'] = '1'; } $skip = $wgRequest->getText( 'offset' ) || $wgRequest->getText( 'dir' ) == 'prev'; # Offset overrides year/month selection if( $skip ) { $this->opts['year'] = ''; $this->opts['month'] = ''; } else { $this->opts['year'] = $wgRequest->getIntOrNull( 'year' ); $this->opts['month'] = $wgRequest->getIntOrNull( 'month' ); } // Add RSS/atom links $this->setSyndicated(); $feedType = $wgRequest->getVal( 'feed' ); if( $feedType ) { return $this->feed( $feedType ); } if ( wfRunHooks( 'SpecialContributionsBeforeMainOutput', array( $id ) ) ) { $wgOut->addHTML( $this->getForm() ); $pager = new ContribsPager( array( 'target' => $target, 'namespace' => $this->opts['namespace'], 'year' => $this->opts['year'], 'month' => $this->opts['month'], 'deletedOnly' => $this->opts['deletedOnly'], 'topOnly' => $this->opts['topOnly'], ) ); if( !$pager->getNumRows() ) { $wgOut->addWikiMsg( 'nocontribs', $target ); } else { # Show a message about slave lag, if applicable if( ( $lag = $pager->getDatabase()->getLag() ) > 0 ) $wgOut->showLagWarning( $lag ); $wgOut->addHTML( '
' . $pager->getNavigationBar() . '
' . $pager->getBody() . '' . $pager->getNavigationBar() . '
' ); } $wgOut->preventClickjacking( $pager->getPreventClickjacking() ); # Show the appropriate "footer" message - WHOIS tools, etc. if( $target != 'newbies' ) { $message = 'sp-contributions-footer'; if ( IP::isIPAddress( $target ) ) { $message = 'sp-contributions-footer-anon'; } else { $user = User::newFromName( $target ); if ( !$user || $user->isAnon() ) { // No message for non-existing users return; } } $text = wfMsgNoTrans( $message, $target ); if( !wfEmptyMsg( $message, $text ) && $text != '-' ) { $wgOut->wrapWikiMsg( " ", array( $message, $target ) ); } } } } protected function setSyndicated() { global $wgOut; $wgOut->setSyndicated( true ); $wgOut->setFeedAppendQuery( wfArrayToCGI( $this->opts ) ); } /** * Generates the subheading with links * @param $nt Title object for the target * @param $id Integer: 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(), /* check for username validity not needed */ 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( # Change block link SpecialPage::getTitleFor( 'Blockip', $nt->getDBkey() ), wfMsgHtml( 'change-blocklink' ) ); $tools[] = $sk->linkKnown( # Unblock link SpecialPage::getTitleFor( 'Ipblocklist' ), wfMsgHtml( 'unblocklink' ), array(), array( 'action' => 'unblock', 'ip' => $nt->getDBkey() ) ); } else { # User is not blocked $tools[] = $sk->linkKnown( # Block link 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() ) ); } # Uploads $tools[] = $sk->linkKnown( SpecialPage::getTitleFor( 'Listfiles' ), wfMsgHtml( 'sp-contributions-uploads' ), array(), array( 'user' => $nt->getText() ) ); # 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( $userObj->isAnon() ? 'sp-contributions-blocked-notice-anon' : 'sp-contributions-blocked-notice', $nt->getText() # Support GENDER in 'sp-contributions-blocked-notice' ), 'offset' => '' # don't use $wgRequest parameter 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)" ); } } /** * Generates the namespace selector form with hidden attributes. * @return String: HTML fragment */ protected function getForm() { global $wgScript; $this->opts['title'] = $this->getTitle()->getPrefixedText(); if( !isset( $this->opts['target'] ) ) { $this->opts['target'] = ''; } else { $this->opts['target'] = str_replace( '_' , ' ' , $this->opts['target'] ); } if( !isset( $this->opts['namespace'] ) ) { $this->opts['namespace'] = ''; } if( !isset( $this->opts['contribs'] ) ) { $this->opts['contribs'] = 'user'; } if( !isset( $this->opts['year'] ) ) { $this->opts['year'] = ''; } if( !isset( $this->opts['month'] ) ) { $this->opts['month'] = ''; } if( $this->opts['contribs'] == 'newbie' ) { $this->opts['target'] = ''; } if( !isset( $this->opts['tagFilter'] ) ) { $this->opts['tagFilter'] = ''; } if( !isset( $this->opts['topOnly'] ) ) { $this->opts['topOnly'] = false; } $f = Xml::openElement( 'form', array( 'method' => 'get', 'action' => $wgScript, 'class' => 'mw-contributions-form' ) ); # Add hidden params for tracking except for parameters in $skipParameters $skipParameters = array( 'namespace', 'deletedOnly', 'target', 'contribs', 'year', 'month', 'topOnly' ); foreach ( $this->opts as $name => $value ) { if( in_array( $name, $skipParameters ) ) { continue; } $f .= "\t" . Html::hidden( $name, $value ) . "\n"; } $tagFilter = ChangeTags::buildTagFilterSelector( $this->opts['tagFilter'] ); $f .= Xml::fieldset( wfMsg( 'sp-contributions-search' ) ) . Xml::radioLabel( wfMsgExt( 'sp-contributions-newbies', array( 'parsemag' ) ), 'contribs', 'newbie' , 'newbie', $this->opts['contribs'] == 'newbie' ) . '{$explain}
"; } $f .= Xml::closeElement('fieldset' ) . Xml::closeElement( 'form' ); return $f; } /** * Output a subscription feed listing recent edits to this page. * @param $type String */ protected function feed( $type ) { global $wgFeed, $wgFeedClasses, $wgFeedLimit, $wgOut; if( !$wgFeed ) { $wgOut->addWikiMsg( 'feed-unavailable' ); return; } if( !isset( $wgFeedClasses[$type] ) ) { $wgOut->addWikiMsg( 'feed-invalid' ); return; } $feed = new $wgFeedClasses[$type]( $this->feedTitle(), wfMsgExt( 'tagline', 'parsemag' ), $this->getTitle()->getFullUrl() . "/" . urlencode($this->opts['target']) ); // Already valid title $nt = Title::makeTitleSafe( NS_USER, $this->opts['target'] ); $target = $this->opts['target'] == 'newbies' ? 'newbies' : $nt->getText(); $pager = new ContribsPager( array( 'target' => $target, 'namespace' => $this->opts['namespace'], 'year' => $this->opts['year'], 'month' => $this->opts['month'], 'tagFilter' => $this->opts['tagFilter'], 'deletedOnly' => $this->opts['deletedOnly'], 'topOnly' => $this->opts['topOnly'], ) ); $pager->mLimit = min( $this->opts['limit'], $wgFeedLimit ); $feed->outHeader(); if( $pager->getNumRows() > 0 ) { foreach ( $pager->mResult as $row ) { $feed->outItem( $this->feedItem( $row ) ); } } $feed->outFooter(); } protected function feedTitle() { global $wgLanguageCode, $wgSitename; $page = SpecialPage::getPage( 'Contributions' ); $desc = $page->getDescription(); return "$wgSitename - $desc [$wgLanguageCode]"; } protected function feedItem( $row ) { $title = Title::MakeTitle( intval( $row->page_namespace ), $row->page_title ); if( $title ) { $date = $row->rev_timestamp; $comments = $title->getTalkPage()->getFullURL(); $revision = Revision::newFromTitle( $title, $row->rev_id ); return new FeedItem( $title->getPrefixedText(), $this->feedItemDesc( $revision ), $title->getFullURL(), $date, $this->feedItemAuthor( $revision ), $comments ); } else { return null; } } protected function feedItemAuthor( $revision ) { return $revision->getUserText(); } protected function feedItemDesc( $revision ) { if( $revision ) { return '' . htmlspecialchars( $revision->getUserText() ) . wfMsgForContent( 'colon-separator' ) . htmlspecialchars( FeedItem::stripComment( $revision->getComment() ) ) . "
\n