mirror of https://github.com/renovatebot/renovate
78 lines
1.9 KiB
TypeScript
78 lines
1.9 KiB
TypeScript
import { DateTime } from 'luxon';
|
|
import { logger } from '../../../logger';
|
|
import type { DistroInfo, DistroInfoRecordWithVersion } from '../distro';
|
|
|
|
const refreshInterval = { days: 1 };
|
|
|
|
export class RollingReleasesData {
|
|
private ltsToVer = new Map<string, DistroInfoRecordWithVersion>();
|
|
private verToLts = new Map<string, DistroInfoRecordWithVersion>();
|
|
private timestamp = DateTime.fromMillis(0).toUTC(); // start of epoch
|
|
private distroInfo: DistroInfo;
|
|
|
|
constructor(distroInfo: DistroInfo) {
|
|
this.distroInfo = distroInfo;
|
|
}
|
|
|
|
getVersionByLts(input: string): string {
|
|
this.build();
|
|
const schedule = this.ltsToVer.get(input);
|
|
if (schedule) {
|
|
return schedule.version;
|
|
}
|
|
return input;
|
|
}
|
|
|
|
getLtsByVersion(input: string): string {
|
|
this.build();
|
|
const di = this.verToLts.get(input);
|
|
if (di) {
|
|
return di.series;
|
|
}
|
|
return input;
|
|
}
|
|
|
|
has(version: string): boolean {
|
|
this.build();
|
|
return this.ltsToVer.has(version);
|
|
}
|
|
|
|
schedule(version: string): DistroInfoRecordWithVersion | undefined {
|
|
this.build();
|
|
let schedule: DistroInfoRecordWithVersion | undefined = undefined;
|
|
if (this.verToLts.has(version)) {
|
|
schedule = this.verToLts.get(version);
|
|
}
|
|
if (this.ltsToVer.has(version)) {
|
|
schedule = this.ltsToVer.get(version);
|
|
}
|
|
return schedule;
|
|
}
|
|
|
|
private build(): void {
|
|
const now = DateTime.now().toUTC();
|
|
if (now < this.timestamp.plus(refreshInterval)) {
|
|
return;
|
|
}
|
|
logger.debug('RollingReleasesData - data written');
|
|
this.timestamp = now;
|
|
for (let i = 0; i < 3; i++) {
|
|
const di = this.distroInfo.getNLatest(i);
|
|
|
|
// istanbul ignore if: should never happen
|
|
if (!di) {
|
|
return;
|
|
}
|
|
|
|
let prefix = '';
|
|
for (let j = 0; j < i; j++) {
|
|
prefix += 'old';
|
|
}
|
|
di.series = prefix + 'stable';
|
|
|
|
this.ltsToVer.set(di.series, di);
|
|
this.verToLts.set(di.version, di);
|
|
}
|
|
}
|
|
}
|