Go to the documentation of this file.
68 parent::__construct(
'MergeHistory',
'mergehistory' );
80 $this->mAction =
$request->getVal(
'action' );
81 $this->mTarget =
$request->getVal(
'target' );
82 $this->mDest =
$request->getVal(
'dest' );
83 $this->mSubmitted =
$request->getBool(
'submitted' );
85 $this->mTargetID = intval(
$request->getVal(
'targetID' ) );
86 $this->mDestID = intval(
$request->getVal(
'destID' ) );
87 $this->mTimestamp =
$request->getVal(
'mergepoint' );
88 if ( !preg_match(
'/[0-9]{14}/', $this->mTimestamp ) ) {
89 $this->mTimestamp =
'';
91 $this->mComment =
$request->getText(
'wpComment' );
93 $this->mMerge =
$request->wasPosted()
94 && $this->
getUser()->matchEditToken(
$request->getVal(
'wpEditToken' ) );
97 if ( $this->mSubmitted ) {
101 $this->mTargetObj =
null;
102 $this->mDestObj =
null;
117 if ( $this->mTargetID && $this->mDestID && $this->mAction ==
'submit' && $this->mMerge ) {
123 if ( !$this->mSubmitted ) {
130 if ( !$this->mTargetObj instanceof
Title ) {
131 $errors[] = $this->
msg(
'mergehistory-invalid-source' )->parseAsBlock();
132 } elseif ( !$this->mTargetObj->exists() ) {
133 $errors[] = $this->
msg(
'mergehistory-no-source',
138 if ( !$this->mDestObj instanceof
Title ) {
139 $errors[] = $this->
msg(
'mergehistory-invalid-destination' )->parseAsBlock();
140 } elseif ( !$this->mDestObj->exists() ) {
141 $errors[] = $this->
msg(
'mergehistory-no-destination',
146 if ( $this->mTargetObj && $this->mDestObj && $this->mTargetObj->equals( $this->mDestObj ) ) {
147 $errors[] = $this->
msg(
'mergehistory-same-destination' )->parseAsBlock();
150 if (
count( $errors ) ) {
152 $this->
getOutput()->addHTML( implode(
"\n", $errors ) );
160 $out->addWikiMsg(
'mergehistory-header' );
168 $this->
msg(
'mergehistory-box' )->
text() ) .
174 <td>' .
Xml::label( $this->
msg(
'mergehistory-from' )->
text(),
'target' ) .
'</td>
175 <td>' .
Xml::input(
'target', 30, $this->mTarget, [
'id' =>
'target' ] ) .
'</td>
178 <td>' .
Xml::input(
'dest', 30, $this->mDest, [
'id' =>
'dest' ] ) .
'</td>
193 # List all stored revisions
195 $this, [], $this->mTargetObj, $this->mDestObj
197 $haveRevisions = $revisions && $revisions->getNumRows() > 0;
201 $action = $titleObj->getLocalURL( [
'action' =>
'submit' ] );
202 # Start the form here
211 $out->addHTML( $top );
213 if ( $haveRevisions ) {
214 # Format the user-visible controls (comment field, submission button)
215 # in a nice little table
218 $this->
msg(
'mergehistory-merge', $this->mTargetObj->getPrefixedText(),
219 $this->mDestObj->getPrefixedText() )->parse() .
222 <td class="mw-label">' .
225 <td class="mw-input">' .
226 Xml::input(
'wpComment', 50, $this->mComment, [
'id' =>
'wpComment' ] ) .
231 <td class="mw-submit">' .
233 $this->
msg(
'mergehistory-submit' )->
text(),
234 [
'name' =>
'merge',
'id' =>
'mw-merge-submit' ]
241 $out->addHTML( $table );
245 '<h2 id="mw-mergehistory">' .
246 $this->
msg(
'mergehistory-list' )->escaped() .
"</h2>\n"
249 if ( $haveRevisions ) {
250 $out->addHTML( $revisions->getNavigationBar() );
251 $out->addHTML(
'<ul>' );
252 $out->addHTML( $revisions->getBody() );
253 $out->addHTML(
'</ul>' );
254 $out->addHTML( $revisions->getNavigationBar() );
256 $out->addWikiMsg(
'mergehistory-empty' );
259 # Show relevant lines from the merge log:
260 $mergeLogPage =
new LogPage(
'merge' );
261 $out->addHTML(
'<h2>' . $mergeLogPage->getName()->escaped() .
"</h2>\n" );
264 # When we submit, go by page ID to avoid some nasty but unlikely collisions.
265 # Such would happen if a page was renamed after the form loaded, but before submit
266 $misc =
Html::hidden(
'targetID', $this->mTargetObj->getArticleID() );
267 $misc .=
Html::hidden(
'destID', $this->mDestObj->getArticleID() );
272 $out->addHTML( $misc );
283 $last = $this->
msg(
'last' )->escaped();
286 $checkBox =
Xml::radio(
'mergepoint', $ts, ( $this->mTimestamp === $ts ) );
294 [
'oldid' =>
$rev->getId() ]
297 $pageLink =
'<span class="history-deleted">' . $pageLink .
'</span>';
302 $last = $this->
msg(
'last' )->escaped();
303 } elseif ( isset( $this->prevId[$row->rev_id] ) ) {
306 $this->
msg(
'last' )->text(),
309 'diff' => $row->rev_id,
310 'oldid' => $this->prevId[$row->rev_id]
317 $size = $row->rev_len;
318 if ( !is_null( $size ) ) {
324 $this->
msg(
'mergehistory-revisionrow' )
325 ->rawParams( $checkBox,
$last, $pageLink, $userLink, $stxt, $comment )->escaped() );
341 # Get the titles directly from the IDs, in case the target page params
342 # were spoofed. The queries are done based on the IDs, so it's best to
343 # keep it consistent...
346 if ( is_null( $targetTitle ) || is_null( $destTitle ) ) {
349 if ( $targetTitle->getArticleID() == $destTitle->getArticleID() ) {
354 $mh =
new MergeHistory( $targetTitle, $destTitle, $this->mTimestamp );
357 $mergeStatus = $mh->merge( $this->
getUser(), $this->mComment );
358 if ( !$mergeStatus->isOK() ) {
360 $this->
getOutput()->addWikiMsg( $mergeStatus->getMessage() );
370 [
'redirect' =>
'no' ]
373 $this->
getOutput()->addWikiMsg( $this->
msg(
'mergehistory-done' )
374 ->rawParams( $targetLink )
375 ->params( $destTitle->getPrefixedText() )
376 ->numParams( $mh->getMergedRevisionCount() )
getPageTitle( $subpage=false)
Get a self-referential title object.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a account $user
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
msg( $key)
Wrapper around wfMessage that sets the current context.
merge()
Actually attempt the history move.
getOutput()
Get the OutputPage being used for this instance.
static label( $label, $id, $attribs=[])
Convenience function to build an HTML form label.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add text
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static radio( $name, $value, $checked=false, $attribs=[])
Convenience function to build an HTML radio button.
checkPermissions()
Checks if userCanExecute, and if not throws a PermissionsError.
useTransactionalTimeLimit()
Call wfTransactionalTimeLimit() if this request was POSTed.
getLanguage()
Shortcut to get user's language.
static openElement( $element, $attribs=null)
This opens an XML element.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
wfScript( $script='index')
Get the path to a specified script file, respecting file extensions; this is a wrapper around $wgScri...
static revUserTools( $rev, $isPublic=false)
Generate a user tool link cluster if the current user is allowed to view it.
Class to simplify the use of log pages.
static element( $element, $attribs=null, $contents='', $allowShortTag=true)
Format an XML element with given attributes and, optionally, text content.
setHeaders()
Sets headers - this should be called from the execute() method of all derived classes!
getUser()
Shortcut to get the User executing this instance.
static showLogExtract(&$out, $types=[], $page='', $user='', $param=[])
Show log extract.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
static hidden( $name, $value, array $attribs=[])
Convenience function to produce an input element with type=hidden.
static revComment(Revision $rev, $local=false, $isPublic=false)
Wrap and format the given revision's comment block, if the current user is allowed to view it.
Parent class for all special pages.
bool $mSubmitted
Was submitted?
getRequest()
Get the WebRequest being used for this instance.
static formatRevisionSize( $size)
wfEscapeWikiText( $text)
Escapes the given text so that it may be output using addWikiText() without any linking,...
Handles the backend logic of merging the histories of two pages.
getGroupName()
Under which header this special page is listed in Special:SpecialPages See messages 'specialpages-gro...
Represents a title within MediaWiki.
static closeElement( $element)
Shortcut to close an XML element.
presenting them properly to the user as errors is done by the caller return true use this to change the list i e etc $rev
static rawElement( $element, $attribs=[], $contents='')
Returns an HTML element in a string.
static input( $name, $size=false, $value=false, $attribs=[])
Convenience function to build an HTML text input field.
checkReadOnly()
If the wiki is currently in readonly mode, throws a ReadOnlyError.
MediaWiki Linker LinkRenderer null $linkRenderer
static newFromID( $id, $flags=0)
Create a new Title from an article ID.
Special page allowing users with the appropriate permissions to merge article histories,...
outputHeader( $summaryMessageKey='')
Outputs a summary message on top of special pages Per default the message key is the canonical name o...
doesWrites()
Indicates whether this special page may perform database writes.
static submitButton( $value, $attribs=[])
Convenience function to build an HTML submit button When $wgUseMediaWikiUIEverywhere is true it will ...
execute( $par)
Default execute method Checks user permissions.
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out