SDA-4182: Add GPOs to auto update channel (#1896)

This commit is contained in:
NguyenTranHoangSym 2023-07-18 16:07:50 +07:00 committed by GitHub
parent 7d23cd60f8
commit 15056f16ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 278 additions and 110 deletions

View File

@ -3,6 +3,7 @@
"autoUpdateUrl": "",
"autoUpdateChannel": "latest",
"isAutoUpdateEnabled": true,
"forceAutoUpdate": false,
"autoUpdateCheckInterval": "30",
"enableBrowserLogin": false,
"browserLoginAutoConnect": false,

View File

@ -0,0 +1,44 @@
import { retrieveWindowsRegistry } from '../src/app/registry-handler';
import {
EChannelRegistry,
RegistryStore,
} from '../src/app/stores/registry-store';
let mockChannel = { value: '', type: 'REG_SZ' };
jest.mock('winreg', () => {
return jest.fn().mockImplementation(() => {
return {
get: (_file, callback) => callback(null, mockChannel),
};
});
});
jest.mock('../src/common/env', () => {
return {
isWindowsOS: true,
isLinux: false,
isMac: false,
isDevEnv: true,
};
});
describe('Windows Registry', () => {
beforeEach(() => {
jest.clearAllMocks().resetModules();
});
it('it should return channel - latest', async () => {
mockChannel.value = 'latest';
await retrieveWindowsRegistry();
const registry = RegistryStore.getRegistry();
expect(registry.currentChannel).toBe(EChannelRegistry.LATEST);
});
it('it should return channel - beta', async () => {
mockChannel.value = 'beta';
await retrieveWindowsRegistry();
const registry = RegistryStore.getRegistry();
expect(registry.currentChannel).toBe(EChannelRegistry.BETA);
});
});

View File

@ -7,6 +7,8 @@ import { logger } from '../common/logger';
import { isUrl } from '../common/utils';
import { whitelistHandler } from '../common/whitelist-handler';
import { config } from './config-handler';
import { retrieveWindowsRegistry } from './registry-handler';
import { EChannelRegistry, RegistryStore } from './stores/registry-store';
import { windowHandler } from './window-handler';
const DEFAULT_AUTO_UPDATE_CHANNEL = 'client-bff/sda-update';
@ -23,7 +25,7 @@ export class AutoUpdate {
private autoUpdateTrigger: AutoUpdateTrigger | undefined = undefined;
constructor() {
const opts = this.getGenericServerOptions();
this.getGenericServerOptions().then((opts) => {
if (isMac) {
this.autoUpdater = new MacUpdater(opts);
} else if (isWindowsOS) {
@ -58,6 +60,22 @@ export class AutoUpdate {
const { autoUpdateChannel } = config.getConfigFields([
'autoUpdateChannel',
]);
let finalAutoUpdateChannel = autoUpdateChannel;
if (isWindowsOS) {
const registryAutoUpdate = RegistryStore.getRegistry();
const identifiedChannelFromRegistry = [
EChannelRegistry.BETA,
EChannelRegistry.LATEST,
].includes(registryAutoUpdate.currentChannel)
? registryAutoUpdate.currentChannel
: '';
if (identifiedChannelFromRegistry) {
finalAutoUpdateChannel = identifiedChannelFromRegistry;
}
}
const { installVariant } = config.getConfigFields(['installVariant']);
this.autoUpdater.on('update-available', (info) => {
const mainWebContents = windowHandler.mainWebContents;
@ -69,7 +87,7 @@ export class AutoUpdate {
data: {
...info,
autoUpdateTrigger: this.autoUpdateTrigger,
autoUpdateChannel,
autoUpdateChannel: finalAutoUpdateChannel,
installVariant,
channelConfigLocation: null,
sessionStartDatetime: null,
@ -94,7 +112,7 @@ export class AutoUpdate {
data: {
...info,
autoUpdateTrigger: this.autoUpdateTrigger,
autoUpdateChannel,
autoUpdateChannel: finalAutoUpdateChannel,
installVariant,
channelConfigLocation: null,
sessionStartDatetime: null,
@ -117,7 +135,7 @@ export class AutoUpdate {
data: {
...info,
autoUpdateTrigger: this.autoUpdateTrigger,
autoUpdateChannel,
autoUpdateChannel: finalAutoUpdateChannel,
installVariant,
channelConfigLocation: null,
sessionStartDatetime: null,
@ -139,6 +157,7 @@ export class AutoUpdate {
);
});
}
});
}
/**
@ -173,7 +192,7 @@ export class AutoUpdate {
this.autoUpdateTrigger = trigger;
logger.info('auto-update-handler: Checking for updates', trigger);
if (this.autoUpdater) {
const opts: GenericServerOptions = this.getGenericServerOptions();
const opts: GenericServerOptions = await this.getGenericServerOptions();
this.autoUpdater.setFeedURL(opts);
const updateCheckResult = await this.autoUpdater.checkForUpdates();
logger.info('auto-update-handler: ', updateCheckResult);
@ -221,16 +240,31 @@ export class AutoUpdate {
return updateUrl;
};
private getGenericServerOptions = (): GenericServerOptions => {
private getGenericServerOptions = async (): Promise<GenericServerOptions> => {
let userAutoUpdateChannel;
const { autoUpdateChannel, betaAutoUpdateChannelEnabled } =
config.getConfigFields([
'autoUpdateChannel',
'betaAutoUpdateChannelEnabled',
]);
userAutoUpdateChannel = betaAutoUpdateChannelEnabled
? 'beta'
: autoUpdateChannel;
if (isWindowsOS) {
await retrieveWindowsRegistry();
const registryAutoUpdate = RegistryStore.getRegistry();
const identifiedChannelFromRegistry = [
EChannelRegistry.BETA,
EChannelRegistry.LATEST,
].includes(registryAutoUpdate.currentChannel)
? registryAutoUpdate.currentChannel
: '';
if (identifiedChannelFromRegistry) {
userAutoUpdateChannel = identifiedChannelFromRegistry;
}
}
logger.info(`auto-update-handler: using channel ${userAutoUpdateChannel}`);
const opts: GenericServerOptions = {

View File

@ -0,0 +1,61 @@
import { logger } from '../common/logger';
import { RegistryStore } from './stores/registry-store';
enum RegistryValueType {
REG_SZ = 'REG_SZ',
}
const CHANNEL_NEST_LOCATION = '\\SOFTWARE\\Policies\\Symphony\\Update';
const CHANNEL_KEY = 'channel';
export const retrieveWindowsRegistry = async (): Promise<string> => {
const Registry = require('winreg');
const registryLocalStore = RegistryStore;
const fetchLogic = (err, channel) => {
if (err) {
logger.info('registry-handler: error occurred. Details: ', err);
return 'An error has occurred';
} else {
if (channel.type === RegistryValueType.REG_SZ) {
registryLocalStore.setRegistry({ currentChannel: channel.value });
logger.info(
'registry-handler: value retrieved successfully, send to Registry Store',
);
return channel.value;
} else {
logger.info(
'registry-handler: the value was looked for did not exist or its VALUE_TYPE is incorrect',
);
return 'Key Value doesnt exist';
}
}
};
const regKeyLocal = new Registry({
hive: Registry.HKLM,
key: CHANNEL_NEST_LOCATION,
});
const regKeyUser = new Registry({
hive: Registry.HKCU,
key: CHANNEL_NEST_LOCATION,
});
return regKeyUser.get(CHANNEL_KEY, (error, channel) => {
if (error && !channel) {
regKeyLocal.get(CHANNEL_KEY, (err, localChannel) => {
return fetchLogic(err, localChannel);
});
} else if (channel.type === RegistryValueType.REG_SZ) {
registryLocalStore.setRegistry({ currentChannel: channel.value });
logger.info(
'registry-handler: value retrieved successfully, send to Registry Store',
);
return channel;
}
});
};

View File

@ -0,0 +1,28 @@
export interface IRegistry {
currentChannel: string | 'beta' | 'latest';
}
export const EChannelRegistry = {
/**
* Has higher authority over autoUpdateChannel, utilized to set Update Channel to LATEST
*/
LATEST: 'latest',
/**
* Has higher authority over autoUpdateChannel, utilized to set Update Channel to BETA
*/
BETA: 'beta',
};
class Registry {
private registry: IRegistry = { currentChannel: '' };
public getRegistry = (): IRegistry => {
return { ...this.registry };
};
public setRegistry = (newRegistry: IRegistry) => {
this.registry = { ...this.registry, ...newRegistry };
};
}
export const RegistryStore = new Registry();