Merge "doc: SpanInterface: more dev-friendly comments"
[mediawiki.git] / maintenance / storage / dumpRev.php
blob67d82174670ec7f7fbea0d6ab6d4c72d8fa6e031
1 <?php
2 /**
3 * Get the text of a revision, resolving external storage if needed.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Maintenance ExternalStorage
24 use MediaWiki\Revision\SlotRecord;
26 // @codeCoverageIgnoreStart
27 require_once __DIR__ . '/../Maintenance.php';
28 // @codeCoverageIgnoreEnd
30 /**
31 * Maintenance script that gets the text of a revision,
32 * resolving external storage if needed.
34 * @ingroup Maintenance ExternalStorage
36 class DumpRev extends Maintenance {
37 public function __construct() {
38 parent::__construct();
39 $this->addArg( 'rev-id', 'Revision ID', true );
42 public function execute() {
43 $id = (int)$this->getArg( 0 );
45 $lookup = $this->getServiceContainer()->getRevisionLookup();
46 $rev = $lookup->getRevisionById( $id );
47 if ( !$rev ) {
48 $this->fatalError( "Row not found" );
51 $content = $rev->getContent( SlotRecord::MAIN );
52 if ( !$content ) {
53 $this->fatalError( "Text not found" );
56 $blobStore = $this->getServiceContainer()->getBlobStore();
57 $slot = $rev->getSlot( SlotRecord::MAIN );
58 $text = $blobStore->getBlob( $slot->getAddress() );
60 $this->output( "Text length: " . strlen( $text ) . "\n" );
61 $this->output( substr( $text, 0, 100 ) . "\n" );
65 // @codeCoverageIgnoreStart
66 $maintClass = DumpRev::class;
67 require_once RUN_MAINTENANCE_IF_MAIN;
68 // @codeCoverageIgnoreEnd