MediaWiki REL1_32
PageUpdaterTest.php
Go to the documentation of this file.
1<?php
2
4
16use User;
18
24
25 public function setUp() {
26 parent::setUp();
27
28 $this->tablesUsed[] = 'logging';
29 $this->tablesUsed[] = 'recentchanges';
30 }
31
32 private function getDummyTitle( $method ) {
33 return Title::newFromText( $method, $this->getDefaultWikitextNS() );
34 }
35
41 private function getRecentChangeFor( $revId ) {
42 $qi = RecentChange::getQueryInfo();
43 $row = $this->db->selectRow(
44 $qi['tables'],
45 $qi['fields'],
46 [ 'rc_this_oldid' => $revId ],
47 __METHOD__,
48 [],
49 $qi['joins']
50 );
51
52 return $row ? RecentChange::newFromRow( $row ) : null;
53 }
54
55 // TODO: test setAjaxEditStash();
56
61 public function testCreatePage() {
62 $user = $this->getTestUser()->getUser();
63
64 $title = $this->getDummyTitle( __METHOD__ );
65 $page = WikiPage::factory( $title );
66 $updater = $page->newPageUpdater( $user );
67
68 $oldStats = $this->db->selectRow( 'site_stats', '*', '1=1' );
69
70 $this->assertFalse( $updater->wasCommitted(), 'wasCommitted' );
71 $this->assertFalse( $updater->getOriginalRevisionId(), 'getOriginalRevisionId' );
72 $this->assertSame( 0, $updater->getUndidRevisionId(), 'getUndidRevisionId' );
73
74 $updater->addTag( 'foo' );
75 $updater->addTags( [ 'bar', 'qux' ] );
76
77 $tags = $updater->getExplicitTags();
78 sort( $tags );
79 $this->assertSame( [ 'bar', 'foo', 'qux' ], $tags, 'getExplicitTags' );
80
81 // TODO: MCR: test additional slots
82 $content = new TextContent( 'Lorem Ipsum' );
83 $updater->setContent( SlotRecord::MAIN, $content );
84
85 $parent = $updater->grabParentRevision();
86
87 $this->assertNull( $parent, 'getParentRevision' );
88 $this->assertFalse( $updater->wasCommitted(), 'wasCommitted' );
89
90 // TODO: test that hasEditConflict() grabs the parent revision
91 $this->assertFalse( $updater->hasEditConflict( 0 ), 'hasEditConflict' );
92 $this->assertTrue( $updater->hasEditConflict( 1 ), 'hasEditConflict' );
93
94 // TODO: test failure with EDIT_UPDATE
95 // TODO: test EDIT_MINOR, EDIT_BOT, etc
96 $summary = CommentStoreComment::newUnsavedComment( 'Just a test' );
97 $rev = $updater->saveRevision( $summary );
98
99 $this->assertNotNull( $rev );
100 $this->assertSame( 0, $rev->getParentId() );
101 $this->assertSame( $summary->text, $rev->getComment( RevisionRecord::RAW )->text );
102 $this->assertSame( $user->getName(), $rev->getUser( RevisionRecord::RAW )->getName() );
103
104 $this->assertTrue( $updater->wasCommitted(), 'wasCommitted()' );
105 $this->assertTrue( $updater->wasSuccessful(), 'wasSuccessful()' );
106 $this->assertTrue( $updater->getStatus()->isOK(), 'getStatus()->isOK()' );
107 $this->assertTrue( $updater->isNew(), 'isNew()' );
108 $this->assertFalse( $updater->isUnchanged(), 'isUnchanged()' );
109 $this->assertNotNull( $updater->getNewRevision(), 'getNewRevision()' );
110 $this->assertInstanceOf( Revision::class, $updater->getStatus()->value['revision'] );
111
112 $rev = $updater->getNewRevision();
113 $revContent = $rev->getContent( SlotRecord::MAIN );
114 $this->assertSame( 'Lorem Ipsum', $revContent->serialize(), 'revision content' );
115
116 // were the WikiPage and Title objects updated?
117 $this->assertTrue( $page->exists(), 'WikiPage::exists()' );
118 $this->assertTrue( $title->exists(), 'Title::exists()' );
119 $this->assertSame( $rev->getId(), $page->getLatest(), 'WikiPage::getRevision()' );
120 $this->assertNotNull( $page->getRevision(), 'WikiPage::getRevision()' );
121
122 // re-load
123 $page2 = WikiPage::factory( $title );
124 $this->assertTrue( $page2->exists(), 'WikiPage::exists()' );
125 $this->assertSame( $rev->getId(), $page2->getLatest(), 'WikiPage::getRevision()' );
126 $this->assertNotNull( $page2->getRevision(), 'WikiPage::getRevision()' );
127
128 // Check RC entry
129 $rc = $this->getRecentChangeFor( $rev->getId() );
130 $this->assertNotNull( $rc, 'RecentChange' );
131
132 // check site stats - this asserts that derived data updates where run.
133 $stats = $this->db->selectRow( 'site_stats', '*', '1=1' );
134 $this->assertSame( $oldStats->ss_total_pages + 1, (int)$stats->ss_total_pages );
135 $this->assertSame( $oldStats->ss_total_edits + 1, (int)$stats->ss_total_edits );
136
137 // re-edit with same content - should be a "null-edit"
138 $updater = $page->newPageUpdater( $user );
139 $updater->setContent( SlotRecord::MAIN, $content );
140
141 $summary = CommentStoreComment::newUnsavedComment( 'to to re-edit' );
142 $rev = $updater->saveRevision( $summary );
143 $status = $updater->getStatus();
144
145 $this->assertNull( $rev, 'getNewRevision()' );
146 $this->assertNull( $updater->getNewRevision(), 'getNewRevision()' );
147 $this->assertTrue( $updater->isUnchanged(), 'isUnchanged' );
148 $this->assertTrue( $updater->wasSuccessful(), 'wasSuccessful()' );
149 $this->assertTrue( $status->isOK(), 'getStatus()->isOK()' );
150 $this->assertTrue( $status->hasMessage( 'edit-no-change' ), 'edit-no-change' );
151 }
152
157 public function testUpdatePage() {
158 $user = $this->getTestUser()->getUser();
159
160 $title = $this->getDummyTitle( __METHOD__ );
161 $this->insertPage( $title );
162
163 $page = WikiPage::factory( $title );
164 $parentId = $page->getLatest();
165
166 $updater = $page->newPageUpdater( $user );
167
168 $oldStats = $this->db->selectRow( 'site_stats', '*', '1=1' );
169
170 $updater->setOriginalRevisionId( 7 );
171 $this->assertSame( 7, $updater->getOriginalRevisionId(), 'getOriginalRevisionId' );
172
173 $this->assertFalse( $updater->hasEditConflict( $parentId ), 'hasEditConflict' );
174 $this->assertTrue( $updater->hasEditConflict( $parentId - 1 ), 'hasEditConflict' );
175 $this->assertTrue( $updater->hasEditConflict( 0 ), 'hasEditConflict' );
176
177 // TODO: MCR: test additional slots
178 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
179
180 // TODO: test all flags for saveRevision()!
181 $summary = CommentStoreComment::newUnsavedComment( 'Just a test' );
182 $rev = $updater->saveRevision( $summary );
183
184 $this->assertNotNull( $rev );
185 $this->assertSame( $parentId, $rev->getParentId() );
186 $this->assertSame( $summary->text, $rev->getComment( RevisionRecord::RAW )->text );
187 $this->assertSame( $user->getName(), $rev->getUser( RevisionRecord::RAW )->getName() );
188
189 $this->assertTrue( $updater->wasCommitted(), 'wasCommitted()' );
190 $this->assertTrue( $updater->wasSuccessful(), 'wasSuccessful()' );
191 $this->assertTrue( $updater->getStatus()->isOK(), 'getStatus()->isOK()' );
192 $this->assertFalse( $updater->isNew(), 'isNew()' );
193 $this->assertNotNull( $updater->getNewRevision(), 'getNewRevision()' );
194 $this->assertInstanceOf( Revision::class, $updater->getStatus()->value['revision'] );
195 $this->assertFalse( $updater->isUnchanged(), 'isUnchanged()' );
196
197 // TODO: Test null revision (with different user): new revision!
198
199 $rev = $updater->getNewRevision();
200 $revContent = $rev->getContent( SlotRecord::MAIN );
201 $this->assertSame( 'Lorem Ipsum', $revContent->serialize(), 'revision content' );
202
203 // were the WikiPage and Title objects updated?
204 $this->assertTrue( $page->exists(), 'WikiPage::exists()' );
205 $this->assertTrue( $title->exists(), 'Title::exists()' );
206 $this->assertSame( $rev->getId(), $page->getLatest(), 'WikiPage::getRevision()' );
207 $this->assertNotNull( $page->getRevision(), 'WikiPage::getRevision()' );
208
209 // re-load
210 $page2 = WikiPage::factory( $title );
211 $this->assertTrue( $page2->exists(), 'WikiPage::exists()' );
212 $this->assertSame( $rev->getId(), $page2->getLatest(), 'WikiPage::getRevision()' );
213 $this->assertNotNull( $page2->getRevision(), 'WikiPage::getRevision()' );
214
215 // Check RC entry
216 $rc = $this->getRecentChangeFor( $rev->getId() );
217 $this->assertNotNull( $rc, 'RecentChange' );
218
219 // re-edit
220 $updater = $page->newPageUpdater( $user );
221 $updater->setContent( SlotRecord::MAIN, new TextContent( 'dolor sit amet' ) );
222
223 $summary = CommentStoreComment::newUnsavedComment( 're-edit' );
224 $updater->saveRevision( $summary );
225 $this->assertTrue( $updater->wasSuccessful(), 'wasSuccessful()' );
226 $this->assertTrue( $updater->getStatus()->isOK(), 'getStatus()->isOK()' );
227
228 // check site stats - this asserts that derived data updates where run.
229 $stats = $this->db->selectRow( 'site_stats', '*', '1=1' );
230 $this->assertNotNull( $stats, 'site_stats' );
231 $this->assertSame( $oldStats->ss_total_pages + 0, (int)$stats->ss_total_pages );
232 $this->assertSame( $oldStats->ss_total_edits + 2, (int)$stats->ss_total_edits );
233 }
234
244 private function createRevision( WikiPage $page, $summary, $content = null ) {
245 $user = $this->getTestUser()->getUser();
246 $comment = CommentStoreComment::newUnsavedComment( $summary );
247
248 if ( !$content instanceof Content ) {
249 $content = new TextContent( $content ?? $summary );
250 }
251
252 $updater = $page->newPageUpdater( $user );
253 $updater->setContent( SlotRecord::MAIN, $content );
254 $rev = $updater->saveRevision( $comment );
255 return $rev;
256 }
257
262 public function testCompareAndSwapFailure() {
263 $user = $this->getTestUser()->getUser();
264
265 $title = $this->getDummyTitle( __METHOD__ );
266
267 // start editing non-existing page
268 $page = WikiPage::factory( $title );
269 $updater = $page->newPageUpdater( $user );
270 $updater->grabParentRevision();
271
272 // create page concurrently
273 $concurrentPage = WikiPage::factory( $title );
274 $this->createRevision( $concurrentPage, __METHOD__ . '-one' );
275
276 // try creating the page - should trigger CAS failure.
277 $summary = CommentStoreComment::newUnsavedComment( 'create?!' );
278 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem ipsum' ) );
279 $updater->saveRevision( $summary );
280 $status = $updater->getStatus();
281
282 $this->assertFalse( $updater->wasSuccessful(), 'wasSuccessful()' );
283 $this->assertNull( $updater->getNewRevision(), 'getNewRevision()' );
284 $this->assertFalse( $status->isOK(), 'getStatus()->isOK()' );
285 $this->assertTrue( $status->hasMessage( 'edit-already-exists' ), 'edit-conflict' );
286
287 // start editing existing page
288 $page = WikiPage::factory( $title );
289 $updater = $page->newPageUpdater( $user );
290 $updater->grabParentRevision();
291
292 // update page concurrently
293 $concurrentPage = WikiPage::factory( $title );
294 $this->createRevision( $concurrentPage, __METHOD__ . '-two' );
295
296 // try creating the page - should trigger CAS failure.
297 $summary = CommentStoreComment::newUnsavedComment( 'edit?!' );
298 $updater->setContent( SlotRecord::MAIN, new TextContent( 'dolor sit amet' ) );
299 $updater->saveRevision( $summary );
300 $status = $updater->getStatus();
301
302 $this->assertFalse( $updater->wasSuccessful(), 'wasSuccessful()' );
303 $this->assertNull( $updater->getNewRevision(), 'getNewRevision()' );
304 $this->assertFalse( $status->isOK(), 'getStatus()->isOK()' );
305 $this->assertTrue( $status->hasMessage( 'edit-conflict' ), 'edit-conflict' );
306 }
307
311 public function testFailureOnEditFlags() {
312 $user = $this->getTestUser()->getUser();
313
314 $title = $this->getDummyTitle( __METHOD__ );
315
316 // start editing non-existing page
317 $page = WikiPage::factory( $title );
318 $updater = $page->newPageUpdater( $user );
319
320 // update with EDIT_UPDATE flag should fail
321 $summary = CommentStoreComment::newUnsavedComment( 'udpate?!' );
322 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem ipsum' ) );
323 $updater->saveRevision( $summary, EDIT_UPDATE );
324 $status = $updater->getStatus();
325
326 $this->assertFalse( $updater->wasSuccessful(), 'wasSuccessful()' );
327 $this->assertNull( $updater->getNewRevision(), 'getNewRevision()' );
328 $this->assertFalse( $status->isOK(), 'getStatus()->isOK()' );
329 $this->assertTrue( $status->hasMessage( 'edit-gone-missing' ), 'edit-gone-missing' );
330
331 // create the page
332 $this->createRevision( $page, __METHOD__ );
333
334 // update with EDIT_NEW flag should fail
335 $summary = CommentStoreComment::newUnsavedComment( 'create?!' );
336 $updater = $page->newPageUpdater( $user );
337 $updater->setContent( SlotRecord::MAIN, new TextContent( 'dolor sit amet' ) );
338 $updater->saveRevision( $summary, EDIT_NEW );
339 $status = $updater->getStatus();
340
341 $this->assertFalse( $updater->wasSuccessful(), 'wasSuccessful()' );
342 $this->assertNull( $updater->getNewRevision(), 'getNewRevision()' );
343 $this->assertFalse( $status->isOK(), 'getStatus()->isOK()' );
344 $this->assertTrue( $status->hasMessage( 'edit-already-exists' ), 'edit-already-exists' );
345 }
346
347 public function provideSetRcPatrolStatus( $patrolled ) {
348 yield [ RecentChange::PRC_UNPATROLLED ];
349 yield [ RecentChange::PRC_AUTOPATROLLED ];
350 }
351
356 public function testSetRcPatrolStatus( $patrolled ) {
357 $revisionStore = MediaWikiServices::getInstance()->getRevisionStore();
358
359 $user = $this->getTestUser()->getUser();
360
361 $title = $this->getDummyTitle( __METHOD__ );
362
363 $page = WikiPage::factory( $title );
364 $updater = $page->newPageUpdater( $user );
365
366 $summary = CommentStoreComment::newUnsavedComment( 'Lorem ipsum ' . $patrolled );
367 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem ipsum ' . $patrolled ) );
368 $updater->setRcPatrolStatus( $patrolled );
369 $rev = $updater->saveRevision( $summary );
370
371 $rc = $revisionStore->getRecentChange( $rev );
372 $this->assertEquals( $patrolled, $rc->getAttribute( 'rc_patrolled' ) );
373 }
374
379 public function testInheritSlot() {
380 $user = $this->getTestUser()->getUser();
381 $title = $this->getDummyTitle( __METHOD__ );
382 $page = WikiPage::factory( $title );
383
384 $updater = $page->newPageUpdater( $user );
385 $summary = CommentStoreComment::newUnsavedComment( 'one' );
386 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem ipsum' ) );
387 $rev1 = $updater->saveRevision( $summary, EDIT_NEW );
388
389 $updater = $page->newPageUpdater( $user );
390 $summary = CommentStoreComment::newUnsavedComment( 'two' );
391 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Foo Bar' ) );
392 $rev2 = $updater->saveRevision( $summary, EDIT_UPDATE );
393
394 $updater = $page->newPageUpdater( $user );
395 $summary = CommentStoreComment::newUnsavedComment( 'three' );
396 $updater->inheritSlot( $rev1->getSlot( SlotRecord::MAIN ) );
397 $rev3 = $updater->saveRevision( $summary, EDIT_UPDATE );
398
399 $this->assertNotSame( $rev1->getId(), $rev3->getId() );
400 $this->assertNotSame( $rev2->getId(), $rev3->getId() );
401
402 $main1 = $rev1->getSlot( SlotRecord::MAIN );
403 $main3 = $rev3->getSlot( SlotRecord::MAIN );
404
405 $this->assertNotSame( $main1->getRevision(), $main3->getRevision() );
406 $this->assertSame( $main1->getAddress(), $main3->getAddress() );
407 $this->assertTrue( $main1->getContent()->equals( $main3->getContent() ) );
408 }
409
410 // TODO: MCR: test adding multiple slots, inheriting parent slots, and removing slots.
411
413 $this->setContentLang( 'qqx' );
414 $user = $this->getTestUser()->getUser();
415
416 $title = $this->getDummyTitle( __METHOD__ );
417 $page = WikiPage::factory( $title );
418
419 $updater = $page->newPageUpdater( $user );
420 $updater->setUseAutomaticEditSummaries( true );
421 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
422
423 // empty comment triggers auto-summary
424 $summary = CommentStoreComment::newUnsavedComment( '' );
425 $updater->saveRevision( $summary, EDIT_AUTOSUMMARY );
426
427 $rev = $updater->getNewRevision();
428 $comment = $rev->getComment( RevisionRecord::RAW );
429 $this->assertSame( '(autosumm-new: Lorem Ipsum)', $comment->text, 'comment text' );
430
431 // check that this also works when blanking the page
432 $updater = $page->newPageUpdater( $user );
433 $updater->setUseAutomaticEditSummaries( true );
434 $updater->setContent( SlotRecord::MAIN, new TextContent( '' ) );
435
436 $summary = CommentStoreComment::newUnsavedComment( '' );
437 $updater->saveRevision( $summary, EDIT_AUTOSUMMARY );
438
439 $rev = $updater->getNewRevision();
440 $comment = $rev->getComment( RevisionRecord::RAW );
441 $this->assertSame( '(autosumm-blank)', $comment->text, 'comment text' );
442
443 // check that we can also disable edit-summaries
444 $title2 = $this->getDummyTitle( __METHOD__ . '/2' );
445 $page2 = WikiPage::factory( $title2 );
446
447 $updater = $page2->newPageUpdater( $user );
448 $updater->setUseAutomaticEditSummaries( false );
449 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
450
451 $summary = CommentStoreComment::newUnsavedComment( '' );
452 $updater->saveRevision( $summary, EDIT_AUTOSUMMARY );
453
454 $rev = $updater->getNewRevision();
455 $comment = $rev->getComment( RevisionRecord::RAW );
456 $this->assertSame( '', $comment->text, 'comment text should still be lank' );
457
458 // check that we don't do auto.summaries without the EDIT_AUTOSUMMARY flag
459 $updater = $page2->newPageUpdater( $user );
460 $updater->setUseAutomaticEditSummaries( true );
461 $updater->setContent( SlotRecord::MAIN, new TextContent( '' ) );
462
463 $summary = CommentStoreComment::newUnsavedComment( '' );
464 $updater->saveRevision( $summary, 0 );
465
466 $rev = $updater->getNewRevision();
467 $comment = $rev->getComment( RevisionRecord::RAW );
468 $this->assertSame( '', $comment->text, 'comment text' );
469 }
470
472 yield [ true, [ [ 'create', 'create' ] ] ];
473 yield [ false, [] ];
474 }
475
480 public function testSetUsePageCreationLog( $use, $expected ) {
481 $user = $this->getTestUser()->getUser();
482 $title = $this->getDummyTitle( __METHOD__ . ( $use ? '_logged' : '_unlogged' ) );
483 $page = WikiPage::factory( $title );
484
485 $updater = $page->newPageUpdater( $user );
486 $updater->setUsePageCreationLog( $use );
487 $summary = CommentStoreComment::newUnsavedComment( 'cmt' );
488 $updater->setContent( SlotRecord::MAIN, new TextContent( 'Lorem Ipsum' ) );
489 $updater->saveRevision( $summary, EDIT_NEW );
490
491 $rev = $updater->getNewRevision();
492 $this->assertSelect(
493 'logging',
494 [ 'log_type', 'log_action' ],
495 [ 'log_page' => $rev->getPageId() ],
496 $expected
497 );
498 }
499
500 public function provideMagicWords() {
501 yield 'PAGEID' => [
502 'Test {{PAGEID}} Test',
503 function ( RevisionRecord $rev ) {
504 return $rev->getPageId();
505 }
506 ];
507
508 yield 'REVISIONID' => [
509 'Test {{REVISIONID}} Test',
510 function ( RevisionRecord $rev ) {
511 return $rev->getId();
512 }
513 ];
514
515 yield 'REVISIONUSER' => [
516 'Test {{REVISIONUSER}} Test',
517 function ( RevisionRecord $rev ) {
518 return $rev->getUser()->getName();
519 }
520 ];
521
522 yield 'REVISIONTIMESTAMP' => [
523 'Test {{REVISIONTIMESTAMP}} Test',
524 function ( RevisionRecord $rev ) {
525 return $rev->getTimestamp();
526 }
527 ];
528
529 yield 'subst:REVISIONUSER' => [
530 'Test {{subst:REVISIONUSER}} Test',
531 function ( RevisionRecord $rev ) {
532 return $rev->getUser()->getName();
533 },
534 'subst'
535 ];
536
537 yield 'subst:PAGENAME' => [
538 'Test {{subst:PAGENAME}} Test',
539 function ( RevisionRecord $rev ) {
540 return 'PageUpdaterTest::testMagicWords';
541 },
542 'subst'
543 ];
544 }
545
556 public function testMagicWords( $wikitext, $callback, $subst = false ) {
557 $user = User::newFromName( 'A user for ' . __METHOD__ );
558 $user->addToDatabase();
559
560 $title = $this->getDummyTitle( __METHOD__ . '-' . $this->getName() );
561 $this->insertPage( $title );
562
563 $page = WikiPage::factory( $title );
564 $updater = $page->newPageUpdater( $user );
565
566 $updater->setContent( SlotRecord::MAIN, new \WikitextContent( $wikitext ) );
567
568 $summary = CommentStoreComment::newUnsavedComment( 'Just a test' );
569 $rev = $updater->saveRevision( $summary, EDIT_UPDATE );
570
571 if ( !$rev ) {
572 $this->fail( $updater->getStatus()->getWikiText() );
573 }
574
575 $expected = strval( $callback( $rev ) );
576
577 $output = $page->getParserOutput( ParserOptions::newCanonical( 'canonical' ) );
578 $html = $output->getText();
579 $text = $rev->getContent( SlotRecord::MAIN )->serialize();
580
581 if ( $subst ) {
582 $this->assertContains( $expected, $text, 'In Wikitext' );
583 }
584
585 $this->assertContains( $expected, $html, 'In HTML' );
586 }
587
588}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
CommentStoreComment represents a comment stored by CommentStore.
getDefaultWikitextNS()
Returns the ID of a namespace that defaults to Wikitext.
insertPage( $pageName, $text='Sample page for unit test.', $namespace=null, User $user=null)
Insert a new page.
static getTestUser( $groups=[])
Convenience method for getting an immutable test user.
assertSelect( $table, $fields, $condition, array $expectedRows, array $options=[], array $join_conds=[])
Asserts that the given database query yields the rows given by $expectedRows.
MediaWikiServices is the service locator for the application scope of MediaWiki.
static getInstance()
Returns the global default instance of the top level service locator.
Page revision base class.
Value object representing a content slot associated with a page revision.
\MediaWiki\Storage\PageUpdater Database
testInheritSlot()
\MediaWiki\Storage\PageUpdater::inheritSlot() \MediaWiki\Storage\PageUpdater::setContent()
createRevision(WikiPage $page, $summary, $content=null)
Creates a revision in the database.
testCompareAndSwapFailure()
\MediaWiki\Storage\PageUpdater::grabParentRevision() \MediaWiki\Storage\PageUpdater::saveRevision()
testMagicWords( $wikitext, $callback, $subst=false)
\MediaWiki\Storage\PageUpdater::saveRevision()
testCreatePage()
\MediaWiki\Storage\PageUpdater::saveRevision() \WikiPage::newPageUpdater()
testFailureOnEditFlags()
\MediaWiki\Storage\PageUpdater::saveRevision()
testSetUsePageCreationLog( $use, $expected)
provideSetUsePageCreationLog
testUpdatePage()
\MediaWiki\Storage\PageUpdater::saveRevision() \WikiPage::newPageUpdater()
testSetRcPatrolStatus( $patrolled)
provideSetRcPatrolStatus \MediaWiki\Storage\PageUpdater::setRcPatrolStatus()
Set options of the Parser.
Utility class for creating new RC entries.
Content object implementation for representing flat text.
Represents a title within MediaWiki.
Definition Title.php:39
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition User.php:47
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition User.php:592
Class representing a MediaWiki article and history.
Definition WikiPage.php:44
newPageUpdater(User $user, RevisionSlotsUpdate $forUpdate=null)
Returns a PageUpdater for creating new revisions on this page (or creating the page).
Content object for wiki text pages.
const EDIT_UPDATE
Definition Defines.php:153
const EDIT_AUTOSUMMARY
Definition Defines.php:158
const EDIT_NEW
Definition Defines.php:152
Status::newGood()` to allow deletion, and then `return false` from the hook function. Ensure you consume the 'ChangeTagAfterDelete' hook to carry out custom deletion actions. $tag:name of the tag $user:user initiating the action & $status:Status object. See above. 'ChangeTagsListActive':Allows you to nominate which of the tags your extension uses are in active use. & $tags:list of all active tags. Append to this array. 'ChangeTagsAfterUpdateTags':Called after tags have been updated with the ChangeTags::updateTags function. Params:$addedTags:tags effectively added in the update $removedTags:tags effectively removed in the update $prevTags:tags that were present prior to the update $rc_id:recentchanges table id $rev_id:revision table id $log_id:logging table id $params:tag params $rc:RecentChange being tagged when the tagging accompanies the action, or null $user:User who performed the tagging when the tagging is subsequent to the action, or null 'ChangeTagsAllowedAdd':Called when checking if a user can add tags to a change. & $allowedTags:List of all the tags the user is allowed to add. Any tags the user wants to add( $addTags) that are not in this array will cause it to fail. You may add or remove tags to this array as required. $addTags:List of tags user intends to add. $user:User who is adding the tags. 'ChangeUserGroups':Called before user groups are changed. $performer:The User who will perform the change $user:The User whose groups will be changed & $add:The groups that will be added & $remove:The groups that will be removed 'Collation::factory':Called if $wgCategoryCollation is an unknown collation. $collationName:Name of the collation in question & $collationObject:Null. Replace with a subclass of the Collation class that implements the collation given in $collationName. 'ConfirmEmailComplete':Called after a user 's email has been confirmed successfully. $user:user(object) whose email is being confirmed 'ContentAlterParserOutput':Modify parser output for a given content object. Called by Content::getParserOutput after parsing has finished. Can be used for changes that depend on the result of the parsing but have to be done before LinksUpdate is called(such as adding tracking categories based on the rendered HTML). $content:The Content to render $title:Title of the page, as context $parserOutput:ParserOutput to manipulate 'ContentGetParserOutput':Customize parser output for a given content object, called by AbstractContent::getParserOutput. May be used to override the normal model-specific rendering of page content. $content:The Content to render $title:Title of the page, as context $revId:The revision ID, as context $options:ParserOptions for rendering. To avoid confusing the parser cache, the output can only depend on parameters provided to this hook function, not on global state. $generateHtml:boolean, indicating whether full HTML should be generated. If false, generation of HTML may be skipped, but other information should still be present in the ParserOutput object. & $output:ParserOutput, to manipulate or replace 'ContentHandlerDefaultModelFor':Called when the default content model is determined for a given title. May be used to assign a different model for that title. $title:the Title in question & $model:the model name. Use with CONTENT_MODEL_XXX constants. 'ContentHandlerForModelID':Called when a ContentHandler is requested for a given content model name, but no entry for that model exists in $wgContentHandlers. Note:if your extension implements additional models via this hook, please use GetContentModels hook to make them known to core. $modeName:the requested content model name & $handler:set this to a ContentHandler object, if desired. 'ContentModelCanBeUsedOn':Called to determine whether that content model can be used on a given page. This is especially useful to prevent some content models to be used in some special location. $contentModel:ID of the content model in question $title:the Title in question. & $ok:Output parameter, whether it is OK to use $contentModel on $title. Handler functions that modify $ok should generally return false to prevent further hooks from further modifying $ok. 'ContribsPager::getQueryInfo':Before the contributions query is about to run & $pager:Pager object for contributions & $queryInfo:The query for the contribs Pager 'ContribsPager::reallyDoQuery':Called before really executing the query for My Contributions & $data:an array of results of all contribs queries $pager:The ContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'ContributionsLineEnding':Called before a contributions HTML line is finished $page:SpecialPage object for contributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'ContributionsToolLinks':Change tool links above Special:Contributions $id:User identifier $title:User page title & $tools:Array of tool links $specialPage:SpecialPage instance for context and services. Can be either SpecialContributions or DeletedContributionsPage. Extensions should type hint against a generic SpecialPage though. 'ConvertContent':Called by AbstractContent::convert when a conversion to another content model is requested. Handler functions that modify $result should generally return false to disable further attempts at conversion. $content:The Content object to be converted. $toModel:The ID of the content model to convert to. $lossy:boolean indicating whether lossy conversion is allowed. & $result:Output parameter, in case the handler function wants to provide a converted Content object. Note that $result->getContentModel() must return $toModel. 'ContentSecurityPolicyDefaultSource':Modify the allowed CSP load sources. This affects all directives except for the script directive. If you want to add a script source, see ContentSecurityPolicyScriptSource hook. & $defaultSrc:Array of Content-Security-Policy allowed sources $policyConfig:Current configuration for the Content-Security-Policy header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyDirectives':Modify the content security policy directives. Use this only if ContentSecurityPolicyDefaultSource and ContentSecurityPolicyScriptSource do not meet your needs. & $directives:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'ContentSecurityPolicyScriptSource':Modify the allowed CSP script sources. Note that you also have to use ContentSecurityPolicyDefaultSource if you want non-script sources to be loaded from whatever you add. & $scriptSrc:Array of CSP directives $policyConfig:Current configuration for the CSP header $mode:ContentSecurityPolicy::REPORT_ONLY_MODE or ContentSecurityPolicy::FULL_MODE depending on type of header 'CustomEditor':When invoking the page editor Return true to allow the normal editor to be used, or false if implementing a custom editor, e.g. for a special namespace, etc. $article:Article being edited $user:User performing the edit 'DatabaseOraclePostInit':Called after initialising an Oracle database $db:the DatabaseOracle object 'DeletedContribsPager::reallyDoQuery':Called before really executing the query for Special:DeletedContributions Similar to ContribsPager::reallyDoQuery & $data:an array of results of all contribs queries $pager:The DeletedContribsPager object hooked into $offset:Index offset, inclusive $limit:Exact query limit $descending:Query direction, false for ascending, true for descending 'DeletedContributionsLineEnding':Called before a DeletedContributions HTML line is finished. Similar to ContributionsLineEnding $page:SpecialPage object for DeletedContributions & $ret:the HTML line $row:the DB row for this line & $classes:the classes to add to the surrounding< li > & $attribs:associative array of other HTML attributes for the< li > element. Currently only data attributes reserved to MediaWiki are allowed(see Sanitizer::isReservedDataAttribute). 'DeleteUnknownPreferences':Called by the cleanupPreferences.php maintenance script to build a WHERE clause with which to delete preferences that are not known about. This hook is used by extensions that have dynamically-named preferences that should not be deleted in the usual cleanup process. For example, the Gadgets extension creates preferences prefixed with 'gadget-', and so anything with that prefix is excluded from the deletion. &where:An array that will be passed as the $cond parameter to IDatabase::select() to determine what will be deleted from the user_properties table. $db:The IDatabase object, useful for accessing $db->buildLike() etc. 'DifferenceEngineAfterLoadNewText':called in DifferenceEngine::loadNewText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before returning true from this function. $differenceEngine:DifferenceEngine object 'DifferenceEngineLoadTextAfterNewContentIsLoaded':called in DifferenceEngine::loadText() after the new revision 's content has been loaded into the class member variable $differenceEngine->mNewContent but before checking if the variable 's value is null. This hook can be used to inject content into said class member variable. $differenceEngine:DifferenceEngine object 'DifferenceEngineMarkPatrolledLink':Allows extensions to change the "mark as patrolled" link which is shown both on the diff header as well as on the bottom of a page, usually wrapped in a span element which has class="patrollink". $differenceEngine:DifferenceEngine object & $markAsPatrolledLink:The "mark as patrolled" link HTML(string) $rcid:Recent change ID(rc_id) for this change(int) 'DifferenceEngineMarkPatrolledRCID':Allows extensions to possibly change the rcid parameter. For example the rcid might be set to zero due to the user being the same as the performer of the change but an extension might still want to show it under certain conditions. & $rcid:rc_id(int) of the change or 0 $differenceEngine:DifferenceEngine object $change:RecentChange object $user:User object representing the current user 'DifferenceEngineNewHeader':Allows extensions to change the $newHeader variable, which contains information about the new revision, such as the revision 's author, whether the revision was marked as a minor edit or not, etc. $differenceEngine:DifferenceEngine object & $newHeader:The string containing the various #mw-diff-otitle[1-5] divs, which include things like revision author info, revision comment, RevisionDelete link and more $formattedRevisionTools:Array containing revision tools, some of which may have been injected with the DiffRevisionTools hook $nextlink:String containing the link to the next revision(if any) $status
Definition hooks.txt:1305
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:994
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition hooks.txt:2062
static configuration should be added through ResourceLoaderGetConfigVars instead can be used to get the real title e g db for database replication lag or jobqueue for job queue size converted to pseudo seconds It is possible to add more fields and they will be returned to the user in the API response after the basic globals have been set but before ordinary actions take place $output
Definition hooks.txt:2317
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
Definition hooks.txt:1818
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 local account $user
Definition hooks.txt:247
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
Definition injection.txt:37
Base interface for content objects.
Definition Content.php:34
$parent
$content
$page->newPageUpdater($user) $updater