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->hasSharedCache = $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_MASTER ); } 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 function ( $index ) use ( $type, $params ) { return Database::factory( $type, $params ); }; } /** * @return bool */ private function hasSharedCache() { return $this->hasSharedCache; } public function getSharedCacheKey( ...$args ) { if ( $this->hasSharedCache() ) { return $this->wanCache->makeGlobalKey( $this->dbDomain, ...$args ); } else { return false; } } 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(); } }