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 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 8x 8x 8x 8x 8x 1x 1x 7x 7x 6x 6x 8x 2x 2x 2x 2x 8x 1x 1x 1x 1x 1x 1x 1x 12x 12x 12x 12x 12x 12x 12x 12x 12x 3x 3x 3x 3x 12x 1x 1x 1x 1x 1x 3x 3x 1x 1x 1x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 1x 3x 3x 3x 3x 1x 1x 1x 3x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 2x 3x 1x 1x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 4x 4x 4x 4x 4x 4x 4x 4x 1x 1x 3x 3x 4x 1x 1x 4x 1x 1x 4x 4x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 1x 1x 2x 2x 2x 2x 2x 2x 3x 2x 2x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 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 1x 1x 1x 1x 1x 2x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 2x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 1x 1x 2x 2x 2x 2x 2x 3x 2x 2x 2x 2x 2x 3x 2x 2x 2x 2x 2x 2x 3x 2x 2x 2x 3x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 1x 1x 1x 1x 1x 1x 3x 3x 3x 3x 3x 3x 3x 3x 1x 1x 1x 3x | import * as vscode from "vscode"; import { LogEvent } from "../api/types/event"; import { trackEvent } from "../api/log-api"; 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"; /** * 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 { console.log("Setting auth context", user); 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; } await getUserByID(user.id).then(async ({ user, error }) => { if (error) { await errorNotification(`Failed to get user data: ${error}`); return; } setAuthContext(user); }); if (user.isAuthenticated) { await showAuthNotification(`Welcome back, ${user.first_name}! 🎉`); return; } // if (sessionData?.session?.user) { // const user = sessionData.session.user; // await setAuthContext({ id: user.id, email: user.email }, sessionData.session, true); // vscode.window.showInformationMessage(`Welcome back, ${user.email}! 🎉`); // } else { // } } /** * 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 { 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(); } } } /** * Signs the user out and clears their authentication context. */ 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() { 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; } } /** * 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; } 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("clover.authStateChanged"); trackEvent({ event: LogEvent.USER_LOGIN, timeLapse: 0, metadata: { user_id: user.id, email }, }); } /** * 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("clover.authStateChanged"); trackEvent({ event: LogEvent.USER_SIGNUP, timeLapse: 0, metadata: { user_id: user.id, email }, }); } /** * 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; } // Add this back later // const { error: signOutError } = await signOut(user.id); // if (signOutError) { // vscode.window.showErrorMessage(`Sign Out failed: ${signOutError}`); // return; // } const { error: setAuthError } = await setAuthContext(undefined); if (setAuthError) { await errorNotification(`Failed to set user context: ${setAuthError}`); return; } await showAuthNotification(`Sign Out Successfully! 👋`); vscode.commands.executeCommand("clover.authStateChanged"); trackEvent({ event: LogEvent.USER_LOGOUT, timeLapse: 0, metadata: { user_id: user.id }, }); } /** * 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("clover.authStateChanged"); trackEvent({ event: LogEvent.USER_SIGNUP, timeLapse: 0, metadata: { user_id: user.id, email: email }, }); } } /** /** * Signs in a user through GitHub OAuth authentication flow. */ export async function signInWithGithub() { try { // Redirect to GitHub for authentication await vscode.env.openExternal( vscode.Uri.parse( `https://ai.nickrucinski.com/auth/login?provider=github&next=vscode://capstone-team-2.temple-capstone-clover/auth-complete` ) ); } catch (error: any) { await errorNotification(`GitHub Sign In failed: ${error.message}`); await authNotification(); } } |