MediaWiki  1.29.2
WikiRevision.php
Go to the documentation of this file.
1 <?php
35 class WikiRevision {
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 
190  public $fileIsTemp;
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 
439  return $this->contentHandler;
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...?
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  $prior = $dbw->selectField( 'revision', '1',
611  [ 'rev_page' => $pageId,
612  'rev_timestamp' => $dbw->timestamp( $this->timestamp ),
613  'rev_user_text' => $userText,
614  'rev_comment' => $this->getComment() ],
615  __METHOD__
616  );
617  if ( $prior ) {
618  // @todo FIXME: This could fail slightly for multiple matches :P
619  wfDebug( __METHOD__ . ": skipping existing revision for [[" .
620  $this->title->getPrefixedText() . "]], timestamp " . $this->timestamp . "\n" );
621  return false;
622  }
623  }
624 
625  if ( !$pageId ) {
626  // This seems to happen if two clients simultaneously try to import the
627  // same page
628  wfDebug( __METHOD__ . ': got invalid $pageId when importing revision of [[' .
629  $this->title->getPrefixedText() . ']], timestamp ' . $this->timestamp . "\n" );
630  return false;
631  }
632 
633  // Select previous version to make size diffs correct
634  // @todo This assumes that multiple revisions of the same page are imported
635  // in order from oldest to newest.
636  $prevId = $dbw->selectField( 'revision', 'rev_id',
637  [
638  'rev_page' => $pageId,
639  'rev_timestamp <= ' . $dbw->addQuotes( $dbw->timestamp( $this->timestamp ) ),
640  ],
641  __METHOD__,
642  [ 'ORDER BY' => [
643  'rev_timestamp DESC',
644  'rev_id DESC', // timestamp is not unique per page
645  ]
646  ]
647  );
648 
649  # @todo FIXME: Use original rev_id optionally (better for backups)
650  # Insert the row
651  $revision = new Revision( [
652  'title' => $this->title,
653  'page' => $pageId,
654  'content_model' => $this->getModel(),
655  'content_format' => $this->getFormat(),
656  // XXX: just set 'content' => $this->getContent()?
657  'text' => $this->getContent()->serialize( $this->getFormat() ),
658  'comment' => $this->getComment(),
659  'user' => $userId,
660  'user_text' => $userText,
661  'timestamp' => $this->timestamp,
662  'minor_edit' => $this->minor,
663  'parent_id' => $prevId,
664  ] );
665  $revision->insertOn( $dbw );
666  $changed = $page->updateIfNewerOn( $dbw, $revision );
667 
668  if ( $changed !== false && !$this->mNoUpdates ) {
669  wfDebug( __METHOD__ . ": running updates\n" );
670  // countable/oldcountable stuff is handled in WikiImporter::finishImportPage
671  $page->doEditUpdates(
672  $revision,
673  $user,
674  [ 'created' => $created, 'oldcountable' => 'no-change' ]
675  );
676  }
677 
678  return true;
679  }
680 
685  public function importLogItem() {
686  $dbw = wfGetDB( DB_MASTER );
687 
688  $user = $this->getUserObj() ?: User::newFromName( $this->getUser() );
689  if ( $user ) {
690  $userId = intval( $user->getId() );
691  $userText = $user->getName();
692  } else {
693  $userId = 0;
694  $userText = $this->getUser();
695  }
696 
697  # @todo FIXME: This will not record autoblocks
698  if ( !$this->getTitle() ) {
699  wfDebug( __METHOD__ . ": skipping invalid {$this->type}/{$this->action} log time, timestamp " .
700  $this->timestamp . "\n" );
701  return false;
702  }
703  # Check if it exists already
704  // @todo FIXME: Use original log ID (better for backups)
705  $prior = $dbw->selectField( 'logging', '1',
706  [ 'log_type' => $this->getType(),
707  'log_action' => $this->getAction(),
708  'log_timestamp' => $dbw->timestamp( $this->timestamp ),
709  'log_namespace' => $this->getTitle()->getNamespace(),
710  'log_title' => $this->getTitle()->getDBkey(),
711  'log_comment' => $this->getComment(),
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  $log_id = $dbw->nextSequenceValue( 'logging_log_id_seq' );
724  $data = [
725  'log_id' => $log_id,
726  'log_type' => $this->type,
727  'log_action' => $this->action,
728  'log_timestamp' => $dbw->timestamp( $this->timestamp ),
729  'log_user' => $userId,
730  'log_user_text' => $userText,
731  'log_namespace' => $this->getTitle()->getNamespace(),
732  'log_title' => $this->getTitle()->getDBkey(),
733  'log_comment' => $this->getComment(),
734  'log_params' => $this->params
735  ];
736  $dbw->insert( 'logging', $data, __METHOD__ );
737 
738  return true;
739  }
740 
745  public function importUpload() {
746  # Construct a file
747  $archiveName = $this->getArchiveName();
748  if ( $archiveName ) {
749  wfDebug( __METHOD__ . "Importing archived file as $archiveName\n" );
750  $file = OldLocalFile::newFromArchiveName( $this->getTitle(),
751  RepoGroup::singleton()->getLocalRepo(), $archiveName );
752  } else {
753  $file = wfLocalFile( $this->getTitle() );
754  $file->load( File::READ_LATEST );
755  wfDebug( __METHOD__ . 'Importing new file as ' . $file->getName() . "\n" );
756  if ( $file->exists() && $file->getTimestamp() > $this->getTimestamp() ) {
757  $archiveName = $file->getTimestamp() . '!' . $file->getName();
758  $file = OldLocalFile::newFromArchiveName( $this->getTitle(),
759  RepoGroup::singleton()->getLocalRepo(), $archiveName );
760  wfDebug( __METHOD__ . "File already exists; importing as $archiveName\n" );
761  }
762  }
763  if ( !$file ) {
764  wfDebug( __METHOD__ . ': Bad file for ' . $this->getTitle() . "\n" );
765  return false;
766  }
767 
768  # Get the file source or download if necessary
769  $source = $this->getFileSrc();
770  $autoDeleteSource = $this->isTempSrc();
771  if ( !strlen( $source ) ) {
772  $source = $this->downloadSource();
773  $autoDeleteSource = true;
774  }
775  if ( !strlen( $source ) ) {
776  wfDebug( __METHOD__ . ": Could not fetch remote file.\n" );
777  return false;
778  }
779 
780  $tmpFile = new TempFSFile( $source );
781  if ( $autoDeleteSource ) {
782  $tmpFile->autocollect();
783  }
784 
785  $sha1File = ltrim( sha1_file( $source ), '0' );
786  $sha1 = $this->getSha1();
787  if ( $sha1 && ( $sha1 !== $sha1File ) ) {
788  wfDebug( __METHOD__ . ": Corrupt file $source.\n" );
789  return false;
790  }
791 
792  $user = $this->getUserObj() ?: User::newFromName( $this->getUser() );
793 
794  # Do the actual upload
795  if ( $archiveName ) {
796  $status = $file->uploadOld( $source, $archiveName,
797  $this->getTimestamp(), $this->getComment(), $user );
798  } else {
799  $flags = 0;
800  $status = $file->upload( $source, $this->getComment(), $this->getComment(),
801  $flags, false, $this->getTimestamp(), $user );
802  }
803 
804  if ( $status->isGood() ) {
805  wfDebug( __METHOD__ . ": Successful\n" );
806  return true;
807  } else {
808  wfDebug( __METHOD__ . ': failed: ' . $status->getHTML() . "\n" );
809  return false;
810  }
811  }
812 
817  public function downloadSource() {
818  if ( !$this->config->get( 'EnableUploads' ) ) {
819  return false;
820  }
821 
822  $tempo = tempnam( wfTempDir(), 'download' );
823  $f = fopen( $tempo, 'wb' );
824  if ( !$f ) {
825  wfDebug( "IMPORT: couldn't write to temp file $tempo\n" );
826  return false;
827  }
828 
829  // @todo FIXME!
830  $src = $this->getSrc();
831  $data = Http::get( $src, [], __METHOD__ );
832  if ( !$data ) {
833  wfDebug( "IMPORT: couldn't fetch source $src\n" );
834  fclose( $f );
835  unlink( $tempo );
836  return false;
837  }
838 
839  fwrite( $f, $data );
840  fclose( $f );
841 
842  return $tempo;
843  }
844 
845 }
ContentHandler
A content handler knows how do deal with a specific type of content on a wiki page.
Definition: ContentHandler.php:49
ContentHandler\getForModelID
static getForModelID( $modelId)
Returns the ContentHandler singleton for the given model ID.
Definition: ContentHandler.php:293
WikiRevision\getUser
getUser()
Definition: WikiRevision.php:410
WikiRevision\$format
string $format
Definition: WikiRevision.php:92
WikiRevision\$filename
$filename
Definition: WikiRevision.php:169
RepoGroup\singleton
static singleton()
Get a RepoGroup instance.
Definition: RepoGroup.php:59
WikiRevision\$type
string $type
Definition: WikiRevision.php:134
content
per default it will return the text for text based content
Definition: contenthandler.txt:104
WikiRevision\setUserObj
setUserObj( $user)
Definition: WikiRevision.php:247
WikiRevision\getComment
getComment()
Definition: WikiRevision.php:483
WikiRevision\downloadSource
downloadSource()
Definition: WikiRevision.php:817
WikiRevision\setNoUpdates
setNoUpdates( $noupdates)
Definition: WikiRevision.php:378
WikiRevision\setComment
setComment( $text)
Definition: WikiRevision.php:287
WikiRevision\$userObj
User $userObj
Definition: WikiRevision.php:80
WikiRevision\isTempSrc
isTempSrc()
Definition: WikiRevision.php:526
WikiRevision\importUpload
importUpload()
Definition: WikiRevision.php:745
Title\clearCaches
static clearCaches()
Text form (spaces not underscores) of the main part.
Definition: Title.php:3363
WikiRevision\$user_text
string $user_text
Definition: WikiRevision.php:74
WikiRevision\getSrc
getSrc()
Definition: WikiRevision.php:499
text
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:12
WikiRevision\$size
int $size
Definition: WikiRevision.php:104
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1994
WikiRevision\getTitle
getTitle()
Definition: WikiRevision.php:386
WikiRevision\$user
int $user
Definition: WikiRevision.php:68
WikiRevision\getSha1
getSha1()
Definition: WikiRevision.php:507
$status
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist Do not use this to implement individual filters if they are compatible with the ChangesListFilter and ChangesListFilterGroup structure use sub classes of those in conjunction with the ChangesListSpecialPageStructuredFilters hook This hook can be used to implement filters that do not implement that or custom behavior that is not an individual filter e g Watchlist and Watchlist you will want to construct new ChangesListBooleanFilter or ChangesListStringOptionsFilter objects When constructing you specify which group they belong to You can reuse existing or create your you must register them with $special registerFilterGroup removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1049
WikiRevision\setSha1Base36
setSha1Base36( $sha1base36)
Definition: WikiRevision.php:322
WikiRevision\getFilename
getFilename()
Definition: WikiRevision.php:534
WikiRevision\$model
string $model
Definition: WikiRevision.php:86
WikiRevision\setText
setText( $text)
Definition: WikiRevision.php:279
serialize
serialize()
Definition: ApiMessage.php:177
WikiRevision\$importer
$importer
Definition: WikiRevision.php:42
WikiRevision\setFilename
setFilename( $filename)
Definition: WikiRevision.php:330
User\newFromName
static newFromName( $name, $validate='valid')
Static factory method for creation from username.
Definition: User.php:556
WikiRevision\setUsername
setUsername( $user)
Definition: WikiRevision.php:239
User
User
Definition: All_system_messages.txt:425
WikiRevision\getType
getType()
Definition: WikiRevision.php:558
WikiRevision\__construct
__construct(Config $config)
Definition: WikiRevision.php:198
WikiRevision\getModel
getModel()
Definition: WikiRevision.php:459
WikiRevision\$isTemp
bool $isTemp
Definition: WikiRevision.php:182
WikiRevision\$minor
bool $minor
Definition: WikiRevision.php:128
php
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:35
WikiRevision\$params
string $params
Definition: WikiRevision.php:146
Revision
Definition: Revision.php:33
WikiRevision\$mNoUpdates
bool $mNoUpdates
Definition: WikiRevision.php:193
Config
Interface for configuration instances.
Definition: Config.php:28
WikiRevision\getParams
getParams()
Definition: WikiRevision.php:574
WikiRevision\setUserIP
setUserIP( $ip)
Definition: WikiRevision.php:255
MWException
MediaWiki exception.
Definition: MWException.php:26
WikiRevision\$content
Content $content
Definition: WikiRevision.php:110
WikiPage\factory
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:120
WikiRevision\getFormat
getFormat()
Definition: WikiRevision.php:471
WikiRevision\$contentHandler
ContentHandler $contentHandler
Definition: WikiRevision.php:116
WikiRevision\getTimestamp
getTimestamp()
Definition: WikiRevision.php:402
WikiRevision\setModel
setModel( $model)
Definition: WikiRevision.php:263
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:3060
$page
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2536
WikiRevision\setMinor
setMinor( $minor)
Definition: WikiRevision.php:295
DB_MASTER
const DB_MASTER
Definition: defines.php:26
WikiRevision\$action
string $action
Definition: WikiRevision.php:140
wfDebug
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
Definition: GlobalFunctions.php:999
WikiRevision\setID
setID( $id)
Definition: WikiRevision.php:222
captcha-old.action
action
Definition: captcha-old.py:189
WikiRevision\getArchiveName
getArchiveName()
Definition: WikiRevision.php:542
WikiRevision\$src
mixed $src
Definition: WikiRevision.php:175
Http\get
static get( $url, $options=[], $caller=__METHOD__)
Simple wrapper for Http::request( 'GET' )
Definition: Http.php:98
WikiRevision\setFormat
setFormat( $format)
Definition: WikiRevision.php:271
WikiRevision\getMinor
getMinor()
Definition: WikiRevision.php:491
WikiRevision\getText
getText()
Definition: WikiRevision.php:426
WikiRevision\getContent
getContent()
Definition: WikiRevision.php:446
WikiRevision\$text
string $text
Definition: WikiRevision.php:98
WikiRevision\$sha1base36
bool string $sha1base36
Definition: WikiRevision.php:158
WikiRevision\setType
setType( $type)
Definition: WikiRevision.php:354
title
title
Definition: parserTests.txt:211
WikiRevision\$timestamp
string $timestamp
Definition: WikiRevision.php:60
TempFSFile
This class is used to hold the location and do limited manipulation of files stored temporarily (this...
Definition: TempFSFile.php:30
WikiRevision\getContentHandler
getContentHandler()
Definition: WikiRevision.php:434
WikiRevision\setTitle
setTitle( $title)
Definition: WikiRevision.php:207
$handler
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:783
WikiRevision\setTimestamp
setTimestamp( $ts)
Definition: WikiRevision.php:230
format
if the prop value should be in the metadata multi language array format
Definition: hooks.txt:1630
Content
Base interface for content objects.
Definition: Content.php:34
WikiRevision\setParams
setParams( $params)
Definition: WikiRevision.php:370
Title
Represents a title within MediaWiki.
Definition: Title.php:39
WikiRevision\importLogItem
importLogItem()
Definition: WikiRevision.php:685
WikiRevision\$fileIsTemp
$fileIsTemp
Definition: WikiRevision.php:190
WikiRevision\setSrc
setSrc( $src)
Definition: WikiRevision.php:303
wfTempDir
wfTempDir()
Tries to get the system directory for temporary files.
Definition: GlobalFunctions.php:2061
type
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:22
WikiRevision
Represents a revision, log entry or upload during the import process.
Definition: WikiRevision.php:35
WikiRevision\setFileSrc
setFileSrc( $src, $isTemp)
Definition: WikiRevision.php:312
WikiRevision\setArchiveName
setArchiveName( $archiveName)
Definition: WikiRevision.php:338
WikiRevision\getFileSrc
getFileSrc()
Definition: WikiRevision.php:518
WikiRevision\$title
Title $title
Definition: WikiRevision.php:48
WikiRevision\getUserObj
getUserObj()
Definition: WikiRevision.php:418
WikiRevision\importOldRevision
importOldRevision()
Definition: WikiRevision.php:582
$source
$source
Definition: mwdoc-filter.php:45
captcha-old.filename
string filename
Definition: captcha-old.py:246
WikiRevision\getID
getID()
Definition: WikiRevision.php:394
WikiRevision\setAction
setAction( $action)
Definition: WikiRevision.php:362
WikiRevision\$comment
string $comment
Definition: WikiRevision.php:122
WikiRevision\$archiveName
string $archiveName
Definition: WikiRevision.php:164
WikiRevision\setSize
setSize( $size)
Definition: WikiRevision.php:346
User
The User object encapsulates all of the user-specific settings (user_id, name, rights,...
Definition: User.php:50
wfLocalFile
wfLocalFile( $title)
Get an object referring to a locally registered file.
Definition: GlobalFunctions.php:3112
WikiRevision\$id
int $id
Definition: WikiRevision.php:54
WikiRevision\getSize
getSize()
Definition: WikiRevision.php:550
WikiRevision\$config
$config
Definition: WikiRevision.php:196
WikiRevision\getAction
getAction()
Definition: WikiRevision.php:566
OldLocalFile\newFromArchiveName
static newFromArchiveName( $title, $repo, $archiveName)
Definition: OldLocalFile.php:61
WikiRevision\$fileSrc
string $fileSrc
Definition: WikiRevision.php:152
$flags
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2749