Add IV_FORCE_THREAD_UNROLL experiment

This commit is contained in:
dangered wolf 2024-04-29 23:04:33 -04:00
parent 6ebe12146c
commit ce04b8d4e0
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,5 @@
export enum Experiment {
IV_FORCE_THREAD_UNROLL = 'IV_FORCE_THREAD_UNROLL',
ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT',
ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API',
TWEET_DETAIL_API = 'TWEET_DETAIL_API'
@ -11,6 +12,11 @@ type ExperimentConfig = {
};
const Experiments: { [key in Experiment]: ExperimentConfig } = {
[Experiment.IV_FORCE_THREAD_UNROLL]: {
name: 'IV force thread unroll',
description: 'Force thread unroll for IVs',
percentage: 0.1
},
[Experiment.ELONGATOR_BY_DEFAULT]: {
name: 'Elongator by default',
description: 'Enable Elongator by default (guest token lockout bypass)',

View file

@ -3,6 +3,7 @@ import { Constants } from '../../../constants';
import { getBaseRedirectUrl } from '../router';
import { handleStatus } from '../../../embed/status';
import { Strings } from '../../../strings';
import { Experiment, experimentCheck } from '../../../experiments';
/* Handler for status request */
export const statusRequest = async (c: Context) => {
@ -55,7 +56,7 @@ export const statusRequest = async (c: Context) => {
} else if (Constants.INSTANT_VIEW_DOMAINS.includes(url.hostname)) {
console.log('Forced instant view request');
flags.forceInstantView = true;
} else if (Constants.INSTANT_VIEW_THREADS_DOMAINS.includes(url.hostname)) {
} else if (experimentCheck(Experiment.IV_FORCE_THREAD_UNROLL, userAgent.includes('Telegram')) || Constants.INSTANT_VIEW_THREADS_DOMAINS.includes(url.hostname)) {
console.log('Forced unroll instant view');
flags.forceInstantView = true;
flags.instantViewUnrollThreads = true;