dbType = $info['dbType']; $this->dbServer = $info['dbServer']; $this->dbUser = $info['dbUser']; $this->dbPassword = $info['dbPassword']; $this->dbName = $info['dbName']; $this->dbFlags = $info['dbFlags']; $this->tablePrefix = $info['tablePrefix']; $this->hasAccessibleSharedCache = $info['hasSharedCache']; $dbDomain = new DatabaseDomain( $this->dbName, null, $this->tablePrefix ); $this->dbDomain = $dbDomain->getId(); } public function getPrimaryDB() { if ( !isset( $this->dbConn ) ) { $func = $this->getDBFactory(); $this->dbConn = $func( DB_PRIMARY ); } return $this->dbConn; } public function getReplicaDB() { return $this->getPrimaryDB(); } /** * @return Closure */ protected function getDBFactory() { $type = $this->dbType; $params = [ 'host' => $this->dbServer, 'user' => $this->dbUser, 'password' => $this->dbPassword, 'dbname' => $this->dbName, 'flags' => $this->dbFlags, 'tablePrefix' => $this->tablePrefix ]; return static function ( $index ) use ( $type, $params ) { $factory = MediaWikiServices::getInstance()->getDatabaseFactory(); return $factory->create( $type, $params ); }; } /** * @return never */ protected function assertWritableRepo() { throw new LogicException( static::class . ': write operations are not supported.' ); } public function getBlobStore(): ?BlobStore { return null; } }