signal-desktop/ts/groups/limits.ts

32 lines
809 B
TypeScript
Raw Normal View History

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