1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-03-14 00:15:52 +01:00

fix: always set instanceid in uiconfig

This commit is contained in:
Christopher Kolstad 2021-03-15 08:46:03 +01:00
parent 1152272ed6
commit 3e2ec968f2

View File

@ -12,31 +12,41 @@ class VersionService {
oss: version,
enterprise: enterpriseVersion,
};
if (versionCheck) {
if (versionCheck.url) {
this.versionCheckUrl = versionCheck.url;
}
this.setInstanceId();
if (versionCheck && versionCheck.url) {
this.versionCheckUrl = versionCheck.url;
if (versionCheck.enable === 'true') {
this.enabled = true;
this.checkLatestVersion();
setInterval(this.checkLatestVersion, TWO_DAYS);
this.checkLatestVersion(this.instanceId);
setInterval(
() => this.checkLatestVersion(this.instanceId),
TWO_DAYS,
);
} else {
this.enabled = false;
}
}
}
async checkLatestVersion() {
if (this.enabled) {
async setInstanceId() {
try {
const { id } = await this.settingStore.get('instanceInfo');
this.instanceId = id;
return id;
} catch (err) {
this.logger.warn('Could not find instanceInfo');
return undefined;
}
}
async checkLatestVersion(instanceId) {
if (this.enabled) {
try {
const data = await fetch(this.versionCheckUrl, {
method: 'POST',
body: JSON.stringify({
versions: this.current,
id,
instanceId,
}),
headers: { 'Content-Type': 'application/json' },
}).then(res => res.json());