mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 10:30:55 +01:00
Add IV_FORCE_THREAD_UNROLL experiment
This commit is contained in:
parent
6ebe12146c
commit
ce04b8d4e0
2 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
export enum Experiment {
|
export enum Experiment {
|
||||||
|
IV_FORCE_THREAD_UNROLL = 'IV_FORCE_THREAD_UNROLL',
|
||||||
ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT',
|
ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT',
|
||||||
ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API',
|
ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API',
|
||||||
TWEET_DETAIL_API = 'TWEET_DETAIL_API'
|
TWEET_DETAIL_API = 'TWEET_DETAIL_API'
|
||||||
|
@ -11,6 +12,11 @@ type ExperimentConfig = {
|
||||||
};
|
};
|
||||||
|
|
||||||
const Experiments: { [key in Experiment]: 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]: {
|
[Experiment.ELONGATOR_BY_DEFAULT]: {
|
||||||
name: 'Elongator by default',
|
name: 'Elongator by default',
|
||||||
description: 'Enable Elongator by default (guest token lockout bypass)',
|
description: 'Enable Elongator by default (guest token lockout bypass)',
|
||||||
|
|
|
@ -3,6 +3,7 @@ import { Constants } from '../../../constants';
|
||||||
import { getBaseRedirectUrl } from '../router';
|
import { getBaseRedirectUrl } from '../router';
|
||||||
import { handleStatus } from '../../../embed/status';
|
import { handleStatus } from '../../../embed/status';
|
||||||
import { Strings } from '../../../strings';
|
import { Strings } from '../../../strings';
|
||||||
|
import { Experiment, experimentCheck } from '../../../experiments';
|
||||||
|
|
||||||
/* Handler for status request */
|
/* Handler for status request */
|
||||||
export const statusRequest = async (c: Context) => {
|
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)) {
|
} else if (Constants.INSTANT_VIEW_DOMAINS.includes(url.hostname)) {
|
||||||
console.log('Forced instant view request');
|
console.log('Forced instant view request');
|
||||||
flags.forceInstantView = true;
|
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');
|
console.log('Forced unroll instant view');
|
||||||
flags.forceInstantView = true;
|
flags.forceInstantView = true;
|
||||||
flags.instantViewUnrollThreads = true;
|
flags.instantViewUnrollThreads = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue