mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 11:00:54 +01:00
Add ELONGATOR_PROFILE_API experiment
This commit is contained in:
parent
906f25cc1c
commit
53cee071e3
2 changed files with 11 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
export enum Experiment {
|
export enum Experiment {
|
||||||
ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT'
|
ELONGATOR_BY_DEFAULT = 'ELONGATOR_BY_DEFAULT',
|
||||||
|
ELONGATOR_PROFILE_API = 'ELONGATOR_PROFILE_API'
|
||||||
}
|
}
|
||||||
|
|
||||||
type ExperimentConfig = {
|
type ExperimentConfig = {
|
||||||
|
@ -13,6 +14,11 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = {
|
||||||
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)',
|
||||||
percentage: 1
|
percentage: 1
|
||||||
|
},
|
||||||
|
[Experiment.ELONGATOR_PROFILE_API]: {
|
||||||
|
name: 'Elongator profile API',
|
||||||
|
description: 'Use Elongator to load profiles',
|
||||||
|
percentage: 0
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -316,7 +316,10 @@ export const fetchConversation = async (
|
||||||
export const fetchUser = async (
|
export const fetchUser = async (
|
||||||
username: string,
|
username: string,
|
||||||
event: FetchEvent,
|
event: FetchEvent,
|
||||||
useElongator = false
|
useElongator = experimentCheck(
|
||||||
|
Experiment.ELONGATOR_PROFILE_API,
|
||||||
|
typeof TwitterProxy !== 'undefined'
|
||||||
|
)
|
||||||
): Promise<GraphQLUserResponse> => {
|
): Promise<GraphQLUserResponse> => {
|
||||||
return (await twitterFetch(
|
return (await twitterFetch(
|
||||||
`${
|
`${
|
||||||
|
|
Loading…
Add table
Reference in a new issue