1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?php
use MediaWiki\MediaWikiServices;
use MediaWiki\Revision\RevisionRecord;
use MediaWiki\Title\Title;
use MediaWiki\User\User;
use Wikimedia\ObjectCache\WANObjectCache;
/**
* Helper class to reduce typing in manual debugging tools like shell.php.
* @internal must not be used in code, anywhere
*/
class MW {
public static function srv(): MediaWikiServices {
return MediaWikiServices::getInstance();
}
public static function wan(): WANObjectCache {
return self::srv()->getMainWANObjectCache();
}
public static function user( string $username ): User {
$user = self::srv()->getUserFactory()->newFromName( $username );
if ( !$user ) {
throw new DomainException( "Invalid username: $username" );
}
// preload so dumping the object is more informative
$user->load();
return $user;
}
public static function title( string $title ): Title {
$title = self::srv()->getTitleFactory()->newFromTextThrow( $title );
// preload so dumping the object is more informative
$title->getArticleID();
return $title;
}
public static function file( string $filename ): File {
$file = self::srv()->getRepoGroup()->findFile( $filename );
$file->load();
return $file;
}
public static function page( string $title ): WikiPage {
$page = self::srv()->getWikiPageFactory()->newFromTitle( self::title( $title ) );
$page->loadPageData();
return $page;
}
public static function rev( int $id ): ?RevisionRecord {
return self::srv()->getRevisionStore()->getRevisionById( $id );
}
}
|