*/ class SpecialWithoutInterwiki extends PageQueryPage { /** @var string */ private $prefix = ''; private NamespaceInfo $namespaceInfo; /** * @param NamespaceInfo $namespaceInfo * @param IConnectionProvider $dbProvider * @param LinkBatchFactory $linkBatchFactory * @param LanguageConverterFactory $languageConverterFactory */ public function __construct( NamespaceInfo $namespaceInfo, IConnectionProvider $dbProvider, LinkBatchFactory $linkBatchFactory, LanguageConverterFactory $languageConverterFactory ) { parent::__construct( 'Withoutinterwiki' ); $this->namespaceInfo = $namespaceInfo; $this->setDatabaseProvider( $dbProvider ); $this->setLinkBatchFactory( $linkBatchFactory ); $this->setLanguageConverter( $languageConverterFactory->getLanguageConverter( $this->getContentLanguage() ) ); } public function execute( $par ) { $prefix = $this->getRequest()->getVal( 'prefix', $par ); $this->prefix = $prefix !== null ? Title::capitalize( $prefix, NS_MAIN ) : ''; parent::execute( $par ); } protected function getPageHeader() { # Do not show useless input form if special page is cached if ( $this->isCached() ) { return ''; } $formDescriptor = [ 'prefix' => [ 'label-message' => 'allpagesprefix', 'name' => 'prefix', 'id' => 'wiprefix', 'type' => 'text', 'size' => 20, 'default' => $this->prefix ] ]; HTMLForm::factory( 'ooui', $formDescriptor, $this->getContext() ) ->setWrapperLegend( '' ) ->setSubmitTextMsg( 'withoutinterwiki-submit' ) ->setMethod( 'get' ) ->prepareForm() ->displayForm( false ); return ''; } protected function sortDescending() { return false; } protected function getOrderFields() { return [ 'page_namespace', 'page_title' ]; } public function isExpensive() { return true; } public function isSyndicated() { return false; } public function getQueryInfo() { $query = [ 'tables' => [ 'page', 'langlinks' ], 'fields' => [ 'namespace' => 'page_namespace', 'title' => 'page_title', ], 'conds' => [ 'll_title' => null, 'page_namespace' => $this->namespaceInfo->getContentNamespaces(), 'page_is_redirect' => 0 ], 'join_conds' => [ 'langlinks' => [ 'LEFT JOIN', 'll_from = page_id' ] ] ]; if ( $this->prefix ) { $dbr = $this->getDatabaseProvider()->getReplicaDatabase(); $query['conds'][] = $dbr->expr( 'page_title', IExpression::LIKE, new LikeValue( $this->prefix, $dbr->anyString() ) ); } return $query; } protected function getGroupName() { return 'maintenance'; } } /** * Retain the old class name for backwards compatibility. * @deprecated since 1.41 */ class_alias( SpecialWithoutInterwiki::class, 'SpecialWithoutInterwiki' );