Add ELONGATOR_PROFILE_API experiment

This commit is contained in:
dangered wolf 2023-10-15 14:21:45 -04:00
parent 906f25cc1c
commit 53cee071e3
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 11 additions and 2 deletions

View file

@ -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
}
};

View file

@ -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<GraphQLUserResponse> => {
return (await twitterFetch(
`${