@splitsoftware/splitio-commons
Version:
Split JavaScript SDK common components
245 lines (190 loc) • 7.3 kB
text/typescript
import { ISplit } from '../../dtos/types';
import { AbstractSplitsCacheSync, usesSegments } from '../AbstractSplitsCacheSync';
import { isFiniteNumber, toNumber, isNaNNumber } from '../../utils/lang';
import { KeyBuilderCS } from '../KeyBuilderCS';
import { ILogger } from '../../logger/types';
import { LOG_PREFIX } from './constants';
import { ISettings } from '../../types';
import { setToArray } from '../../utils/lang/sets';
/**
* ISplitsCacheSync implementation that stores split definitions in browser LocalStorage.
*/
export class SplitsCacheInLocal extends AbstractSplitsCacheSync {
private readonly keys: KeyBuilderCS;
private readonly log: ILogger;
private readonly flagSetsFilter: string[];
private hasSync?: boolean;
constructor(settings: ISettings, keys: KeyBuilderCS) {
super();
this.keys = keys;
this.log = settings.log;
this.flagSetsFilter = settings.sync.__splitFiltersValidation.groupedFilters.bySet;
}
private _decrementCount(key: string) {
const count = toNumber(localStorage.getItem(key)) - 1;
// @ts-expect-error
if (count > 0) localStorage.setItem(key, count);
else localStorage.removeItem(key);
}
private _decrementCounts(split: ISplit) {
try {
const ttKey = this.keys.buildTrafficTypeKey(split.trafficTypeName);
this._decrementCount(ttKey);
if (usesSegments(split)) {
const segmentsCountKey = this.keys.buildSplitsWithSegmentCountKey();
this._decrementCount(segmentsCountKey);
}
} catch (e) {
this.log.error(LOG_PREFIX + e);
}
}
private _incrementCounts(split: ISplit) {
try {
const ttKey = this.keys.buildTrafficTypeKey(split.trafficTypeName);
// @ts-expect-error
localStorage.setItem(ttKey, toNumber(localStorage.getItem(ttKey)) + 1);
if (usesSegments(split)) {
const segmentsCountKey = this.keys.buildSplitsWithSegmentCountKey();
// @ts-expect-error
localStorage.setItem(segmentsCountKey, toNumber(localStorage.getItem(segmentsCountKey)) + 1);
}
} catch (e) {
this.log.error(LOG_PREFIX + e);
}
}
/**
* Removes all splits cache related data from localStorage (splits, counters, changeNumber and lastUpdated).
* We cannot simply call `localStorage.clear()` since that implies removing user items from the storage.
*/
clear() {
// collect item keys
const len = localStorage.length;
const accum = [];
for (let cur = 0; cur < len; cur++) {
const key = localStorage.key(cur);
if (key != null && this.keys.isSplitsCacheKey(key)) accum.push(key);
}
// remove items
accum.forEach(key => {
localStorage.removeItem(key);
});
this.hasSync = false;
}
addSplit(split: ISplit) {
try {
const name = split.name;
const splitKey = this.keys.buildSplitKey(name);
const splitFromLocalStorage = localStorage.getItem(splitKey);
const previousSplit = splitFromLocalStorage ? JSON.parse(splitFromLocalStorage) : null;
if (previousSplit) {
this._decrementCounts(previousSplit);
this.removeFromFlagSets(previousSplit.name, previousSplit.sets);
}
localStorage.setItem(splitKey, JSON.stringify(split));
this._incrementCounts(split);
this.addToFlagSets(split);
return true;
} catch (e) {
this.log.error(LOG_PREFIX + e);
return false;
}
}
removeSplit(name: string): boolean {
try {
const split = this.getSplit(name);
if (!split) return false;
localStorage.removeItem(this.keys.buildSplitKey(name));
this._decrementCounts(split);
this.removeFromFlagSets(split.name, split.sets);
return true;
} catch (e) {
this.log.error(LOG_PREFIX + e);
return false;
}
}
getSplit(name: string): ISplit | null {
const item = localStorage.getItem(this.keys.buildSplitKey(name));
return item && JSON.parse(item);
}
setChangeNumber(changeNumber: number): boolean {
try {
localStorage.setItem(this.keys.buildSplitsTillKey(), changeNumber + '');
// update "last updated" timestamp with current time
localStorage.setItem(this.keys.buildLastUpdatedKey(), Date.now() + '');
this.hasSync = true;
return true;
} catch (e) {
this.log.error(LOG_PREFIX + e);
return false;
}
}
getChangeNumber(): number {
const n = -1;
let value: string | number | null = localStorage.getItem(this.keys.buildSplitsTillKey());
if (value !== null) {
value = parseInt(value, 10);
return isNaNNumber(value) ? n : value;
}
return n;
}
getSplitNames(): string[] {
const len = localStorage.length;
const accum = [];
let cur = 0;
while (cur < len) {
const key = localStorage.key(cur);
if (key != null && this.keys.isSplitKey(key)) accum.push(this.keys.extractKey(key));
cur++;
}
return accum;
}
trafficTypeExists(trafficType: string): boolean {
const ttCount = toNumber(localStorage.getItem(this.keys.buildTrafficTypeKey(trafficType)));
return isFiniteNumber(ttCount) && ttCount > 0;
}
usesSegments() {
// If cache hasn't been synchronized with the cloud, assume we need them.
if (!this.hasSync) return true;
const storedCount = localStorage.getItem(this.keys.buildSplitsWithSegmentCountKey());
const splitsWithSegmentsCount = storedCount === null ? 0 : toNumber(storedCount);
return isFiniteNumber(splitsWithSegmentsCount) ?
splitsWithSegmentsCount > 0 :
true;
}
getNamesByFlagSets(flagSets: string[]): Set<string>[] {
return flagSets.map(flagSet => {
const flagSetKey = this.keys.buildFlagSetKey(flagSet);
const flagSetFromLocalStorage = localStorage.getItem(flagSetKey);
return new Set(flagSetFromLocalStorage ? JSON.parse(flagSetFromLocalStorage) : []);
});
}
private addToFlagSets(featureFlag: ISplit) {
if (!featureFlag.sets) return;
featureFlag.sets.forEach(featureFlagSet => {
if (this.flagSetsFilter.length > 0 && !this.flagSetsFilter.some(filterFlagSet => filterFlagSet === featureFlagSet)) return;
const flagSetKey = this.keys.buildFlagSetKey(featureFlagSet);
const flagSetFromLocalStorage = localStorage.getItem(flagSetKey);
const flagSetCache = new Set(flagSetFromLocalStorage ? JSON.parse(flagSetFromLocalStorage) : []);
flagSetCache.add(featureFlag.name);
localStorage.setItem(flagSetKey, JSON.stringify(setToArray(flagSetCache)));
});
}
private removeFromFlagSets(featureFlagName: string, flagSets?: string[]) {
if (!flagSets) return;
flagSets.forEach(flagSet => {
this.removeNames(flagSet, featureFlagName);
});
}
private removeNames(flagSetName: string, featureFlagName: string) {
const flagSetKey = this.keys.buildFlagSetKey(flagSetName);
const flagSetFromLocalStorage = localStorage.getItem(flagSetKey);
if (!flagSetFromLocalStorage) return;
const flagSetCache = new Set(JSON.parse(flagSetFromLocalStorage));
flagSetCache.delete(featureFlagName);
if (flagSetCache.size === 0) {
localStorage.removeItem(flagSetKey);
return;
}
localStorage.setItem(flagSetKey, JSON.stringify(setToArray(flagSetCache)));
}
}