* Handle biometric authentication * jailbreak/root detection and biometric small fixes * remove server from initializeSecurityManager and fix loginEntry * Add screen capture prevention and other small fixes * added unit tests to SecurityManager * added shielded nativeID to protect views * use MobilePreventScreenCapture instead of MobileAllowScreenshots in config type definition * Apply Swizzle for screen capture on iOS * Apply patch to bottom sheet to prevent screen captures * fix ios sendReply * Fix SDWebImage swizzle to use the correct session * Fix potential crash on Android when using hardware keyboard * rename patch for network library to remove warning * add temp emm reference * fix initializeSecurityManager tests * fix translations * use siteName for jailbreak detection when connecting to a new server * fix i18n typo * do not query the entire config from the db only the required fields * migrate manage_apps to use defineMessages * use TestHelper.wait in tests * use defineMessages for security manager * fix missing else statement for gm_to_channel * created a TestHelper function to mockQuery and replace as jest.Mock with jest.mocked * fix unit tests * fix unit tests (again) and include setting the test environment to UTC * Fix keyboard disappearing on iOS * update react-native-emm
626 lines
22 KiB
TypeScript
626 lines
22 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {Database, Q} from '@nozbe/watermelondb';
|
|
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 {isMinimumServerVersion} 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 observeCanUploadFiles = (database: Database) => {
|
|
const enableFileAttachments = observeConfigBooleanValue(database, 'EnableFileAttachments', true);
|
|
const enableMobileFileUpload = observeConfigBooleanValue(database, 'EnableMobileFileUpload', true);
|
|
const license = observeLicense(database);
|
|
|
|
return combineLatest([enableFileAttachments, enableMobileFileUpload, license]).pipe(
|
|
switchMap(([efa, emfu, l]) => of$(
|
|
efa &&
|
|
(l?.IsLicensed !== 'true' || l?.Compliance !== 'true' || emfu),
|
|
)),
|
|
);
|
|
};
|
|
|
|
export const observeCanDownloadFiles = (database: Database) => {
|
|
const enableMobileFileDownload = observeConfigBooleanValue(database, 'EnableMobileFileDownload', true);
|
|
const license = observeLicense(database);
|
|
|
|
return combineLatest([enableMobileFileDownload, license]).pipe(
|
|
switchMap(([emfd, l]) => of$((l?.IsLicensed !== 'true' || l?.Compliance !== 'true' || emfd))),
|
|
);
|
|
};
|
|
|
|
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);
|
|
}),
|
|
);
|
|
};
|
|
|