2022-04-04 21:21:49 +00:00
|
|
|
import { NpmRegistry } from './smartnpm.classes.npmregistry.js';
|
|
|
|
import * as plugins from './smartnpm.plugins.js';
|
2021-04-26 08:30:02 +00:00
|
|
|
|
2021-05-10 16:12:11 +00:00
|
|
|
|
|
|
|
export interface ICacheDescriptor {
|
|
|
|
registryUrl: string;
|
|
|
|
packageName: string;
|
|
|
|
filePath: string;
|
|
|
|
distTag?: string;
|
|
|
|
version?: string;
|
|
|
|
}
|
|
|
|
|
2021-04-26 08:30:02 +00:00
|
|
|
export class RegistryCache {
|
|
|
|
npmregistryRef: NpmRegistry;
|
|
|
|
public levelCache: plugins.levelcache.LevelCache;
|
|
|
|
|
|
|
|
constructor(npmRegistryRefArg: NpmRegistry) {
|
|
|
|
this.npmregistryRef = npmRegistryRefArg;
|
|
|
|
this.levelCache = new plugins.levelcache.LevelCache({
|
|
|
|
cacheId: encodeURIComponent(this.npmregistryRef.options.npmRegistryUrl),
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-10 16:12:11 +00:00
|
|
|
public async getCachedFile (cacheDescriptorArg: ICacheDescriptor): Promise<plugins.smartfile.Smartfile> {
|
|
|
|
const cacheEntry = await this.levelCache.retrieveCacheEntryByKey(this.getCacheDescriptorAsString(cacheDescriptorArg));
|
2021-04-26 08:30:02 +00:00
|
|
|
if (cacheEntry) {
|
|
|
|
return plugins.smartfile.Smartfile.fromFoldedJson(cacheEntry.contents.toString());
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-05-10 16:12:11 +00:00
|
|
|
public async cacheSmartFile (cacheDescriptorArg: ICacheDescriptor, smartfileArg: plugins.smartfile.Smartfile) {
|
|
|
|
if (smartfileArg && cacheDescriptorArg.version) {
|
|
|
|
await this.levelCache.storeCacheEntryByKey(this.getCacheDescriptorAsString(cacheDescriptorArg), new plugins.levelcache.CacheEntry({
|
|
|
|
contents: Buffer.from(smartfileArg.foldToJson()),
|
|
|
|
ttl: plugins.smarttime.getMilliSecondsFromUnits({hours: 1})
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
await this.levelCache.storeCacheEntryByKey(this.getCacheDescriptorAsString(cacheDescriptorArg), new plugins.levelcache.CacheEntry({
|
2021-04-29 20:44:47 +00:00
|
|
|
contents: Buffer.from(smartfileArg.foldToJson()),
|
2021-05-10 16:12:11 +00:00
|
|
|
ttl: plugins.smarttime.getMilliSecondsFromUnits({minutes: 1})
|
2021-04-29 20:44:47 +00:00
|
|
|
}));
|
|
|
|
}
|
2021-04-26 08:30:02 +00:00
|
|
|
}
|
2021-05-10 16:12:11 +00:00
|
|
|
|
|
|
|
public getCacheDescriptorAsString(cacheDescriptorArg?: ICacheDescriptor) {
|
|
|
|
return `${cacheDescriptorArg.registryUrl}//+//${cacheDescriptorArg.packageName}//+//${cacheDescriptorArg.filePath}//+//${cacheDescriptorArg.distTag || cacheDescriptorArg.version}`;
|
|
|
|
}
|
2021-04-26 08:30:02 +00:00
|
|
|
}
|