/** * @license * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { StorageCache } from '../storage/storage_cache'; import { FetchResponse, RemoteConfigFetchClient, FetchRequest } from './remote_config_fetch_client'; import { Storage } from '../storage/storage'; import { Logger } from '@firebase/logger'; /** * Implements the {@link RemoteConfigClient} abstraction with success response caching. * *
Comparable to the browser's Cache API for responses, but the Cache API requires a Service * Worker, which requires HTTPS, which would significantly complicate SDK installation. Also, the * Cache API doesn't support matching entries by time. */ export class CachingClient implements RemoteConfigFetchClient { constructor( private readonly client: RemoteConfigFetchClient, private readonly storage: Storage, private readonly storageCache: StorageCache, private readonly logger: Logger ) {} /** * Returns true if the age of the cached fetched configs is less than or equal to * {@link Settings#minimumFetchIntervalInSeconds}. * *
This is comparable to passing `headers = { 'Cache-Control': max-age Visible for testing.
*/
isCachedDataFresh(
cacheMaxAgeMillis: number,
lastSuccessfulFetchTimestampMillis: number | undefined
): boolean {
// Cache can only be fresh if it's populated.
if (!lastSuccessfulFetchTimestampMillis) {
this.logger.debug('Config fetch cache check. Cache unpopulated.');
return false;
}
// Calculates age of cache entry.
const cacheAgeMillis = Date.now() - lastSuccessfulFetchTimestampMillis;
const isCachedDataFresh = cacheAgeMillis <= cacheMaxAgeMillis;
this.logger.debug(
'Config fetch cache check.' +
` Cache age millis: ${cacheAgeMillis}.` +
` Cache max age millis (minimumFetchIntervalMillis setting): ${cacheMaxAgeMillis}.` +
` Is cache hit: ${isCachedDataFresh}.`
);
return isCachedDataFresh;
}
async fetch(request: FetchRequest): Promise