Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 1x 1x 3x 2x 2x 2x 2x 3x 1x 1x 1x 1x 1x 1x 1x 24x 24x 24x 24x 24x 24x 24x 24x 24x 19x 19x 19x 19x 24x 1x 1x 1x 1x 1x 2x 2x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 2x 2x 1x 1x 1x 1x 2x 1x 1x 1x 2x 2x 1x 1x 1x 1x 1x 3x 3x 1x 1x 1x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 2x 2x 1x 1x 1x 2x 1x 1x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 2x 2x 2x 3x 3x 1x 1x 1x 1x 1x 1x 1x | import * as vscode from "vscode";
import { getUserByID } from "../api/user-api";
import { AUTH_CONTEXT, User } from "../api/types/user";
import { globalContext } from "../extension";
import { signIn, signUp } from "../api/auth-api";
import {
authNotification,
authSignOutNotification,
errorNotification,
showAuthNotification,
} from "../views/notifications";
import { BASE_URL } from "../api/types/endpoints";
import { getSupabase } from "../auth/supabaseClient";
/**
* Sets the authentication context for the user in the VS Code global state.
*
* This stores the user session and authentication status for extension-wide access.
*
* @param user - The user object to store in global state, or `undefined` to clear authentication.
* @returns An object containing an optional error message.
*/
export async function setAuthContext(
user: User | undefined
): Promise<{ error?: string }> {
try {
if (!globalContext) {
throw new Error("Invalid user or context provided.");
}
await globalContext.globalState.update(AUTH_CONTEXT, user);
return {};
} catch (err) {
return {
error: err instanceof Error ? err.message : "Unknown error occurred",
};
}
}
/**
* Retrieves the current authentication context from the global extension state.
*
* @returns An object containing either the user context or an error message.
*/
export async function getAuthContext(): Promise<{
context?: User;
error?: string;
}> {
try {
const context = globalContext.globalState.get<User | undefined>(
AUTH_CONTEXT
);
return { context };
} catch (err) {
return {
error: err instanceof Error ? err.message : "Unknown error occurred",
};
}
}
/**
* Checks if a user is signed in, and if not, prompts them to authenticate.
*/
export async function checkUserSignIn() {
const { context: user, error } = await getAuthContext();
if (error) {
await errorNotification(`Failed to get user context: ${error}`);
return;
}
if (user === undefined) {
await authNotification();
return;
}
// Get the current session token from Supabase
const supabase = getSupabase();
const { data: sessionData } = await supabase.auth.getSession();
const token = sessionData?.session?.access_token || user.auth_token || user.id;
await getUserByID(token).then(async ({ user: refreshedUser, error }) => {
if (error) {
console.warn(`Failed to get user data during startup: ${error}`);
return;
}
setAuthContext(refreshedUser);
});
if (user.isAuthenticated) {
await showAuthNotification(`Welcome back, ${user.first_name}! 🎉`);
return;
}
}
/**
* Displays a menu for the user to sign in or sign up.
*/
export async function signInOrUpMenu() {
const { context: user, error } = await getAuthContext();
if (error) {
errorNotification(`Failed to get user context: ${error}`);
return;
}
if (user && user.isAuthenticated) {
await authSignOutNotification(
`You are already signed in as ${user.email}.`
);
} else {
// Temporarily commenting out sign-in/sign-up selection - only GitHub OAuth is active
// const signInMethod = await vscode.window.showQuickPick(
// ["Sign in", "Sign up"],
// { placeHolder: "Sign in or create an account" }
// );
// if (signInMethod === "Sign in") {
// signInMenu();
// } else if (signInMethod === "Sign up") {
// handleSignUp();
// }
// Directly call GitHub sign-in
signInMenu();
}
}
/**
* Displays the sign-out confirmation menu.
*/
export async function signOutMenu() {
const { context: user, error } = await getAuthContext();
if (error) {
vscode.window.showErrorMessage(`Failed to get user context: ${error}`);
return;
}
if (!user || !user.isAuthenticated) {
showAuthNotification(`You are already signed out.`);
return;
}
await authSignOutNotification(`Are you sure you want to sign out?`);
}
/**
* Displays a menu for the user to choose an email or GitHub sign-in method.
*/
export async function signInMenu() {
// Temporarily commenting out email option - only GitHub OAuth is active
// const action = await vscode.window.showQuickPick(
// ["Sign In with Email", "Sign In with GitHub"],
// {
// placeHolder: "Select a sign-in method",
// }
// );
// if (!action) {
// return;
// }
// switch (action) {
// case "Sign In with Email":
// await handleSignIn();
// break;
// case "Sign In with GitHub":
// await signInWithGithub();
// break;
// }
// Directly call GitHub sign-in
await signInWithGithub();
}
/**
* Handles the email and password sign-in flow.
*/
export async function handleSignIn() {
const email = await vscode.window.showInputBox({
prompt: "Enter your email",
placeHolder: "sample@gmail.com",
});
if (!email) {
return;
}
const password = await vscode.window.showInputBox({
prompt: "Enter your password",
placeHolder: "password",
password: true,
});
if (!password) {
return;
}
const { token, error } = await signIn(email, password);
if (error || !token) {
vscode.window.showErrorMessage(
`Sign In failed. Email or password may be incorrect.`
);
const choice = await vscode.window.showInformationMessage(
"Account not found. Would you like to sign up with this Email and Password?",
"Yes",
"No"
);
if (choice === "Yes") {
await handleSignUpProvided(email, password);
}
return;
}
// Store the Supabase session manually so it's restored later
const supabase = getSupabase();
const { error: sessionError } = await supabase.auth.setSession({
access_token: token,
refresh_token: token,
});
if (sessionError) {
console.error("[Auth] Failed to set Supabase session:", sessionError.message);
} else {
console.log("[Auth] Supabase session persisted successfully.");
}
// Now fetch user data as usual
const { user, error: getUserError } = await getUserByID(token);
if (getUserError || !user) {
vscode.window.showErrorMessage(`Failed to get user data: ${getUserError}`);
return;
}
user.isAuthenticated = true;
const { error: authError } = await setAuthContext(user);
if (authError) {
vscode.window.showErrorMessage(`Failed to set user context: ${authError}`);
return;
}
await showAuthNotification("Sign In successfully! 🎉");
vscode.commands.executeCommand("collabAgent.authStateChanged");
}
/**
* Signs up a user using email, password, and name if they are not found.
*
* @param email - User's email address.
* @param password - User's password.
*/
export async function handleSignUpProvided(email: string, password: string) {
const firstName = await vscode.window.showInputBox({
prompt: "Enter your first name",
placeHolder: "Example: John",
});
if (!firstName) {
return;
}
const lastName = await vscode.window.showInputBox({
prompt: "Enter your last name",
placeHolder: "Example: Doe",
});
if (!lastName) {
return;
}
const { token, error } = await signUp(email, password, firstName, lastName);
if (error || !token) {
vscode.window.showErrorMessage(`Sign Up failed.`);
return;
}
const { user, error: getUserError } = await getUserByID(token);
if (getUserError || !user) {
vscode.window.showErrorMessage(`Failed to get user data: ${getUserError}`);
return;
}
user.isAuthenticated = true;
const { error: authError } = await setAuthContext(user);
if (authError) {
vscode.window.showErrorMessage(`Failed to set user context: ${authError}`);
return;
}
await showAuthNotification("Sign Up successfully! 🎉");
vscode.commands.executeCommand("collabAgent.authStateChanged");
}
/**
* Signs the user out and resets the authentication context.
*/
export async function handleSignOut() {
const { context: user, error: contextError } = await getAuthContext();
if (contextError || !user) {
await errorNotification(`Failed to get user context: ${contextError}`);
return;
}
const { error: setAuthError } = await setAuthContext(undefined);
if (setAuthError) {
await errorNotification(`Failed to set user context: ${setAuthError}`);
return;
}
// Clear the stored GitHub access token
try {
const { clearGitHubAccessToken } = require('./github-verification-service');
await clearGitHubAccessToken();
} catch (err) {
console.warn('Failed to clear GitHub token:', err);
}
await showAuthNotification(`Sign Out Successfully! 👋`);
vscode.commands.executeCommand("collabAgent.authStateChanged");
}
/**
* Handles the full email/password sign-up flow for new users.
*/
export async function handleSignUp() {
const firstName = await vscode.window.showInputBox({
prompt: "Enter your first name",
placeHolder: "Example: John",
});
if (!firstName) {
return;
}
const lastName = await vscode.window.showInputBox({
prompt: "Enter your last name",
placeHolder: "Example: Doe",
});
if (!lastName) {
return;
}
const email = await vscode.window.showInputBox({
prompt: "Enter your email",
placeHolder: "sample@gmail.com",
});
if (!email) {
return;
}
const password = await vscode.window.showInputBox({
prompt: "Enter your password",
placeHolder: "password",
password: true,
});
if (!password) {
return;
}
const { token, error } = await signUp(email, password, firstName, lastName);
if (error || !token) {
await errorNotification(`Sign Up failed: ${error}`);
await authNotification();
} else {
const { user, error: getUserError } = await getUserByID(token);
if (getUserError || !user) {
await errorNotification(`Failed to get user data: ${getUserError}`);
await authNotification();
return;
}
await showAuthNotification("Sign Up successfully! 🎉");
const { error } = await setAuthContext(user);
if (error) {
await errorNotification(`Failed to register user in backend: ${error}`);
}
vscode.commands.executeCommand("collabAgent.authStateChanged");
}
}
/**
* Signs in a user through GitHub OAuth authentication flow.
* Opens external browser for OAuth flow and handles the callback.
*/
export async function signInWithGithub() {
try {
// Use require to avoid needing explicit .js extension under nodenext resolution
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { getSupabase } = require("../auth/supabaseClient");
const supabase = getSupabase();
// Build deep link dynamically from the actual extension id so it keeps working if the publisher changes
// Expected format: vscode://{publisher}.{extensionName}/auth/callback
let redirectTo = "vscode://unknown.publisher/auth/callback";
try {
const thisExt = vscode.extensions.all.find(
(e) => e.extensionUri.toString() === (globalContext?.extensionUri.toString() || "")
);
const extId = thisExt?.id; // e.g., "publisher.collab-agent01"
if (extId) {
redirectTo = `vscode://${extId}/auth/callback`;
}
} catch {}
const { data, error } = await supabase.auth.signInWithOAuth({
provider: "github",
options: { redirectTo }
});
if (error) throw error;
if (data?.url) {
await vscode.env.openExternal(vscode.Uri.parse(data.url));
} else {
throw new Error("No OAuth URL returned from Supabase");
}
} catch (error: any) {
await errorNotification(`GitHub Sign In failed: ${error.message}`);
await authNotification();
}
}
export async function getCurrentUserId(): Promise<string | null> {
const supabase = getSupabase();
// Try to refresh and persist the session
const { data: sessionData, error: sessionError } = await supabase.auth.getSession();
if (sessionError) {
console.warn("[Auth] getSession error:", sessionError.message);
}
if (sessionData?.session?.user?.id) {
console.log("[Auth] Found session user ID:", sessionData.session.user.id);
return sessionData.session.user.id;
}
// Try fallback - explicitly fetch user
const { data: userData, error: userError } = await supabase.auth.getUser();
if (userError) {
console.warn("[Auth] getUser fallback failed:", userError.message);
} else if (userData?.user) {
console.log("[Auth] Found user via getUser fallback:", userData.user.id);
return userData.user.id;
}
console.warn("[Auth] No session found in Supabase client.");
return null;
}
|