Phased rollout by country code; starting w/ desktop.stories remote flag

This commit is contained in:
Scott Nonnenberg 2022-10-20 14:02:22 -07:00 committed by GitHub
parent e14c3241c5
commit 1c89168301
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 318 additions and 25 deletions

35
ts/util/stories.ts Normal file
View file

@ -0,0 +1,35 @@
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { isBucketValueEnabled, isEnabled } from '../RemoteConfig';
import { UUIDKind } from '../types/UUID';
import { isBeta } from './version';
// Note: selectors/items is the other place this check is done
export const getStoriesAvailable = (): boolean => {
if (
isBucketValueEnabled(
'desktop.stories',
window.textsecure.storage.user.getNumber(),
window.textsecure.storage.user.getUuid(UUIDKind.ACI)?.toString()
)
) {
return true;
}
if (isEnabled('desktop.internalUser')) {
return true;
}
if (isEnabled('desktop.stories.beta') && isBeta(window.getVersion())) {
return true;
}
return false;
};
export const getStoriesDisabled = (): boolean =>
window.Events.getHasStoriesDisabled();
export const getStoriesBlocked = (): boolean =>
!getStoriesAvailable() || getStoriesDisabled();