Files
Desktop/ts/groups/limits.ts
2025-09-19 13:05:51 -07:00

34 lines
842 B
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import lodash from 'lodash';
import { parseIntOrThrow } from '../util/parseIntOrThrow.js';
import type { ConfigKeyType } from '../RemoteConfig.js';
import { getValue } from '../RemoteConfig.js';
const { isNumber } = lodash;
function makeGetter(configKey: ConfigKeyType): (fallback?: number) => number {
return fallback => {
try {
return parseIntOrThrow(
getValue(configKey),
`Failed to parse ${configKey} as an integer`
);
} catch (err) {
if (isNumber(fallback)) {
return fallback;
}
throw err;
}
};
}
export const getGroupSizeRecommendedLimit = makeGetter(
'global.groupsv2.maxGroupSize'
);
export const getGroupSizeHardLimit = makeGetter(
'global.groupsv2.groupSizeHardLimit'
);