MediaWiki REL1_30
WikiRevision.php
Go to the documentation of this file.
1<?php
36
42 public $importer = null;
43
48 public $title = null;
49
54 public $id = 0;
55
60 public $timestamp = "20010115000000";
61
68 public $user = 0;
69
74 public $user_text = "";
75
80 public $userObj = null;
81
86 public $model = null;
87
92 public $format = null;
93
98 public $text = "";
99
104 protected $size;
105
110 public $content = null;
111
116 protected $contentHandler = null;
117
122 public $comment = "";
123
128 public $minor = false;
129
134 public $type = "";
135
140 public $action = "";
141
146 public $params = "";
147
152 public $fileSrc = '';
153
158 public $sha1base36 = false;
159
164 public $archiveName = '';
165
169 protected $filename;
170
175 protected $src;
176
182 public $isTemp = false;
183
191
193 private $mNoUpdates = false;
194
196 private $config;
197
198 public function __construct( Config $config ) {
199 $this->config = $config;
200 }
201
207 public function setTitle( $title ) {
208 if ( is_object( $title ) ) {
209 $this->title = $title;
210 } elseif ( is_null( $title ) ) {
211 throw new MWException( "WikiRevision given a null title in import. "
212 . "You may need to adjust \$wgLegalTitleChars." );
213 } else {
214 throw new MWException( "WikiRevision given non-object title in import." );
215 }
216 }
217
222 public function setID( $id ) {
223 $this->id = $id;
224 }
225
230 public function setTimestamp( $ts ) {
231 # 2003-08-05T18:30:02Z
232 $this->timestamp = wfTimestamp( TS_MW, $ts );
233 }
234
239 public function setUsername( $user ) {
240 $this->user_text = $user;
241 }
242
247 public function setUserObj( $user ) {
248 $this->userObj = $user;
249 }
250
255 public function setUserIP( $ip ) {
256 $this->user_text = $ip;
257 }
258
263 public function setModel( $model ) {
264 $this->model = $model;
265 }
266
271 public function setFormat( $format ) {
272 $this->format = $format;
273 }
274
279 public function setText( $text ) {
280 $this->text = $text;
281 }
282
287 public function setComment( $text ) {
288 $this->comment = $text;
289 }
290
295 public function setMinor( $minor ) {
296 $this->minor = (bool)$minor;
297 }
298
303 public function setSrc( $src ) {
304 $this->src = $src;
305 }
306
312 public function setFileSrc( $src, $isTemp ) {
313 $this->fileSrc = $src;
314 $this->fileIsTemp = $isTemp;
315 $this->isTemp = $isTemp;
316 }
317
322 public function setSha1Base36( $sha1base36 ) {
323 $this->sha1base36 = $sha1base36;
324 }
325
330 public function setFilename( $filename ) {
331 $this->filename = $filename;
332 }
333
338 public function setArchiveName( $archiveName ) {
339 $this->archiveName = $archiveName;
340 }
341
346 public function setSize( $size ) {
347 $this->size = intval( $size );
348 }
349
354 public function setType( $type ) {
355 $this->type = $type;
356 }
357
362 public function setAction( $action ) {
363 $this->action = $action;
364 }
365
370 public function setParams( $params ) {
371 $this->params = $params;
372 }
373
378 public function setNoUpdates( $noupdates ) {
379 $this->mNoUpdates = $noupdates;
380 }
381
386 public function getTitle() {
387 return $this->title;
388 }
389
394 public function getID() {
395 return $this->id;
396 }
397
402 public function getTimestamp() {
403 return $this->timestamp;
404 }
405
410 public function getUser() {
411 return $this->user_text;
412 }
413
418 public function getUserObj() {
419 return $this->userObj;
420 }
421
426 public function getText() {
427 return $this->text;
428 }
429
434 public function getContentHandler() {
435 if ( is_null( $this->contentHandler ) ) {
436 $this->contentHandler = ContentHandler::getForModelID( $this->getModel() );
437 }
438
440 }
441
446 public function getContent() {
447 if ( is_null( $this->content ) ) {
448 $handler = $this->getContentHandler();
449 $this->content = $handler->unserializeContent( $this->text, $this->getFormat() );
450 }
451
452 return $this->content;
453 }
454
459 public function getModel() {
460 if ( is_null( $this->model ) ) {
461 $this->model = $this->getTitle()->getContentModel();
462 }
463
464 return $this->model;
465 }
466
471 public function getFormat() {
472 if ( is_null( $this->format ) ) {
473 $this->format = $this->getContentHandler()->getDefaultFormat();
474 }
475
476 return $this->format;
477 }
478
483 public function getComment() {
484 return $this->comment;
485 }
486
491 public function getMinor() {
492 return $this->minor;
493 }
494
499 public function getSrc() {
500 return $this->src;
501 }
502
507 public function getSha1() {
508 if ( $this->sha1base36 ) {
509 return Wikimedia\base_convert( $this->sha1base36, 36, 16 );
510 }
511 return false;
512 }
513
518 public function getFileSrc() {
519 return $this->fileSrc;
520 }
521
526 public function isTempSrc() {
527 return $this->isTemp;
528 }
529
534 public function getFilename() {
535 return $this->filename;
536 }
537
542 public function getArchiveName() {
543 return $this->archiveName;
544 }
545
550 public function getSize() {
551 return $this->size;
552 }
553
558 public function getType() {
559 return $this->type;
560 }
561
566 public function getAction() {
567 return $this->action;
568 }
569
574 public function getParams() {
575 return $this->params;
576 }
577
582 public function importOldRevision() {
583 $dbw = wfGetDB( DB_MASTER );
584
585 # Sneak a single revision into place
586 $user = $this->getUserObj() ?: User::newFromName( $this->getUser() );
587 if ( $user ) {
588 $userId = intval( $user->getId() );
589 $userText = $user->getName();
590 } else {
591 $userId = 0;
592 $userText = $this->getUser();
593 $user = new User;
594 }
595
596 // avoid memory leak...?
597 Title::clearCaches();
598
599 $page = WikiPage::factory( $this->title );
600 $page->loadPageData( 'fromdbmaster' );
601 if ( !$page->exists() ) {
602 // must create the page...
603 $pageId = $page->insertOn( $dbw );
604 $created = true;
605 $oldcountable = null;
606 } else {
607 $pageId = $page->getId();
608 $created = false;
609
610 // Note: sha1 has been in XML dumps since 2012. If you have an
611 // older dump, the duplicate detection here won't work.
612 $prior = $dbw->selectField( 'revision', '1',
613 [ 'rev_page' => $pageId,
614 'rev_timestamp' => $dbw->timestamp( $this->timestamp ),
615 'rev_sha1' => $this->sha1base36 ],
616 __METHOD__
617 );
618 if ( $prior ) {
619 // @todo FIXME: This could fail slightly for multiple matches :P
620 wfDebug( __METHOD__ . ": skipping existing revision for [[" .
621 $this->title->getPrefixedText() . "]], timestamp " . $this->timestamp . "\n" );
622 return false;
623 }
624 }
625
626 if ( !$pageId ) {
627 // This seems to happen if two clients simultaneously try to import the
628 // same page
629 wfDebug( __METHOD__ . ': got invalid $pageId when importing revision of [[' .
630 $this->title->getPrefixedText() . ']], timestamp ' . $this->timestamp . "\n" );
631 return false;
632 }
633
634 // Select previous version to make size diffs correct
635 // @todo This assumes that multiple revisions of the same page are imported
636 // in order from oldest to newest.
637 $prevId = $dbw->selectField( 'revision', 'rev_id',
638 [
639 'rev_page' => $pageId,
640 'rev_timestamp <= ' . $dbw->addQuotes( $dbw->timestamp( $this->timestamp ) ),
641 ],
642 __METHOD__,
643 [ 'ORDER BY' => [
644 'rev_timestamp DESC',
645 'rev_id DESC', // timestamp is not unique per page
646 ]
647 ]
648 );
649
650 # @todo FIXME: Use original rev_id optionally (better for backups)
651 # Insert the row
652 $revision = new Revision( [
653 'title' => $this->title,
654 'page' => $pageId,
655 'content_model' => $this->getModel(),
656 'content_format' => $this->getFormat(),
657 // XXX: just set 'content' => $this->getContent()?
658 'text' => $this->getContent()->serialize( $this->getFormat() ),
659 'comment' => $this->getComment(),
660 'user' => $userId,
661 'user_text' => $userText,
662 'timestamp' => $this->timestamp,
663 'minor_edit' => $this->minor,
664 'parent_id' => $prevId,
665 ] );
666 $revision->insertOn( $dbw );
667 $changed = $page->updateIfNewerOn( $dbw, $revision );
668
669 if ( $changed !== false && !$this->mNoUpdates ) {
670 wfDebug( __METHOD__ . ": running updates\n" );
671 // countable/oldcountable stuff is handled in WikiImporter::finishImportPage
672 $page->doEditUpdates(
673 $revision,
674 $user,
675 [ 'created' => $created, 'oldcountable' => 'no-change' ]
676 );
677 }
678
679 return true;
680 }
681
686 public function importLogItem() {
687 $dbw = wfGetDB( DB_MASTER );
688
689 $user = $this->getUserObj() ?: User::newFromName( $this->getUser() );
690 if ( $user ) {
691 $userId = intval( $user->getId() );
692 $userText = $user->getName();
693 } else {
694 $userId = 0;
695 $userText = $this->getUser();
696 }
697
698 # @todo FIXME: This will not record autoblocks
699 if ( !$this->getTitle() ) {
700 wfDebug( __METHOD__ . ": skipping invalid {$this->type}/{$this->action} log time, timestamp " .
701 $this->timestamp . "\n" );
702 return false;
703 }
704 # Check if it exists already
705 // @todo FIXME: Use original log ID (better for backups)
706 $prior = $dbw->selectField( 'logging', '1',
707 [ 'log_type' => $this->getType(),
708 'log_action' => $this->getAction(),
709 'log_timestamp' => $dbw->timestamp( $this->timestamp ),
710 'log_namespace' => $this->getTitle()->getNamespace(),
711 'log_title' => $this->getTitle()->getDBkey(),
712 # 'log_user_text' => $this->user_text,
713 'log_params' => $this->params ],
714 __METHOD__
715 );
716 // @todo FIXME: This could fail slightly for multiple matches :P
717 if ( $prior ) {
718 wfDebug( __METHOD__
719 . ": skipping existing item for Log:{$this->type}/{$this->action}, timestamp "
720 . $this->timestamp . "\n" );
721 return false;
722 }
723 $data = [
724 'log_type' => $this->type,
725 'log_action' => $this->action,
726 'log_timestamp' => $dbw->timestamp( $this->timestamp ),
727 'log_user' => $userId,
728 'log_user_text' => $userText,
729 'log_namespace' => $this->getTitle()->getNamespace(),
730 'log_title' => $this->getTitle()->getDBkey(),
731 'log_params' => $this->params
732 ] + CommentStore::newKey( 'log_comment' )->insert( $dbw, $this->getComment() );
733 $dbw->insert( 'logging', $data, __METHOD__ );
734
735 return true;
736 }
737
742 public function importUpload() {
743 # Construct a file
744 $archiveName = $this->getArchiveName();
745 if ( $archiveName ) {
746 wfDebug( __METHOD__ . "Importing archived file as $archiveName\n" );
748 RepoGroup::singleton()->getLocalRepo(), $archiveName );
749 } else {
750 $file = wfLocalFile( $this->getTitle() );
751 $file->load( File::READ_LATEST );
752 wfDebug( __METHOD__ . 'Importing new file as ' . $file->getName() . "\n" );
753 if ( $file->exists() && $file->getTimestamp() > $this->getTimestamp() ) {
754 $archiveName = $file->getTimestamp() . '!' . $file->getName();
756 RepoGroup::singleton()->getLocalRepo(), $archiveName );
757 wfDebug( __METHOD__ . "File already exists; importing as $archiveName\n" );
758 }
759 }
760 if ( !$file ) {
761 wfDebug( __METHOD__ . ': Bad file for ' . $this->getTitle() . "\n" );
762 return false;
763 }
764
765 # Get the file source or download if necessary
766 $source = $this->getFileSrc();
767 $autoDeleteSource = $this->isTempSrc();
768 if ( !strlen( $source ) ) {
769 $source = $this->downloadSource();
770 $autoDeleteSource = true;
771 }
772 if ( !strlen( $source ) ) {
773 wfDebug( __METHOD__ . ": Could not fetch remote file.\n" );
774 return false;
775 }
776
777 $tmpFile = new TempFSFile( $source );
778 if ( $autoDeleteSource ) {
779 $tmpFile->autocollect();
780 }
781
782 $sha1File = ltrim( sha1_file( $source ), '0' );
783 $sha1 = $this->getSha1();
784 if ( $sha1 && ( $sha1 !== $sha1File ) ) {
785 wfDebug( __METHOD__ . ": Corrupt file $source.\n" );
786 return false;
787 }
788
789 $user = $this->getUserObj() ?: User::newFromName( $this->getUser() );
790
791 # Do the actual upload
792 if ( $archiveName ) {
793 $status = $file->uploadOld( $source, $archiveName,
794 $this->getTimestamp(), $this->getComment(), $user );
795 } else {
796 $flags = 0;
797 $status = $file->upload( $source, $this->getComment(), $this->getComment(),
798 $flags, false, $this->getTimestamp(), $user );
799 }
800
801 if ( $status->isGood() ) {
802 wfDebug( __METHOD__ . ": Successful\n" );
803 return true;
804 } else {
805 wfDebug( __METHOD__ . ': failed: ' . $status->getHTML() . "\n" );
806 return false;
807 }
808 }
809
814 public function downloadSource() {
815 if ( !$this->config->get( 'EnableUploads' ) ) {
816 return false;
817 }
818
819 $tempo = tempnam( wfTempDir(), 'download' );
820 $f = fopen( $tempo, 'wb' );
821 if ( !$f ) {
822 wfDebug( "IMPORT: couldn't write to temp file $tempo\n" );
823 return false;
824 }
825
826 // @todo FIXME!
827 $src = $this->getSrc();
828 $data = Http::get( $src, [], __METHOD__ );
829 if ( !$data ) {
830 wfDebug( "IMPORT: couldn't fetch source $src\n" );
831 fclose( $f );
832 unlink( $tempo );
833 return false;
834 }
835
836 fwrite( $f, $data );
837 fclose( $f );
838
839 return $tempo;
840 }
841
842}
to move a page</td >< td > &*You are moving the page across *A non empty talk page already exists under the new or *You uncheck the box below In those you will have to move or merge the page manually if desired</td >< td > be sure to &You are responsible for making sure that links continue to point where they are supposed to go Note that the page will &a page at the new title
serialize()
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfTempDir()
Tries to get the system directory for temporary files.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
wfLocalFile( $title)
Get an object referring to a locally registered file.
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
static newKey( $key)
Static constructor for easier chaining.
A content handler knows how do deal with a specific type of content on a wiki page.
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
MediaWiki exception.
static newFromArchiveName( $title, $repo, $archiveName)
static singleton()
Get a RepoGroup instance.
Definition RepoGroup.php:59
This class is used to hold the location and do limited manipulation of files stored temporarily (this...
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:51
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition WikiPage.php:121
Represents a revision, log entry or upload during the import process.
setAction( $action)
setFilename( $filename)
setMinor( $minor)
string $timestamp
setTitle( $title)
__construct(Config $config)
setParams( $params)
setUsername( $user)
setUserObj( $user)
setArchiveName( $archiveName)
setSha1Base36( $sha1base36)
bool string $sha1base36
string $user_text
ContentHandler $contentHandler
setComment( $text)
string $archiveName
setModel( $model)
setFileSrc( $src, $isTemp)
setNoUpdates( $noupdates)
setFormat( $format)
per default it will return the text for text based content
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
Definition design.txt:18
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. '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). '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:1245
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition hooks.txt:2805
if the prop value should be in the metadata multi language array format
Definition hooks.txt:1646
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 modifiable modifiable after all normalizations have been except for the $wgMaxImageArea check set to true or false to override the $wgMaxImageArea check result gives extension the possibility to transform it themselves $handler
Definition hooks.txt:901
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
Interface for configuration instances.
Definition Config.php:28
Base interface for content objects.
Definition Content.php:34
$source
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition postgres.txt:36
const DB_MASTER
Definition defines.php:26