diff --git a/src/experiments.ts b/src/experiments.ts index cb80b33..e450f09 100644 --- a/src/experiments.ts +++ b/src/experiments.ts @@ -1,5 +1,6 @@ export enum Experiment { - ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT' + ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT', + ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API' } type ExperimentConfig = { @@ -13,6 +14,11 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = { name: 'Elongator by default', description: 'Enable Elongator by default (guest token lockout bypass)', percentage: 1 + }, + [Experiment.ELONGATOR_PROFILE_API]: { + name: 'Elongator profile API', + description: 'Use Elongator to load profiles', + percentage: 0 } }; diff --git a/src/fetch.ts b/src/fetch.ts index 49157f8..39c6b6a 100644 --- a/src/fetch.ts +++ b/src/fetch.ts @@ -316,7 +316,10 @@ export const fetchConversation = async ( export const fetchUser = async ( username: string, event: FetchEvent, - useElongator = false + useElongator = experimentCheck( + Experiment.ELONGATOR_PROFILE_API, + typeof TwitterProxy !== 'undefined' + ) ): Promise => { return (await twitterFetch( `${