"use client"; import { useState, useEffect, useRef, useCallback } from "react"; import PropTypes from "prop-types"; import { Modal, Button, Input } from "@/shared/components"; import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard"; /** * OAuth Modal Component * - Localhost: Auto callback via popup message * - Remote: Manual paste callback URL */ export default function OAuthModal({ isOpen, provider, providerInfo, onSuccess, onClose, oauthMeta, idcConfig }) { const [step, setStep] = useState("waiting"); // waiting | input | success | error const [authData, setAuthData] = useState(null); const [callbackUrl, setCallbackUrl] = useState(""); const [error, setError] = useState(null); const [isDeviceCode, setIsDeviceCode] = useState(false); const [deviceData, setDeviceData] = useState(null); const [polling, setPolling] = useState(false); const popupRef = useRef(null); const pollingAbortRef = useRef(false); const { copied, copy } = useCopyToClipboard(); // State for client-only values to avoid hydration mismatch const [isLocalhost, setIsLocalhost] = useState(false); const [placeholderUrl, setPlaceholderUrl] = useState("/callback?code=..."); const callbackProcessedRef = useRef(false); // Detect if running on localhost (client-side only) useEffect(() => { if (typeof window !== "undefined") { setIsLocalhost( window.location.hostname === "localhost" || window.location.hostname === "127.0.0.1" ); setPlaceholderUrl(`${window.location.origin}/callback?code=...`); } }, []); // Define all useCallback hooks BEFORE the useEffects that reference them // Exchange tokens const exchangeTokens = useCallback(async (code, state) => { if (!authData) return; try { const res = await fetch(`/api/oauth/${provider}/exchange`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ code, redirectUri: authData.redirectUri, codeVerifier: authData.codeVerifier, state, ...(oauthMeta ? { meta: oauthMeta } : {}), }), }); const data = await res.json(); if (!res.ok) throw new Error(data.error); setStep("success"); onSuccess?.(); } catch (err) { setError(err.message); setStep("error"); } }, [authData, provider, onSuccess]); // Poll for device code token const startPolling = useCallback(async (deviceCode, codeVerifier, interval, extraData) => { pollingAbortRef.current = false; setPolling(true); const maxAttempts = 60; for (let i = 0; i < maxAttempts; i++) { // Check if polling should be aborted if (pollingAbortRef.current) { console.log("[OAuthModal] Polling aborted"); setPolling(false); return; } await new Promise((r) => setTimeout(r, interval * 1000)); // Check again after sleep if (pollingAbortRef.current) { console.log("[OAuthModal] Polling aborted after sleep"); setPolling(false); return; } try { const res = await fetch(`/api/oauth/${provider}/poll`, { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ deviceCode, codeVerifier, extraData }), }); const data = await res.json(); if (data.success) { pollingAbortRef.current = true; // Stop polling immediately setStep("success"); setPolling(false); onSuccess?.(); return; } if (data.error === "expired_token" || data.error === "access_denied") { throw new Error(data.errorDescription || data.error); } if (data.error === "slow_down") { interval = Math.min(interval + 5, 30); } } catch (err) { setError(err.message); setStep("error"); setPolling(false); return; } } setError("Authorization timeout"); setStep("error"); setPolling(false); }, [provider, onSuccess]); // Start OAuth flow const startOAuthFlow = useCallback(async () => { if (!provider) return; try { setError(null); // Device code flow providers const deviceCodeProviders = ["github", "qwen", "kiro", "kimi-coding", "kilocode", "codebuddy"]; if (deviceCodeProviders.includes(provider)) { setIsDeviceCode(true); setStep("waiting"); const deviceCodeUrl = new URL(`/api/oauth/${provider}/device-code`, window.location.origin); if (provider === "kiro" && idcConfig?.startUrl) { deviceCodeUrl.searchParams.set("start_url", idcConfig.startUrl); if (idcConfig.region) { deviceCodeUrl.searchParams.set("region", idcConfig.region); } deviceCodeUrl.searchParams.set("auth_method", "idc"); } const res = await fetch(deviceCodeUrl.toString()); const data = await res.json(); if (!res.ok) throw new Error(data.error); setDeviceData(data); // Pass extraData for Kiro (contains _clientId, _clientSecret) const extraData = provider === "kiro" ? { _clientId: data._clientId, _clientSecret: data._clientSecret, _region: data._region, _authMethod: data._authMethod, _startUrl: data._startUrl, } : null; startPolling(data.device_code, data.codeVerifier, data.interval || 5, extraData); return; } // Authorization code flow - build redirect URI (some providers require fixed ports) const appPort = window.location.port || (window.location.protocol === "https:" ? "443" : "80"); let redirectUri; let codexProxyActive = false; if (provider === "codex") { // Try to start proxy on fixed port 1455 → redirect callback to app port try { const proxyRes = await fetch(`/api/oauth/codex/start-proxy?app_port=${appPort}`); const proxyData = await proxyRes.json(); codexProxyActive = proxyData.success; } catch { codexProxyActive = false; } // Always use fixed port 1455 as redirect_uri (Codex requirement) redirectUri = "http://localhost:1455/auth/callback"; } else { redirectUri = `http://localhost:${appPort}/callback`; } // Build authorize URL, optionally passing provider-specific metadata (e.g. gitlab clientId) const authorizeUrl = new URL(`/api/oauth/${provider}/authorize`, window.location.origin); authorizeUrl.searchParams.set("redirect_uri", redirectUri); if (oauthMeta) { Object.entries(oauthMeta).forEach(([k, v]) => { if (v) authorizeUrl.searchParams.set(k, v); }); } const res = await fetch(authorizeUrl.toString()); const data = await res.json(); if (!res.ok) throw new Error(data.error); setAuthData({ ...data, redirectUri }); if (provider === "codex" && codexProxyActive) { // Proxy active: callback will redirect to app port automatically setStep("waiting"); popupRef.current = window.open(data.authUrl, "oauth_popup", "width=600,height=700"); if (!popupRef.current) { setStep("input"); } } else if (!isLocalhost || provider === "codex") { // Non-localhost or proxy failed: manual input mode setStep("input"); window.open(data.authUrl, "_blank"); } else { // Localhost (non-Codex): Open popup and wait for message setStep("waiting"); popupRef.current = window.open(data.authUrl, "oauth_popup", "width=600,height=700"); if (!popupRef.current) { setStep("input"); } } } catch (err) { setError(err.message); setStep("error"); } }, [provider, isLocalhost, startPolling, oauthMeta, idcConfig]); // Reset state and start OAuth when modal opens useEffect(() => { if (isOpen && provider) { setAuthData(null); setCallbackUrl(""); setError(null); setIsDeviceCode(false); setDeviceData(null); setPolling(false); pollingAbortRef.current = false; startOAuthFlow(); } else if (!isOpen) { // Abort polling and cleanup proxy when modal closes pollingAbortRef.current = true; if (provider === "codex") { fetch("/api/oauth/codex/stop-proxy").catch(() => {}); } } }, [isOpen, provider, startOAuthFlow]); // Listen for OAuth callback via multiple methods useEffect(() => { if (!authData) return; callbackProcessedRef.current = false; // Reset when authData changes // Handler for callback data - only process once const handleCallback = async (data) => { if (callbackProcessedRef.current) return; // Already processed const { code, state, error: callbackError, errorDescription } = data; if (callbackError) { callbackProcessedRef.current = true; setError(errorDescription || callbackError); setStep("error"); return; } if (code) { callbackProcessedRef.current = true; await exchangeTokens(code, state); } }; // Method 1: postMessage from popup const handleMessage = (event) => { // Allow messages from same origin or localhost (any port) const isLocalhost = event.origin.includes("localhost") || event.origin.includes("127.0.0.1"); const isSameOrigin = event.origin === window.location.origin; if (!isLocalhost && !isSameOrigin) return; if (event.data?.type === "oauth_callback") { handleCallback(event.data.data); } }; window.addEventListener("message", handleMessage); // Method 2: BroadcastChannel let channel; try { channel = new BroadcastChannel("oauth_callback"); channel.onmessage = (event) => handleCallback(event.data); } catch (e) { console.log("BroadcastChannel not supported"); } // Method 3: localStorage event const handleStorage = (event) => { if (event.key === "oauth_callback" && event.newValue) { try { const data = JSON.parse(event.newValue); handleCallback(data); localStorage.removeItem("oauth_callback"); } catch (e) { console.log("Failed to parse localStorage data"); } } }; window.addEventListener("storage", handleStorage); // Also check localStorage on mount (in case callback already happened) try { const stored = localStorage.getItem("oauth_callback"); if (stored) { const data = JSON.parse(stored); if (data.timestamp && Date.now() - data.timestamp < 30000) { handleCallback(data); } localStorage.removeItem("oauth_callback"); } } catch { // localStorage may be unavailable or data may be malformed - ignore silently } return () => { window.removeEventListener("message", handleMessage); window.removeEventListener("storage", handleStorage); if (channel) channel.close(); }; }, [authData, exchangeTokens]); // Handle manual URL input const handleManualSubmit = async () => { try { setError(null); const url = new URL(callbackUrl); const code = url.searchParams.get("code"); const state = url.searchParams.get("state"); const errorParam = url.searchParams.get("error"); if (errorParam) { throw new Error(url.searchParams.get("error_description") || errorParam); } if (!code) { throw new Error("No authorization code found in URL"); } await exchangeTokens(code, state); } catch (err) { setError(err.message); setStep("error"); } }; // Clear session on modal close + cleanup proxy const handleClose = useCallback(() => { if (provider === "codex") { fetch("/api/oauth/codex/stop-proxy").catch(() => {}); } onClose(); }, [onClose, provider]); if (!provider || !providerInfo) return null; const deviceLoginUrl = deviceData?.verification_uri_complete || deviceData?.verification_uri || ""; return (
{/* Waiting Step (Localhost - popup mode) */} {step === "waiting" && !isDeviceCode && (
progress_activity

Waiting for Authorization

Complete the authorization in the popup window.

)} {/* Device Code Flow - Waiting */} {step === "waiting" && isDeviceCode && deviceData && ( <>

Visit the login URL below and authorize:

Login URL

{deviceLoginUrl}

Your Code

{deviceData.user_code}

{polling && (
progress_activity Waiting for authorization...
)} )} {/* Manual Input Step */} {step === "input" && !isDeviceCode && ( <>

Step 1: Open this URL in your browser

Step 2: Paste the callback URL here

After authorization, copy the full URL from your browser.

setCallbackUrl(e.target.value)} placeholder={placeholderUrl} className="font-mono text-xs" />
)} {/* Success Step */} {step === "success" && (
check_circle

Connected Successfully!

Your {providerInfo.name} account has been connected.

)} {/* Error Step */} {step === "error" && (
error

Connection Failed

{error}

)}
); } OAuthModal.propTypes = { isOpen: PropTypes.bool.isRequired, provider: PropTypes.string, providerInfo: PropTypes.shape({ name: PropTypes.string }), onSuccess: PropTypes.func, onClose: PropTypes.func.isRequired, /** Extra metadata passed to /authorize and /exchange (e.g. gitlab clientId/baseUrl) */ oauthMeta: PropTypes.object, /** Optional Kiro IDC config for AWS IAM Identity Center device flow */ idcConfig: PropTypes.shape({ startUrl: PropTypes.string, region: PropTypes.string, }), };