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 getMasterDB() { if ( !isset( $this->dbConn ) ) { $func = $this->getDBFactory(); $this->dbConn = $func( DB_PRIMARY ); } return $this->dbConn; } public function getReplicaDB() { return $this->getMasterDB(); } /** * @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 ) { return Database::factory( $type, $params ); }; } protected function assertWritableRepo() { throw new MWException( static::class . ': write operations are not supported.' ); } /** * Return information about the repository. * * @return array * @since 1.22 */ public function getInfo() { return FileRepo::getInfo(); } public function getBlobStore(): ?BlobStore { return null; } }