feat(supabase): add credentials handling for Supabase API keys and URL
This commit introduces the ability to fetch and store Supabase API keys and URL credentials when a project is selected. This enables the application to dynamically configure the Supabase connection environment variables, improving the integration with Supabase services. The changes include updates to the Supabase connection logic, new API endpoints, and modifications to the chat and prompt components to utilize the new credentials.
This commit is contained in:
@@ -16,6 +16,10 @@ export interface StreamingOptions extends Omit<Parameters<typeof _streamText>[0]
|
||||
supabaseConnection?: {
|
||||
isConnected: boolean;
|
||||
hasSelectedProject: boolean;
|
||||
credentials?: {
|
||||
anonKey?: string;
|
||||
supabaseUrl?: string;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -105,6 +109,7 @@ export async function streamText(props: {
|
||||
supabase: {
|
||||
isConnected: options?.supabaseConnection?.isConnected || false,
|
||||
hasSelectedProject: options?.supabaseConnection?.hasSelectedProject || false,
|
||||
credentials: options?.supabaseConnection?.credentials || undefined,
|
||||
},
|
||||
}) ?? getSystemPrompt();
|
||||
|
||||
|
||||
@@ -8,6 +8,10 @@ export interface PromptOptions {
|
||||
supabase?: {
|
||||
isConnected: boolean;
|
||||
hasSelectedProject: boolean;
|
||||
credentials?: {
|
||||
anonKey?: string;
|
||||
supabaseUrl?: string;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -4,7 +4,11 @@ import { stripIndents } from '~/utils/stripIndent';
|
||||
|
||||
export const getSystemPrompt = (
|
||||
cwd: string = WORK_DIR,
|
||||
supabase?: { isConnected: boolean; hasSelectedProject: boolean },
|
||||
supabase?: {
|
||||
isConnected: boolean;
|
||||
hasSelectedProject: boolean;
|
||||
credentials?: { anonKey?: string; supabaseUrl?: string };
|
||||
},
|
||||
) => `
|
||||
You are Bolt, an expert AI assistant and exceptional senior software developer with vast knowledge across multiple programming languages, frameworks, and best practices.
|
||||
|
||||
@@ -76,8 +80,16 @@ You are Bolt, an expert AI assistant and exceptional senior software developer w
|
||||
: ''
|
||||
: ''
|
||||
}
|
||||
The environment variables for Supabase connection will be available in the project's \`.env\` file.
|
||||
IMPORTANT: Create a .env file if it doesnt exist.
|
||||
IMPORTANT: Create a .env file if it doesnt exist and include the following variables:
|
||||
${
|
||||
supabase?.isConnected &&
|
||||
supabase?.hasSelectedProject &&
|
||||
supabase?.credentials?.supabaseUrl &&
|
||||
supabase?.credentials?.anonKey
|
||||
? `VITE_SUPABASE_URL=${supabase.credentials.supabaseUrl}
|
||||
VITE_SUPABASE_ANON_KEY=${supabase.credentials.anonKey}`
|
||||
: 'SUPABASE_URL=your_supabase_url\nSUPABASE_ANON_KEY=your_supabase_anon_key'
|
||||
}
|
||||
NEVER modify any Supabase configuration or \`.env\` files.
|
||||
|
||||
CRITICAL DATA PRESERVATION AND SAFETY REQUIREMENTS:
|
||||
|
||||
@@ -2,21 +2,39 @@ import { useEffect, useState } from 'react';
|
||||
import { toast } from 'react-toastify';
|
||||
import { useStore } from '@nanostores/react';
|
||||
import { logStore } from '~/lib/stores/logs';
|
||||
import { supabaseConnection, isConnecting, isFetchingStats, updateSupabaseConnection } from '~/lib/stores/supabase';
|
||||
import {
|
||||
supabaseConnection,
|
||||
isConnecting,
|
||||
isFetchingStats,
|
||||
isFetchingApiKeys,
|
||||
updateSupabaseConnection,
|
||||
fetchProjectApiKeys,
|
||||
} from '~/lib/stores/supabase';
|
||||
|
||||
export function useSupabaseConnection() {
|
||||
const connection = useStore(supabaseConnection);
|
||||
const connecting = useStore(isConnecting);
|
||||
const fetchingStats = useStore(isFetchingStats);
|
||||
const fetchingApiKeys = useStore(isFetchingApiKeys);
|
||||
const [isProjectsExpanded, setIsProjectsExpanded] = useState(false);
|
||||
const [isDropdownOpen, setIsDropdownOpen] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
const savedConnection = localStorage.getItem('supabase_connection');
|
||||
const savedCredentials = localStorage.getItem('supabaseCredentials');
|
||||
|
||||
if (savedConnection) {
|
||||
const parsed = JSON.parse(savedConnection);
|
||||
|
||||
if (savedCredentials && !parsed.credentials) {
|
||||
parsed.credentials = JSON.parse(savedCredentials);
|
||||
}
|
||||
|
||||
updateSupabaseConnection(parsed);
|
||||
|
||||
if (parsed.token && parsed.selectedProjectId && !parsed.credentials) {
|
||||
fetchProjectApiKeys(parsed.selectedProjectId, parsed.token).catch(console.error);
|
||||
}
|
||||
}
|
||||
}, []);
|
||||
|
||||
@@ -50,7 +68,6 @@ export function useSupabaseConnection() {
|
||||
|
||||
toast.success('Successfully connected to Supabase');
|
||||
|
||||
// Keep the dialog open and expand the projects section
|
||||
setIsProjectsExpanded(true);
|
||||
|
||||
return true;
|
||||
@@ -72,7 +89,7 @@ export function useSupabaseConnection() {
|
||||
setIsDropdownOpen(false);
|
||||
};
|
||||
|
||||
const selectProject = (projectId: string) => {
|
||||
const selectProject = async (projectId: string) => {
|
||||
const currentState = supabaseConnection.get();
|
||||
let projectData = undefined;
|
||||
|
||||
@@ -85,7 +102,18 @@ export function useSupabaseConnection() {
|
||||
project: projectData,
|
||||
});
|
||||
|
||||
toast.success('Project selected successfully');
|
||||
if (projectId && currentState.token) {
|
||||
try {
|
||||
await fetchProjectApiKeys(projectId, currentState.token);
|
||||
toast.success('Project selected successfully');
|
||||
} catch (error) {
|
||||
console.error('Failed to fetch API keys:', error);
|
||||
toast.error('Selected project but failed to fetch API keys');
|
||||
}
|
||||
} else {
|
||||
toast.success('Project selected successfully');
|
||||
}
|
||||
|
||||
setIsDropdownOpen(false);
|
||||
};
|
||||
|
||||
@@ -97,6 +125,7 @@ export function useSupabaseConnection() {
|
||||
connection,
|
||||
connecting,
|
||||
fetchingStats,
|
||||
fetchingApiKeys,
|
||||
isProjectsExpanded,
|
||||
setIsProjectsExpanded,
|
||||
isDropdownOpen,
|
||||
@@ -107,5 +136,12 @@ export function useSupabaseConnection() {
|
||||
handleCreateProject,
|
||||
updateToken: (token: string) => updateSupabaseConnection({ ...connection, token }),
|
||||
isConnected: !!(connection.user && connection.token),
|
||||
fetchProjectApiKeys: (projectId: string) => {
|
||||
if (connection.token) {
|
||||
return fetchProjectApiKeys(projectId, connection.token);
|
||||
}
|
||||
|
||||
return Promise.reject(new Error('No token available'));
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { atom } from 'nanostores';
|
||||
import type { SupabaseUser, SupabaseStats } from '~/types/supabase';
|
||||
import type { SupabaseUser, SupabaseStats, SupabaseApiKey, SupabaseCredentials } from '~/types/supabase';
|
||||
|
||||
export interface SupabaseProject {
|
||||
id: string;
|
||||
@@ -22,10 +22,10 @@ export interface SupabaseConnectionState {
|
||||
stats?: SupabaseStats;
|
||||
selectedProjectId?: string;
|
||||
isConnected?: boolean;
|
||||
project?: SupabaseProject; // Add the selected project data
|
||||
project?: SupabaseProject;
|
||||
credentials?: SupabaseCredentials;
|
||||
}
|
||||
|
||||
// Init from localStorage if available
|
||||
const savedConnection = typeof localStorage !== 'undefined' ? localStorage.getItem('supabase_connection') : null;
|
||||
|
||||
const initialState: SupabaseConnectionState = savedConnection
|
||||
@@ -36,30 +36,28 @@ const initialState: SupabaseConnectionState = savedConnection
|
||||
stats: undefined,
|
||||
selectedProjectId: undefined,
|
||||
isConnected: false,
|
||||
project: undefined, // Initialize as undefined
|
||||
project: undefined,
|
||||
};
|
||||
|
||||
export const supabaseConnection = atom<SupabaseConnectionState>(initialState);
|
||||
|
||||
// After init, fetch stats if we have a token
|
||||
if (initialState.token && !initialState.stats) {
|
||||
fetchSupabaseStats(initialState.token).catch(console.error);
|
||||
}
|
||||
|
||||
export const isConnecting = atom(false);
|
||||
export const isFetchingStats = atom(false);
|
||||
export const isFetchingApiKeys = atom(false);
|
||||
|
||||
export function updateSupabaseConnection(connection: Partial<SupabaseConnectionState>) {
|
||||
const currentState = supabaseConnection.get();
|
||||
|
||||
// Set isConnected based on user presence AND token
|
||||
if (connection.user !== undefined || connection.token !== undefined) {
|
||||
const newUser = connection.user !== undefined ? connection.user : currentState.user;
|
||||
const newToken = connection.token !== undefined ? connection.token : currentState.token;
|
||||
connection.isConnected = !!(newUser && newToken);
|
||||
}
|
||||
|
||||
// Update the project data when selectedProjectId changes
|
||||
if (connection.selectedProjectId !== undefined) {
|
||||
if (connection.selectedProjectId && currentState.stats?.projects) {
|
||||
const selectedProject = currentState.stats.projects.find(
|
||||
@@ -69,7 +67,6 @@ export function updateSupabaseConnection(connection: Partial<SupabaseConnectionS
|
||||
if (selectedProject) {
|
||||
connection.project = selectedProject;
|
||||
} else {
|
||||
// If project not found in stats but ID is provided, set a minimal project object
|
||||
connection.project = {
|
||||
id: connection.selectedProjectId,
|
||||
name: `Project ${connection.selectedProjectId.substring(0, 8)}...`,
|
||||
@@ -80,8 +77,8 @@ export function updateSupabaseConnection(connection: Partial<SupabaseConnectionS
|
||||
};
|
||||
}
|
||||
} else if (connection.selectedProjectId === '') {
|
||||
// Clear the project when selectedProjectId is empty
|
||||
connection.project = undefined;
|
||||
connection.credentials = undefined;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -89,13 +86,19 @@ export function updateSupabaseConnection(connection: Partial<SupabaseConnectionS
|
||||
supabaseConnection.set(newState);
|
||||
|
||||
/*
|
||||
* Always save the connection state to localStorage to persist across chats
|
||||
* Always save the connection state to localStorage to persist across chats
|
||||
*/
|
||||
if (connection.user || connection.token || connection.selectedProjectId !== undefined) {
|
||||
if (connection.user || connection.token || connection.selectedProjectId !== undefined || connection.credentials) {
|
||||
localStorage.setItem('supabase_connection', JSON.stringify(newState));
|
||||
|
||||
if (newState.credentials) {
|
||||
localStorage.setItem('supabaseCredentials', JSON.stringify(newState.credentials));
|
||||
} else {
|
||||
localStorage.removeItem('supabaseCredentials');
|
||||
}
|
||||
} else {
|
||||
localStorage.removeItem('supabase_connection');
|
||||
localStorage.removeItem('supabaseCredentials');
|
||||
}
|
||||
}
|
||||
|
||||
@@ -103,23 +106,26 @@ export async function fetchSupabaseStats(token: string) {
|
||||
isFetchingStats.set(true);
|
||||
|
||||
try {
|
||||
const response = await fetch('https://api.supabase.com/v1/projects', {
|
||||
// Use the internal API route instead of direct Supabase API call
|
||||
const response = await fetch('/api/supabase', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
Authorization: `Bearer ${token}`,
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify({
|
||||
token,
|
||||
}),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to fetch projects');
|
||||
}
|
||||
|
||||
const projects = (await response.json()) as any;
|
||||
const data = (await response.json()) as any;
|
||||
|
||||
updateSupabaseConnection({
|
||||
stats: {
|
||||
projects,
|
||||
totalProjects: projects.length,
|
||||
},
|
||||
user: data.user,
|
||||
stats: data.stats,
|
||||
});
|
||||
} catch (error) {
|
||||
console.error('Failed to fetch Supabase stats:', error);
|
||||
@@ -128,3 +134,49 @@ export async function fetchSupabaseStats(token: string) {
|
||||
isFetchingStats.set(false);
|
||||
}
|
||||
}
|
||||
|
||||
export async function fetchProjectApiKeys(projectId: string, token: string) {
|
||||
isFetchingApiKeys.set(true);
|
||||
|
||||
try {
|
||||
const response = await fetch('/api/supabase/variables', {
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/json',
|
||||
},
|
||||
body: JSON.stringify({
|
||||
projectId,
|
||||
token,
|
||||
}),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to fetch API keys');
|
||||
}
|
||||
|
||||
const data = (await response.json()) as any;
|
||||
const apiKeys = data.apiKeys;
|
||||
|
||||
const anonKey = apiKeys.find((key: SupabaseApiKey) => key.name === 'anon' || key.name === 'public');
|
||||
|
||||
if (anonKey) {
|
||||
const supabaseUrl = `https://${projectId}.supabase.co`;
|
||||
|
||||
updateSupabaseConnection({
|
||||
credentials: {
|
||||
anonKey: anonKey.api_key,
|
||||
supabaseUrl,
|
||||
},
|
||||
});
|
||||
|
||||
return { anonKey: anonKey.api_key, supabaseUrl };
|
||||
}
|
||||
|
||||
return null;
|
||||
} catch (error) {
|
||||
console.error('Failed to fetch project API keys:', error);
|
||||
throw error;
|
||||
} finally {
|
||||
isFetchingApiKeys.set(false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user