Merge "(bug 45130) Fix siprop=protocols in XML format"
[lhc/web/wiklou.git] / includes / api / ApiEditPage.php
1 <?php
2 /**
3 *
4 *
5 * Created on August 16, 2007
6 *
7 * Copyright © 2007 Iker Labarga "<Firstname><Lastname>@gmail.com"
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * http://www.gnu.org/copyleft/gpl.html
23 *
24 * @file
25 */
26
27 /**
28 * A module that allows for editing and creating pages.
29 *
30 * Currently, this wraps around the EditPage class in an ugly way,
31 * EditPage.php should be rewritten to provide a cleaner interface
32 * @ingroup API
33 */
34 class ApiEditPage extends ApiBase {
35
36 public function execute() {
37 $user = $this->getUser();
38 $params = $this->extractRequestParams();
39
40 if ( is_null( $params['text'] ) && is_null( $params['appendtext'] ) &&
41 is_null( $params['prependtext'] ) &&
42 $params['undo'] == 0 )
43 {
44 $this->dieUsageMsg( 'missingtext' );
45 }
46
47 $pageObj = $this->getTitleOrPageId( $params );
48 $titleObj = $pageObj->getTitle();
49 if ( $titleObj->isExternal() ) {
50 $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) );
51 }
52
53 $apiResult = $this->getResult();
54
55 if ( $params['redirect'] ) {
56 if ( $titleObj->isRedirect() ) {
57 $oldTitle = $titleObj;
58
59 $titles = Revision::newFromTitle( $oldTitle, false, Revision::READ_LATEST )
60 ->getContent( Revision::FOR_THIS_USER, $user )
61 ->getRedirectChain();
62 // array_shift( $titles );
63
64 $redirValues = array();
65 foreach ( $titles as $id => $newTitle ) {
66
67 if ( !isset( $titles[$id - 1] ) ) {
68 $titles[$id - 1] = $oldTitle;
69 }
70
71 $redirValues[] = array(
72 'from' => $titles[$id - 1]->getPrefixedText(),
73 'to' => $newTitle->getPrefixedText()
74 );
75
76 $titleObj = $newTitle;
77 }
78
79 $apiResult->setIndexedTagName( $redirValues, 'r' );
80 $apiResult->addValue( null, 'redirects', $redirValues );
81
82 // Since the page changed, update $pageObj
83 $pageObj = WikiPage::factory( $titleObj );
84 }
85 }
86
87 if ( !isset( $params['contentmodel'] ) || $params['contentmodel'] == '' ) {
88 $contentHandler = $pageObj->getContentHandler();
89 } else {
90 $contentHandler = ContentHandler::getForModelID( $params['contentmodel'] );
91 }
92
93 // @todo ask handler whether direct editing is supported at all! make allowFlatEdit() method or some such
94
95 if ( !isset( $params['contentformat'] ) || $params['contentformat'] == '' ) {
96 $params['contentformat'] = $contentHandler->getDefaultFormat();
97 }
98
99 $contentFormat = $params['contentformat'];
100
101 if ( !$contentHandler->isSupportedFormat( $contentFormat ) ) {
102 $name = $titleObj->getPrefixedDBkey();
103 $model = $contentHandler->getModelID();
104
105 $this->dieUsage( "The requested format $contentFormat is not supported for content model ".
106 " $model used by $name", 'badformat' );
107 }
108
109 if ( $params['createonly'] && $titleObj->exists() ) {
110 $this->dieUsageMsg( 'createonly-exists' );
111 }
112 if ( $params['nocreate'] && !$titleObj->exists() ) {
113 $this->dieUsageMsg( 'nocreate-missing' );
114 }
115
116 // Now let's check whether we're even allowed to do this
117 $errors = $titleObj->getUserPermissionsErrors( 'edit', $user );
118 if ( !$titleObj->exists() ) {
119 $errors = array_merge( $errors, $titleObj->getUserPermissionsErrors( 'create', $user ) );
120 }
121 if ( count( $errors ) ) {
122 $this->dieUsageMsg( $errors[0] );
123 }
124
125 $toMD5 = $params['text'];
126 if ( !is_null( $params['appendtext'] ) || !is_null( $params['prependtext'] ) )
127 {
128 $content = $pageObj->getContent();
129
130 if ( !$content ) {
131 if ( $titleObj->getNamespace() == NS_MEDIAWIKI ) {
132 # If this is a MediaWiki:x message, then load the messages
133 # and return the message value for x.
134 $text = $titleObj->getDefaultMessageText();
135 if ( $text === false ) {
136 $text = '';
137 }
138
139 try {
140 $content = ContentHandler::makeContent( $text, $this->getTitle() );
141 } catch ( MWContentSerializationException $ex ) {
142 $this->dieUsage( $ex->getMessage(), 'parseerror' );
143 return;
144 }
145 } else {
146 # Otherwise, make a new empty content.
147 $content = $contentHandler->makeEmptyContent();
148 }
149 }
150
151 // @todo: Add support for appending/prepending to the Content interface
152
153 if ( !( $content instanceof TextContent ) ) {
154 $mode = $contentHandler->getModelID();
155 $this->dieUsage( "Can't append to pages using content model $mode", 'appendnotsupported' );
156 }
157
158 if ( !is_null( $params['section'] ) ) {
159 if ( !$contentHandler->supportsSections() ) {
160 $modelName = $contentHandler->getModelID();
161 $this->dieUsage( "Sections are not supported for this content model: $modelName.", 'sectionsnotsupported' );
162 }
163
164 // Process the content for section edits
165 $section = intval( $params['section'] );
166 $content = $content->getSection( $section );
167
168 if ( !$content ) {
169 $this->dieUsage( "There is no section {$section}.", 'nosuchsection' );
170 }
171 }
172
173 if ( !$content ) {
174 $text = '';
175 } else {
176 $text = $content->serialize( $contentFormat );
177 }
178
179 $params['text'] = $params['prependtext'] . $text . $params['appendtext'];
180 $toMD5 = $params['prependtext'] . $params['appendtext'];
181 }
182
183 if ( $params['undo'] > 0 ) {
184 if ( $params['undoafter'] > 0 ) {
185 if ( $params['undo'] < $params['undoafter'] ) {
186 list( $params['undo'], $params['undoafter'] ) =
187 array( $params['undoafter'], $params['undo'] );
188 }
189 $undoafterRev = Revision::newFromID( $params['undoafter'] );
190 }
191 $undoRev = Revision::newFromID( $params['undo'] );
192 if ( is_null( $undoRev ) || $undoRev->isDeleted( Revision::DELETED_TEXT ) ) {
193 $this->dieUsageMsg( array( 'nosuchrevid', $params['undo'] ) );
194 }
195
196 if ( $params['undoafter'] == 0 ) {
197 $undoafterRev = $undoRev->getPrevious();
198 }
199 if ( is_null( $undoafterRev ) || $undoafterRev->isDeleted( Revision::DELETED_TEXT ) ) {
200 $this->dieUsageMsg( array( 'nosuchrevid', $params['undoafter'] ) );
201 }
202
203 if ( $undoRev->getPage() != $pageObj->getID() ) {
204 $this->dieUsageMsg( array( 'revwrongpage', $undoRev->getID(), $titleObj->getPrefixedText() ) );
205 }
206 if ( $undoafterRev->getPage() != $pageObj->getID() ) {
207 $this->dieUsageMsg( array( 'revwrongpage', $undoafterRev->getID(), $titleObj->getPrefixedText() ) );
208 }
209
210 $newContent = $contentHandler->getUndoContent( $pageObj->getRevision(), $undoRev, $undoafterRev );
211
212 if ( !$newContent ) {
213 $this->dieUsageMsg( 'undo-failure' );
214 }
215
216 $params['text'] = $newContent->serialize( $params['contentformat'] );
217
218 // If no summary was given and we only undid one rev,
219 // use an autosummary
220 if ( is_null( $params['summary'] ) && $titleObj->getNextRevisionID( $undoafterRev->getID() ) == $params['undo'] ) {
221 $params['summary'] = wfMessage( 'undo-summary', $params['undo'], $undoRev->getUserText() )->inContentLanguage()->text();
222 }
223 }
224
225 // See if the MD5 hash checks out
226 if ( !is_null( $params['md5'] ) && md5( $toMD5 ) !== $params['md5'] ) {
227 $this->dieUsageMsg( 'hashcheckfailed' );
228 }
229
230 // EditPage wants to parse its stuff from a WebRequest
231 // That interface kind of sucks, but it's workable
232 $requestArray = array(
233 'wpTextbox1' => $params['text'],
234 'format' => $contentFormat,
235 'model' => $contentHandler->getModelID(),
236 'wpEditToken' => $params['token'],
237 'wpIgnoreBlankSummary' => ''
238 );
239
240 if ( !is_null( $params['summary'] ) ) {
241 $requestArray['wpSummary'] = $params['summary'];
242 }
243
244 if ( !is_null( $params['sectiontitle'] ) ) {
245 $requestArray['wpSectionTitle'] = $params['sectiontitle'];
246 }
247
248 // TODO: Pass along information from 'undoafter' as well
249 if ( $params['undo'] > 0 ) {
250 $requestArray['wpUndidRevision'] = $params['undo'];
251 }
252
253 // Watch out for basetimestamp == ''
254 // wfTimestamp() treats it as NOW, almost certainly causing an edit conflict
255 if ( !is_null( $params['basetimestamp'] ) && $params['basetimestamp'] != '' ) {
256 $requestArray['wpEdittime'] = wfTimestamp( TS_MW, $params['basetimestamp'] );
257 } else {
258 $requestArray['wpEdittime'] = $pageObj->getTimestamp();
259 }
260
261 if ( !is_null( $params['starttimestamp'] ) && $params['starttimestamp'] != '' ) {
262 $requestArray['wpStarttime'] = wfTimestamp( TS_MW, $params['starttimestamp'] );
263 } else {
264 $requestArray['wpStarttime'] = wfTimestampNow(); // Fake wpStartime
265 }
266
267 if ( $params['minor'] || ( !$params['notminor'] && $user->getOption( 'minordefault' ) ) ) {
268 $requestArray['wpMinoredit'] = '';
269 }
270
271 if ( $params['recreate'] ) {
272 $requestArray['wpRecreate'] = '';
273 }
274
275 if ( !is_null( $params['section'] ) ) {
276 $section = intval( $params['section'] );
277 if ( $section == 0 && $params['section'] != '0' && $params['section'] != 'new' ) {
278 $this->dieUsage( "The section parameter must be set to an integer or 'new'", "invalidsection" );
279 }
280 $requestArray['wpSection'] = $params['section'];
281 } else {
282 $requestArray['wpSection'] = '';
283 }
284
285 $watch = $this->getWatchlistValue( $params['watchlist'], $titleObj );
286
287 // Deprecated parameters
288 if ( $params['watch'] ) {
289 $watch = true;
290 } elseif ( $params['unwatch'] ) {
291 $watch = false;
292 }
293
294 if ( $watch ) {
295 $requestArray['wpWatchthis'] = '';
296 }
297
298 global $wgTitle, $wgRequest;
299
300 $req = new DerivativeRequest( $this->getRequest(), $requestArray, true );
301
302 // Some functions depend on $wgTitle == $ep->mTitle
303 // TODO: Make them not or check if they still do
304 $wgTitle = $titleObj;
305
306 $articleObject = new Article( $titleObj );
307 $ep = new EditPage( $articleObject );
308
309 // allow editing of non-textual content.
310 $ep->allowNonTextContent = true;
311
312 $ep->setContextTitle( $titleObj );
313 $ep->importFormData( $req );
314
315 // Run hooks
316 // Handle APIEditBeforeSave parameters
317 $r = array();
318 if ( !wfRunHooks( 'APIEditBeforeSave', array( $ep, $ep->textbox1, &$r ) ) ) {
319 if ( count( $r ) ) {
320 $r['result'] = 'Failure';
321 $apiResult->addValue( null, $this->getModuleName(), $r );
322 return;
323 } else {
324 $this->dieUsageMsg( 'hookaborted' );
325 }
326 }
327
328 // Do the actual save
329 $oldRevId = $articleObject->getRevIdFetched();
330 $result = null;
331 // Fake $wgRequest for some hooks inside EditPage
332 // @todo FIXME: This interface SUCKS
333 $oldRequest = $wgRequest;
334 $wgRequest = $req;
335
336 $status = $ep->internalAttemptSave( $result, $user->isAllowed( 'bot' ) && $params['bot'] );
337 $wgRequest = $oldRequest;
338 global $wgMaxArticleSize;
339
340 switch( $status->value ) {
341 case EditPage::AS_HOOK_ERROR:
342 case EditPage::AS_HOOK_ERROR_EXPECTED:
343 $this->dieUsageMsg( 'hookaborted' );
344
345 case EditPage::AS_PARSE_ERROR:
346 $this->dieUsage( $status->getMessage(), 'parseerror' );
347
348 case EditPage::AS_IMAGE_REDIRECT_ANON:
349 $this->dieUsageMsg( 'noimageredirect-anon' );
350
351 case EditPage::AS_IMAGE_REDIRECT_LOGGED:
352 $this->dieUsageMsg( 'noimageredirect-logged' );
353
354 case EditPage::AS_SPAM_ERROR:
355 $this->dieUsageMsg( array( 'spamdetected', $result['spam'] ) );
356
357 case EditPage::AS_BLOCKED_PAGE_FOR_USER:
358 $this->dieUsageMsg( 'blockedtext' );
359
360 case EditPage::AS_MAX_ARTICLE_SIZE_EXCEEDED:
361 case EditPage::AS_CONTENT_TOO_BIG:
362 $this->dieUsageMsg( array( 'contenttoobig', $wgMaxArticleSize ) );
363
364 case EditPage::AS_READ_ONLY_PAGE_ANON:
365 $this->dieUsageMsg( 'noedit-anon' );
366
367 case EditPage::AS_READ_ONLY_PAGE_LOGGED:
368 $this->dieUsageMsg( 'noedit' );
369
370 case EditPage::AS_READ_ONLY_PAGE:
371 $this->dieReadOnly();
372
373 case EditPage::AS_RATE_LIMITED:
374 $this->dieUsageMsg( 'actionthrottledtext' );
375
376 case EditPage::AS_ARTICLE_WAS_DELETED:
377 $this->dieUsageMsg( 'wasdeleted' );
378
379 case EditPage::AS_NO_CREATE_PERMISSION:
380 $this->dieUsageMsg( 'nocreate-loggedin' );
381
382 case EditPage::AS_BLANK_ARTICLE:
383 $this->dieUsageMsg( 'blankpage' );
384
385 case EditPage::AS_CONFLICT_DETECTED:
386 $this->dieUsageMsg( 'editconflict' );
387
388 // case EditPage::AS_SUMMARY_NEEDED: Can't happen since we set wpIgnoreBlankSummary
389 case EditPage::AS_TEXTBOX_EMPTY:
390 $this->dieUsageMsg( 'emptynewsection' );
391
392 case EditPage::AS_SUCCESS_NEW_ARTICLE:
393 $r['new'] = '';
394
395 case EditPage::AS_SUCCESS_UPDATE:
396 $r['result'] = 'Success';
397 $r['pageid'] = intval( $titleObj->getArticleID() );
398 $r['title'] = $titleObj->getPrefixedText();
399 $r['contentmodel'] = $titleObj->getContentModel();
400 $newRevId = $articleObject->getLatest();
401 if ( $newRevId == $oldRevId ) {
402 $r['nochange'] = '';
403 } else {
404 $r['oldrevid'] = intval( $oldRevId );
405 $r['newrevid'] = intval( $newRevId );
406 $pageObj->clear();
407 $r['newtimestamp'] = wfTimestamp( TS_ISO_8601,
408 $pageObj->getTimestamp() );
409 }
410 break;
411
412 case EditPage::AS_SUMMARY_NEEDED:
413 $this->dieUsageMsg( 'summaryrequired' );
414
415 case EditPage::AS_END:
416 default:
417 // $status came from WikiPage::doEdit()
418 $errors = $status->getErrorsArray();
419 $this->dieUsageMsg( $errors[0] ); // TODO: Add new errors to message map
420 break;
421 }
422 $apiResult->addValue( null, $this->getModuleName(), $r );
423 }
424
425 public function mustBePosted() {
426 return true;
427 }
428
429 public function isWriteMode() {
430 return true;
431 }
432
433 public function getDescription() {
434 return 'Create and edit pages.';
435 }
436
437 public function getPossibleErrors() {
438 global $wgMaxArticleSize;
439
440 return array_merge( parent::getPossibleErrors(),
441 $this->getTitleOrPageIdErrorMessage(),
442 array(
443 array( 'missingtext' ),
444 array( 'createonly-exists' ),
445 array( 'nocreate-missing' ),
446 array( 'nosuchrevid', 'undo' ),
447 array( 'nosuchrevid', 'undoafter' ),
448 array( 'revwrongpage', 'id', 'text' ),
449 array( 'undo-failure' ),
450 array( 'hashcheckfailed' ),
451 array( 'hookaborted' ),
452 array( 'code' => 'parseerror', 'info' => 'Failed to parse the given text.' ),
453 array( 'noimageredirect-anon' ),
454 array( 'noimageredirect-logged' ),
455 array( 'spamdetected', 'spam' ),
456 array( 'summaryrequired' ),
457 array( 'blockedtext' ),
458 array( 'contenttoobig', $wgMaxArticleSize ),
459 array( 'noedit-anon' ),
460 array( 'noedit' ),
461 array( 'actionthrottledtext' ),
462 array( 'wasdeleted' ),
463 array( 'nocreate-loggedin' ),
464 array( 'blankpage' ),
465 array( 'editconflict' ),
466 array( 'emptynewsection' ),
467 array( 'unknownerror', 'retval' ),
468 array( 'code' => 'nosuchsection', 'info' => 'There is no section section.' ),
469 array( 'code' => 'invalidsection', 'info' => 'The section parameter must be set to an integer or \'new\'' ),
470 array( 'code' => 'sectionsnotsupported', 'info' => 'Sections are not supported for this type of page.' ),
471 array( 'code' => 'editnotsupported', 'info' => 'Editing of this type of page is not supported using '
472 . 'the text based edit API.' ),
473 array( 'code' => 'appendnotsupported', 'info' => 'This type of page can not be edited by appending '
474 . 'or prepending text.' ),
475 array( 'code' => 'badformat', 'info' => 'The requested serialization format can not be applied to '
476 . 'the page\'s content model' ),
477 array( 'customcssprotected' ),
478 array( 'customjsprotected' ),
479 )
480 );
481 }
482
483 public function getAllowedParams() {
484 return array(
485 'title' => array(
486 ApiBase::PARAM_TYPE => 'string',
487 ),
488 'pageid' => array(
489 ApiBase::PARAM_TYPE => 'integer',
490 ),
491 'section' => null,
492 'sectiontitle' => array(
493 ApiBase::PARAM_TYPE => 'string',
494 ApiBase::PARAM_REQUIRED => false,
495 ),
496 'text' => null,
497 'token' => array(
498 ApiBase::PARAM_TYPE => 'string',
499 ApiBase::PARAM_REQUIRED => true
500 ),
501 'summary' => null,
502 'minor' => false,
503 'notminor' => false,
504 'bot' => false,
505 'basetimestamp' => null,
506 'starttimestamp' => null,
507 'recreate' => false,
508 'createonly' => false,
509 'nocreate' => false,
510 'watch' => array(
511 ApiBase::PARAM_DFLT => false,
512 ApiBase::PARAM_DEPRECATED => true,
513 ),
514 'unwatch' => array(
515 ApiBase::PARAM_DFLT => false,
516 ApiBase::PARAM_DEPRECATED => true,
517 ),
518 'watchlist' => array(
519 ApiBase::PARAM_DFLT => 'preferences',
520 ApiBase::PARAM_TYPE => array(
521 'watch',
522 'unwatch',
523 'preferences',
524 'nochange'
525 ),
526 ),
527 'md5' => null,
528 'prependtext' => null,
529 'appendtext' => null,
530 'undo' => array(
531 ApiBase::PARAM_TYPE => 'integer'
532 ),
533 'undoafter' => array(
534 ApiBase::PARAM_TYPE => 'integer'
535 ),
536 'redirect' => array(
537 ApiBase::PARAM_TYPE => 'boolean',
538 ApiBase::PARAM_DFLT => false,
539 ),
540 'contentformat' => array(
541 ApiBase::PARAM_TYPE => ContentHandler::getAllContentFormats(),
542 ),
543 'contentmodel' => array(
544 ApiBase::PARAM_TYPE => ContentHandler::getContentModels(),
545 )
546 );
547 }
548
549 public function getParamDescription() {
550 $p = $this->getModulePrefix();
551 return array(
552 'title' => "Title of the page you want to edit. Cannot be used together with {$p}pageid",
553 'pageid' => "Page ID of the page you want to edit. Cannot be used together with {$p}title",
554 'section' => 'Section number. 0 for the top section, \'new\' for a new section',
555 'sectiontitle' => 'The title for a new section',
556 'text' => 'Page content',
557 'token' => array( 'Edit token. You can get one of these through prop=info.',
558 "The token should always be sent as the last parameter, or at least, after the {$p}text parameter"
559 ),
560 'summary' => "Edit summary. Also section title when {$p}section=new and {$p}sectiontitle is not set",
561 'minor' => 'Minor edit',
562 'notminor' => 'Non-minor edit',
563 'bot' => 'Mark this edit as bot',
564 'basetimestamp' => array( 'Timestamp of the base revision (obtained through prop=revisions&rvprop=timestamp).',
565 'Used to detect edit conflicts; leave unset to ignore conflicts'
566 ),
567 'starttimestamp' => array( 'Timestamp when you obtained the edit token.',
568 'Used to detect edit conflicts; leave unset to ignore conflicts'
569 ),
570 'recreate' => 'Override any errors about the article having been deleted in the meantime',
571 'createonly' => 'Don\'t edit the page if it exists already',
572 'nocreate' => 'Throw an error if the page doesn\'t exist',
573 'watch' => 'Add the page to your watchlist',
574 'unwatch' => 'Remove the page from your watchlist',
575 'watchlist' => 'Unconditionally add or remove the page from your watchlist, use preferences or do not change watch',
576 'md5' => array( "The MD5 hash of the {$p}text parameter, or the {$p}prependtext and {$p}appendtext parameters concatenated.",
577 'If set, the edit won\'t be done unless the hash is correct' ),
578 'prependtext' => "Add this text to the beginning of the page. Overrides {$p}text",
579 'appendtext' => array( "Add this text to the end of the page. Overrides {$p}text.",
580 "Use {$p}section=new to append a new section" ),
581 'undo' => "Undo this revision. Overrides {$p}text, {$p}prependtext and {$p}appendtext",
582 'undoafter' => 'Undo all revisions from undo to this one. If not set, just undo one revision',
583 'redirect' => 'Automatically resolve redirects',
584 'contentformat' => 'Content serialization format used for the input text',
585 'contentmodel' => 'Content model of the new content',
586 );
587 }
588
589 public function getResultProperties() {
590 return array(
591 '' => array(
592 'new' => 'boolean',
593 'result' => array(
594 ApiBase::PROP_TYPE => array(
595 'Success',
596 'Failure'
597 ),
598 ),
599 'pageid' => array(
600 ApiBase::PROP_TYPE => 'integer',
601 ApiBase::PROP_NULLABLE => true
602 ),
603 'title' => array(
604 ApiBase::PROP_TYPE => 'string',
605 ApiBase::PROP_NULLABLE => true
606 ),
607 'nochange' => 'boolean',
608 'oldrevid' => array(
609 ApiBase::PROP_TYPE => 'integer',
610 ApiBase::PROP_NULLABLE => true
611 ),
612 'newrevid' => array(
613 ApiBase::PROP_TYPE => 'integer',
614 ApiBase::PROP_NULLABLE => true
615 ),
616 'newtimestamp' => array(
617 ApiBase::PROP_TYPE => 'string',
618 ApiBase::PROP_NULLABLE => true
619 )
620 )
621 );
622 }
623
624 public function needsToken() {
625 return true;
626 }
627
628 public function getTokenSalt() {
629 return '';
630 }
631
632 public function getExamples() {
633 return array(
634
635 'api.php?action=edit&title=Test&summary=test%20summary&text=article%20content&basetimestamp=20070824123454&token=%2B\\'
636 => 'Edit a page (anonymous user)',
637
638 'api.php?action=edit&title=Test&summary=NOTOC&minor=&prependtext=__NOTOC__%0A&basetimestamp=20070824123454&token=%2B\\'
639 => 'Prepend __NOTOC__ to a page (anonymous user)',
640 'api.php?action=edit&title=Test&undo=13585&undoafter=13579&basetimestamp=20070824123454&token=%2B\\'
641 => 'Undo r13579 through r13585 with autosummary (anonymous user)',
642 );
643 }
644
645 public function getHelpUrls() {
646 return 'https://www.mediawiki.org/wiki/API:Edit';
647 }
648 }