mattermost-mobile/app/queries/servers/system.ts
Elias Nahum 44eb76bed7
feat(iOS): Add Microsoft Intune MAM integration with multi-server support (#9312)
* refactor: implement custom ExpoImage wrapper for cache control

Add ExpoImage component with automatic cacheKey/cachePath management and replace all expo-image imports across the app

* refactor(ios): convert Gekidou to CocoaPods

Migrate from Swift Package Manager to CocoaPods, add Keychain write operations, refactor notification handler to remove react-native-notifications headers, and upgrade Swift to 5.0

* npm audit

* update fastlane

* feat(ci): integrate Intune MAM for enterprise builds with strict OSS protection

Add Intune submodule, CI actions, Fastlane configuration, developer scripts, pre-commit hooks, and validation workflows to enable internal MAM builds while protecting OSS repository

* fix tests by mocking @mattermost/intune

* feat: implement Intune MAM integration with comprehensive security enforcement

Add IntuneManager, refactor SecurityManager/SessionManager for MAM policies, implement native OIDC auth flow, add biometric enforcement, conditional launch blocking, and file protection controls

* fix alerts when no server database is present

* Unify cache strategy

* fix emit config changed after it was stored in the db

* Handle Mid-Session Enrollment Detection

* fix ADALLogOverrideDisabled missing in Fastfile

* fix flow for initial enrollment

* fix and add unit tests

* enable Intune configuration for PR and beta builds, CLIENT_ID should be changed before actual release

* Update intune submodule with addressed feedback

* fix validate-intune-clean workflow

* feat(intune): add comprehensive error handling and SAML+Entra support

Add production-ready error handling for native Entra authentication with
user-friendly i18n messages, comprehensive test coverage, and support for
Entra login when server requires SAML.

* update i18n

* update intune submodule

* update build-pr token

* fix race condition between server auth and intune enrollment

* fix CI workflow to build with intune

* use deploy key for intune submodule

* set the config directly in the submodule .git

* debug injection

* try setting GIT_SSH_COMMAND

* remove action debug

* fix server url input

* match pod cache with intune hash

* Fastfile and envs

* have workflows check for intune/.git

* have ci cache intune frameworks as well

* update Fastlane to set no-cache to artifacts uploaded

* fix s3 upload

* fix pblist template

* Attempt to remove the cache control for PR uploads to s3

* use hash from commit for S3 path

* Implement crash-resilient selective wipe with automatic retry and add removeInternetPassword to Gekidou Keychain

* Fix surface errors from intune login

* fix postinstall scripts

* use cacheKey for draft md images

* remove unnecessary double await during test

* Have isMinimumLicenseTier accept valid license sku tier as target

* Add missing Auth error messages

* remove the last period for intune errors in i18n

* do not call unenroll with wipe on manual logout

* Fix tests and Intune error messages

* do not filter any SSO type regardless of which is used for Intune

* fix 412 to not retry

* fix tests, app logs sharing and share_extension avatar cache

* apply setScreenCapturePolicy on license change

Co-authored-by: Eva Sarafianou <eva.sarafianou@mattermost.com>

* re-apply screen capture on enrollment

Co-authored-by: Eva Sarafianou <eva.sarafianou@mattermost.com>

* use userData from intunr login and prevent getMe

Co-authored-by: Eva Sarafianou <eva.sarafianou@mattermost.com>

* Check for Biometrics and Jailbreak as we used to

---------

Co-authored-by: Eva Sarafianou <eva.sarafianou@mattermost.com>
2025-12-10 13:07:28 +02:00

647 lines
23 KiB
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
/* eslint-disable max-lines */
import {Database, Q} from '@nozbe/watermelondb';
import {nativeApplicationVersion, nativeBuildVersion} from 'expo-application';
import {Platform} from 'react-native';
import {of as of$, Observable, combineLatest} from 'rxjs';
import {switchMap, distinctUntilChanged} from 'rxjs/operators';
import {Preferences, License} from '@constants';
import {MM_TABLES, SYSTEM_IDENTIFIERS} from '@constants/database';
import {PUSH_PROXY_STATUS_UNKNOWN} from '@constants/push_proxy';
import {isMinimumLicenseTier, isMinimumServerVersion, type LicenseTierSku} from '@utils/helpers';
import {logError} from '@utils/log';
import type ServerDataOperator from '@database/operator/server_data_operator';
import type ConfigModel from '@typings/database/models/servers/config';
import type SystemModel from '@typings/database/models/servers/system';
export type PrepareCommonSystemValuesArgs = {
lastUnreadChannelId?: string;
currentChannelId?: string;
currentTeamId?: string;
currentUserId?: string;
license?: ClientLicense;
teamHistory?: string;
}
const {SERVER: {SYSTEM, CONFIG}} = MM_TABLES;
export const getCurrentChannelId = async (serverDatabase: Database): Promise<string> => {
try {
const currentChannelId = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.CURRENT_CHANNEL_ID);
return currentChannelId?.value || '';
} catch {
return '';
}
};
export const querySystemValue = (database: Database, key: string) => {
return database.get<SystemModel>(SYSTEM).query(Q.where('id', (key)), Q.take(1));
};
export const observeCurrentChannelId = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.CURRENT_CHANNEL_ID).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: ''}))),
switchMap((model) => of$(model.value)),
);
};
export const getCurrentTeamId = async (serverDatabase: Database): Promise<string> => {
try {
const currentTeamId = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID);
return currentTeamId?.value || '';
} catch {
return '';
}
};
export const observeCurrentTeamId = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: ''}))),
switchMap((model) => of$(model.value)),
);
};
export const getCurrentUserId = async (serverDatabase: Database): Promise<string> => {
try {
const currentUserId = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.CURRENT_USER_ID);
return currentUserId?.value || '';
} catch {
return '';
}
};
export const observeCurrentUserId = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.CURRENT_USER_ID).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: ''}))),
switchMap((model) => of$(model.value)),
);
};
export const observeGlobalThreadsTab = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.GLOBAL_THREADS_TAB).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: 'all'}))),
switchMap((model) => of$(model.value)),
);
};
export const getPushVerificationStatus = async (serverDatabase: Database): Promise<string> => {
try {
const status = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.PUSH_VERIFICATION_STATUS);
return status?.value || '';
} catch {
return '';
}
};
export const observePushVerificationStatus = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.PUSH_VERIFICATION_STATUS).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: PUSH_PROXY_STATUS_UNKNOWN}))),
switchMap((model) => of$(model.value)),
);
};
export const getCommonSystemValues = async (serverDatabase: Database) => {
const systemRecords = (await serverDatabase.collections.get<SystemModel>(SYSTEM).query().fetch());
let license: ClientLicense = {} as ClientLicense;
let currentChannelId = '';
let currentTeamId = '';
let currentUserId = '';
let lastUnreadChannelId = '';
systemRecords.forEach((systemRecord) => {
switch (systemRecord.id) {
case SYSTEM_IDENTIFIERS.CURRENT_CHANNEL_ID:
currentChannelId = systemRecord.value;
break;
case SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID:
currentTeamId = systemRecord.value;
break;
case SYSTEM_IDENTIFIERS.CURRENT_USER_ID:
currentUserId = systemRecord.value;
break;
case SYSTEM_IDENTIFIERS.LICENSE:
license = systemRecord.value;
break;
case SYSTEM_IDENTIFIERS.LAST_UNREAD_CHANNEL_ID:
lastUnreadChannelId = systemRecord.value;
break;
}
});
return {
currentChannelId,
currentTeamId,
currentUserId,
lastUnreadChannelId,
license,
};
};
const fromModelToClientConfig = <T = ClientConfig>(list: ConfigModel[]) => {
const config: {[key: string]: any} = {};
list.forEach((v) => {
config[v.id] = v.value;
});
return config as T;
};
export const getConfig = async (database: Database) => {
const configList = await database.get<ConfigModel>(CONFIG).query().fetch();
return fromModelToClientConfig(configList);
};
export const getSecurityConfig = async (database: Database) => {
const configList = await database.get<ConfigModel>(CONFIG).query(
Q.where('id', Q.oneOf(['MobileEnableBiometrics', 'MobileJailbreakProtection', 'MobilePreventScreenCapture', 'SiteName']))).fetch();
return fromModelToClientConfig<SecurityClientConfig>(configList);
};
export const queryConfigValue = (database: Database, key: keyof ClientConfig) => {
return database.get<ConfigModel>(CONFIG).query(Q.where('id', Q.eq(key)));
};
export const getConfigValue = async (database: Database, key: keyof ClientConfig) => {
const list = await queryConfigValue(database, key).fetch();
return list.length ? list[0].value : undefined;
};
export const getLastGlobalDataRetentionRun = async (database: Database) => {
try {
const data = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.LAST_DATA_RETENTION_RUN);
return data?.value || 0;
} catch {
return undefined;
}
};
export const getGlobalDataRetentionPolicy = async (database: Database) => {
try {
const data = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.DATA_RETENTION_POLICIES);
return (data?.value || {}) as GlobalDataRetentionPolicy;
} catch {
return undefined;
}
};
export const getGranularDataRetentionPolicies = async (database: Database) => {
try {
const data = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.GRANULAR_DATA_RETENTION_POLICIES);
return (data?.value || {
team: [],
channel: [],
}) as {
team: TeamDataRetentionPolicy[];
channel: ChannelDataRetentionPolicy[];
};
} catch {
return undefined;
}
};
export const getIsDataRetentionEnabled = async (database: Database) => {
const license = await getLicense(database);
if (!license || !Object.keys(license)?.length) {
return null;
}
const dataRetentionEnableMessageDeletion = await getConfigValue(database, 'DataRetentionEnableMessageDeletion');
return dataRetentionEnableMessageDeletion === 'true' && license?.IsLicensed === 'true' && license?.DataRetention === 'true';
};
export const observeConfig = (database: Database): Observable<ClientConfig | undefined> => {
return database.get<ConfigModel>(CONFIG).query().observeWithColumns(['value']).pipe(
switchMap((result) => of$(fromModelToClientConfig<ClientConfig>(result))),
);
};
export const observeConfigValue = (database: Database, key: keyof ClientConfig) => {
return queryConfigValue(database, key).observeWithColumns(['value']).pipe(
switchMap((result) => of$(result.length ? result[0].value : undefined)),
);
};
export const observeMaxFileCount = (database: Database) => {
return observeConfigValue(database, 'Version').pipe(
switchMap((v) => of$(isMinimumServerVersion(v || '', 6, 0) ? 10 : 5)),
);
};
export const observeIsCustomStatusExpirySupported = (database: Database) => {
return observeConfigValue(database, 'Version').pipe(
switchMap((v) => of$(isMinimumServerVersion(v || '', 5, 37))),
);
};
export const observeConfigBooleanValue = (database: Database, key: keyof ClientConfig, defaultValue = false) => {
return observeConfigValue(database, key).pipe(
switchMap((v) => of$(v ? v === 'true' : defaultValue)),
distinctUntilChanged(),
);
};
export const observeConfigIntValue = (database: Database, key: keyof ClientConfig, defaultValue = 0) => {
return observeConfigValue(database, key).pipe(
switchMap((v) => of$((parseInt(v || '0', 10) || defaultValue))),
);
};
export const observeLicense = (database: Database): Observable<ClientLicense | undefined> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.LICENSE).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: undefined}))),
switchMap((model) => of$(model.value)),
);
};
export const getLicense = async (serverDatabase: Database): Promise<ClientLicense | undefined> => {
try {
const license = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.LICENSE);
return license?.value;
} catch {
return undefined;
}
};
export const getRecentCustomStatuses = async (database: Database): Promise<UserCustomStatus[]> => {
try {
const recent = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.RECENT_CUSTOM_STATUS);
return recent.value;
} catch {
return [];
}
};
export const getExpandedLinks = async (database: Database): Promise<Record<string, string>> => {
try {
const expandedLinks = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.EXPANDED_LINKS);
return expandedLinks?.value || {};
} catch {
return {};
}
};
export const observeExpandedLinks = (database: Database): Observable<Record<string, string>> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.EXPANDED_LINKS).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: {}}))),
switchMap((model) => of$(model.value)),
);
};
export const observeRecentMentions = (database: Database): Observable<string[]> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.RECENT_MENTIONS).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: []}))),
switchMap((model) => of$(model.value)),
);
};
export const getRecentReactions = async (database: Database): Promise<string[]> => {
try {
const reactions = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.RECENT_REACTIONS);
return reactions.value;
} catch {
return [];
}
};
export const observeRecentReactions = (database: Database): Observable<string[]> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.RECENT_REACTIONS).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: []}))),
switchMap((model) => of$(model.value)),
);
};
export const observeRecentCustomStatus = (database: Database): Observable<UserCustomStatus[]> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.RECENT_CUSTOM_STATUS).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: []}))),
switchMap((model) => of$(model.value)),
);
};
export const getLastFullSync = async (serverDatabase: Database) => {
try {
const websocketLastDisconnected = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.WEBSOCKET);
return (parseInt(websocketLastDisconnected?.value || 0, 10) || 0);
} catch {
return 0;
}
};
export const setLastFullSync = async (operator: ServerDataOperator, value: number, prepareRecordsOnly = false) => {
return operator.handleSystem({systems: [{
id: SYSTEM_IDENTIFIERS.WEBSOCKET,
value,
}],
prepareRecordsOnly});
};
export const resetLastFullSync = async (operator: ServerDataOperator, prepareRecordsOnly = false) => {
const {database} = operator;
const lastDisconnectedAt = await getLastFullSync(database);
if (lastDisconnectedAt) {
return operator.handleSystem({systems: [{
id: SYSTEM_IDENTIFIERS.WEBSOCKET,
value: 0,
}],
prepareRecordsOnly});
}
return [];
};
export const getTeamHistory = async (serverDatabase: Database): Promise<string[]> => {
try {
const teamHistory = await serverDatabase.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.TEAM_HISTORY);
return teamHistory.value;
} catch {
return [];
}
};
export const patchTeamHistory = (operator: ServerDataOperator, value: string[], prepareRecordsOnly = false) => {
return operator.handleSystem({systems: [{
id: SYSTEM_IDENTIFIERS.TEAM_HISTORY,
value: JSON.stringify(value),
}],
prepareRecordsOnly});
};
export async function prepareCommonSystemValues(
operator: ServerDataOperator, values: PrepareCommonSystemValuesArgs): Promise<SystemModel[]> {
try {
const {lastUnreadChannelId, currentChannelId, currentTeamId, currentUserId, license} = values;
const systems: IdValue[] = [];
if (license !== undefined) {
systems.push({
id: SYSTEM_IDENTIFIERS.LICENSE,
value: JSON.stringify(license),
});
}
if (lastUnreadChannelId !== undefined) {
systems.push({
id: SYSTEM_IDENTIFIERS.LAST_UNREAD_CHANNEL_ID,
value: lastUnreadChannelId,
});
}
if (currentUserId !== undefined) {
systems.push({
id: SYSTEM_IDENTIFIERS.CURRENT_USER_ID,
value: currentUserId,
});
}
if (currentTeamId !== undefined) {
systems.push({
id: SYSTEM_IDENTIFIERS.CURRENT_TEAM_ID,
value: currentTeamId,
});
}
if (currentChannelId !== undefined) {
systems.push({
id: SYSTEM_IDENTIFIERS.CURRENT_CHANNEL_ID,
value: currentChannelId,
});
}
return operator.handleSystem({
systems,
prepareRecordsOnly: true,
});
} catch {
return [];
}
}
export async function setCurrentUserId(operator: ServerDataOperator, userId: string) {
try {
const models = await prepareCommonSystemValues(operator, {currentUserId: userId});
if (models) {
await operator.batchRecords(models, 'setCurrentChannelId');
}
return {currentUserId: userId};
} catch (error) {
return {error};
}
}
export async function setCurrentChannelId(operator: ServerDataOperator, channelId: string) {
try {
const models = await prepareCommonSystemValues(operator, {currentChannelId: channelId});
if (models) {
await operator.batchRecords(models, 'setCurrentChannelId');
}
return {currentChannelId: channelId};
} catch (error) {
return {error};
}
}
export async function setCurrentTeamId(operator: ServerDataOperator, teamId: string) {
try {
const models = await prepareCommonSystemValues(operator, {
currentTeamId: teamId,
});
if (models) {
await operator.batchRecords(models, 'setCurrentTeamId');
}
return {currentTeamId: teamId};
} catch (error) {
logError(error);
return {error};
}
}
export async function setCurrentTeamAndChannelId(operator: ServerDataOperator, teamId?: string, channelId?: string) {
try {
const models = await prepareCommonSystemValues(operator, {
currentChannelId: channelId,
currentTeamId: teamId,
});
if (models) {
await operator.batchRecords(models, 'setCurrentTeamAndChannelId');
}
return {currentTeamId: teamId, currentChannelId: channelId};
} catch (error) {
return {error};
}
}
export const observeLastUnreadChannelId = (database: Database): Observable<string> => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.LAST_UNREAD_CHANNEL_ID).observe().pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: ''}))),
switchMap((model) => {
if (model.value) {
return of$(model.value);
}
return observeCurrentChannelId(database);
}),
);
};
export const queryLastUnreadChannelId = (database: Database) => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.LAST_UNREAD_CHANNEL_ID);
};
export const getLastUnreadChannelId = async (serverDatabase: Database): Promise<string> => {
try {
const lastUnreadChannelId = (await queryLastUnreadChannelId(serverDatabase).fetch())[0];
return lastUnreadChannelId?.value || '';
} catch {
return '';
}
};
export const observeOnlyUnreads = (database: Database) => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.ONLY_UNREADS).observeWithColumns(['value']).pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: false}))),
switchMap((model) => of$(model.value as boolean)),
);
};
export const observeAllowedThemesKeys = (database: Database) => {
const defaultThemeKeys = Object.keys(Preferences.THEMES);
return observeConfigValue(database, 'AllowedThemes').pipe(
switchMap((allowedThemes) => {
let acceptableThemes = defaultThemeKeys;
if (allowedThemes) {
const allowedThemeKeys = (allowedThemes ?? '').split(',').filter(String);
if (allowedThemeKeys.length) {
acceptableThemes = defaultThemeKeys.filter((k) => allowedThemeKeys.includes(k));
}
}
return of$(acceptableThemes);
}),
);
};
export const getExpiredSession = async (database: Database) => {
try {
const session = await database.get<SystemModel>(SYSTEM).find(SYSTEM_IDENTIFIERS.SESSION_EXPIRATION);
return (session?.value || {}) as SessionExpiration;
} catch {
return undefined;
}
};
export const observeLastDismissedAnnouncement = (database: Database) => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.LAST_DISMISSED_BANNER).observeWithColumns(['value']).pipe(
switchMap((list) => of$(list[0]?.value)),
);
};
export const observeLastServerVersionCheck = (database: Database) => {
return querySystemValue(database, SYSTEM_IDENTIFIERS.LAST_SERVER_VERSION_CHECK).observeWithColumns(['value']).pipe(
switchMap((result) => (result.length ? result[0].observe() : of$({value: 0}))),
switchMap((model) => of$(parseInt(model.value, 10))),
);
};
export const observeIfHighlightWithoutNotificationHasLicense = (database: Database) => {
const license = observeLicense(database);
const isCloudStarterFree = checkIsCloudStarterFree(license);
const isStarterSKULicense = checkIsStarterSKULicense(license);
const isSelfHostedStarter = observeIsSelfHosterStarter(database);
const isEnterpriseReady = observeConfigBooleanValue(database, 'BuildEnterpriseReady', false);
return combineLatest([isCloudStarterFree, isStarterSKULicense, isSelfHostedStarter, isEnterpriseReady]).pipe(
switchMap(([isCSF, isSSL, isSHS, isEnt]) => {
// It should have enterprise build AND not have a starter license of any kind
const highlightWithoutNotificationHasLicense = isEnt && !(isCSF || isSSL || isSHS);
return of$(highlightWithoutNotificationHasLicense);
}),
);
};
function checkIsCloudStarterFree(license: Observable<ClientLicense | undefined>) {
return license.pipe(
switchMap((l) => {
const isCloud = l?.Cloud === 'true';
const isStarterSKU = l?.SkuShortName === License.SKU_SHORT_NAME.Starter;
return of$(isCloud && isStarterSKU);
}),
distinctUntilChanged(),
);
}
function checkIsStarterSKULicense(license: Observable<ClientLicense | undefined>) {
return license.pipe(
switchMap((l) => {
const isLicensed = l?.IsLicensed === 'true';
const isSelfHostedStarterProduct = l?.SelfHostedProducts === License.SelfHostedProducts.STARTER;
return of$(isLicensed && isSelfHostedStarterProduct);
}),
distinctUntilChanged(),
);
}
const observeIsSelfHosterStarter = (database: Database) => {
const license = observeLicense(database);
const isEnterpriseReady = observeConfigBooleanValue(database, 'BuildEnterpriseReady', false);
return combineLatest([license, isEnterpriseReady]).pipe(
switchMap(([lic, isEnt]) => {
const isLicensed = lic?.IsLicensed === 'true';
const isSelfHostedStarter = isEnt && !isLicensed;
return of$(isSelfHostedStarter);
}),
);
};
export const observeReportAProblemMetadata = (database: Database) => {
const currentUserId = observeCurrentUserId(database);
const currentTeamId = observeCurrentTeamId(database);
const serverVersion = observeConfigValue(database, 'Version');
const buildNumber = observeConfigValue(database, 'BuildNumber');
return combineLatest([
currentUserId,
currentTeamId,
serverVersion,
buildNumber,
]).pipe(
switchMap(([userId, teamId, version = 'Unknown', build = 'Unknown']) => of$({
currentUserId: userId,
currentTeamId: teamId,
serverVersion: `${version} (Build ${build})`,
appVersion: `${nativeApplicationVersion} (Build ${nativeBuildVersion})`,
appPlatform: Platform.OS,
})),
);
};
export const observeIsMinimumLicenseTier = (database: Database, shortSku: LicenseTierSku) => {
const license = observeLicense(database);
const isEnterpriseReady = observeConfigBooleanValue(database, 'BuildEnterpriseReady', false);
return combineLatest([license, isEnterpriseReady]).pipe(
switchMap(([lic, isEnt]) => {
if (!shortSku || !isEnt) {
return of$(false);
}
const meetsMinimumTier = isMinimumLicenseTier(lic, shortSku);
return of$(meetsMinimumTier);
}),
distinctUntilChanged(),
);
};