-
Notifications
You must be signed in to change notification settings - Fork 0
feat: gate developer connections behind Vercel flag #808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| import { flagsEnv } from "@vendor/vercel-flags/env"; | ||
| import { createClient } from "@vercel/flags-core"; | ||
|
|
||
| interface BooleanFlagDefinition { | ||
| defaultValue: boolean; | ||
| key: string; | ||
| } | ||
|
|
||
| export const featureFlags = { | ||
| developerConnections: { | ||
| defaultValue: false, | ||
| key: "developer-connections", | ||
| }, | ||
| } as const satisfies Record<string, BooleanFlagDefinition>; | ||
|
|
||
| export const DEVELOPER_CONNECTIONS_FLAG_KEY = | ||
| featureFlags.developerConnections.key; | ||
|
|
||
| type FlagsClient = ReturnType<typeof createClient>; | ||
|
|
||
| const clientOptions = { | ||
| stream: { initTimeoutMs: 2000 }, | ||
| polling: { intervalMs: 30_000, initTimeoutMs: 5000 }, | ||
| }; | ||
|
|
||
| let client: FlagsClient | null = null; | ||
| let initPromise: Promise<void> | null = null; | ||
|
|
||
| function getFlagsClient(): FlagsClient | null { | ||
| if (client) { | ||
| return client; | ||
| } | ||
| const sdkKey = flagsEnv.FLAGS; | ||
| if (!sdkKey) { | ||
| return null; | ||
| } | ||
| client = createClient(sdkKey, clientOptions); | ||
| return client; | ||
| } | ||
|
|
||
| async function ensureInitialized() { | ||
| const flagsClient = getFlagsClient(); | ||
| if (!flagsClient) { | ||
| return null; | ||
| } | ||
| if (!initPromise) { | ||
| const result = flagsClient.initialize(); | ||
| initPromise = result instanceof Promise ? result : Promise.resolve(); | ||
| } | ||
| try { | ||
| await initPromise; | ||
| } catch { | ||
| initPromise = null; | ||
| return null; | ||
| } | ||
| return flagsClient; | ||
| } | ||
|
|
||
| async function evaluateBooleanFlag(definition: BooleanFlagDefinition) { | ||
| const flagsClient = await ensureInitialized(); | ||
| if (!flagsClient) { | ||
| return definition.defaultValue; | ||
| } | ||
| const result = await flagsClient.evaluate<boolean>( | ||
| definition.key, | ||
| definition.defaultValue | ||
| ); | ||
| return result.value ?? definition.defaultValue; | ||
| } | ||
|
|
||
| export function isDeveloperConnectionsEnabled() { | ||
| return evaluateBooleanFlag(featureFlags.developerConnections); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When the
developer-connectionsflag is disabled, this helper is only consulted by the page/sidebar/tRPC management router, but sandbox commands still callissueAllEnabledDeveloperConnectionLeasesfromapi/app/src/services/developer-sandbox-runs/index.ts:149and materialize any existing enabled provider credentials. In environments where the flag is turned off to keep Developer Connections dark after credentials already exist, users can no longer see or manage those connections, yet their secrets are still injected into sandboxes; the same flag check needs to cover the lease/materialization path as well.Useful? React with 👍 / 👎.