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