- Updated Kiro OAuth configuration
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 9.3 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 5.2 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 10 KiB |
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 8.7 KiB |
|
Before Width: | Height: | Size: 52 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -195,7 +195,7 @@ export default function ClaudeToolCard({
|
|||||||
<div className="flex items-center justify-between hover:cursor-pointer" onClick={onToggle}>
|
<div className="flex items-center justify-between hover:cursor-pointer" onClick={onToggle}>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<div className="size-12 flex items-center justify-center">
|
<div className="size-12 flex items-center justify-center">
|
||||||
<Image src="/providers/claude.png" alt={tool.name} width={40} height={40} className="size-12 object-contain rounded-xl" style={{ width: "auto", height: "auto" }} onError={(e) => { e.target.style.display = "none"; }} />
|
<Image src="/providers/claude.png" alt={tool.name} width={40} height={40} className="size-12 object-contain rounded-xl max-w-[48px] max-h-[48px]" sizes="48px" onError={(e) => { e.target.style.display = "none"; }} />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ wire_api = "responses"
|
|||||||
<div className="flex items-center justify-between hover:cursor-pointer" onClick={onToggle}>
|
<div className="flex items-center justify-between hover:cursor-pointer" onClick={onToggle}>
|
||||||
<div className="flex items-center gap-4">
|
<div className="flex items-center gap-4">
|
||||||
<div className="size-12 flex items-center justify-center">
|
<div className="size-12 flex items-center justify-center">
|
||||||
<Image src="/providers/codex.png" alt={tool.name} width={40} height={40} className="size-12 object-contain rounded-xl" style={{ width: "auto", height: "auto" }} onError={(e) => { e.target.style.display = "none"; }} />
|
<Image src="/providers/codex.png" alt={tool.name} width={40} height={40} className="size-12 object-contain rounded-xl max-w-[48px] max-h-[48px]" sizes="48px" onError={(e) => { e.target.style.display = "none"; }} />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
|
|||||||
@@ -235,8 +235,8 @@ export default function DefaultToolCard({ toolId, tool, isExpanded, onToggle, ba
|
|||||||
alt={tool.name}
|
alt={tool.name}
|
||||||
width={40}
|
width={40}
|
||||||
height={40}
|
height={40}
|
||||||
className="size-12 object-contain rounded-xl bg-gray-500"
|
className="size-12 object-contain rounded-xl bg-gray-500 max-w-[48px] max-h-[48px]"
|
||||||
style={{ width: "auto", height: "auto" }}
|
sizes="48px"
|
||||||
onError={(e) => { e.target.style.display = "none"; }}
|
onError={(e) => { e.target.style.display = "none"; }}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
@@ -250,8 +250,8 @@ export default function DefaultToolCard({ toolId, tool, isExpanded, onToggle, ba
|
|||||||
alt={tool.name}
|
alt={tool.name}
|
||||||
width={40}
|
width={40}
|
||||||
height={40}
|
height={40}
|
||||||
className="size-10 object-contain rounded-xl"
|
className="size-10 object-contain rounded-xl max-w-[40px] max-h-[40px]"
|
||||||
style={{ width: "auto", height: "auto" }}
|
sizes="40px"
|
||||||
onError={(e) => { e.target.style.display = "none"; }}
|
onError={(e) => { e.target.style.display = "none"; }}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import PropTypes from "prop-types";
|
|||||||
import { useParams } from "next/navigation";
|
import { useParams } from "next/navigation";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import Image from "next/image";
|
import Image from "next/image";
|
||||||
import { Card, Button, Badge, Input, Modal, CardSkeleton, OAuthModal, Toggle } from "@/shared/components";
|
import { Card, Button, Badge, Input, Modal, CardSkeleton, OAuthModal, KiroOAuthWrapper, Toggle } from "@/shared/components";
|
||||||
import { OAUTH_PROVIDERS, APIKEY_PROVIDERS, getProviderAlias } from "@/shared/constants/providers";
|
import { OAUTH_PROVIDERS, APIKEY_PROVIDERS, getProviderAlias } from "@/shared/constants/providers";
|
||||||
import { getModelsByProviderId } from "@/shared/constants/models";
|
import { getModelsByProviderId } from "@/shared/constants/models";
|
||||||
import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard";
|
import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard";
|
||||||
@@ -275,8 +275,8 @@ export default function ProviderDetailPage() {
|
|||||||
alt={providerInfo.name}
|
alt={providerInfo.name}
|
||||||
width={48}
|
width={48}
|
||||||
height={48}
|
height={48}
|
||||||
className="object-contain rounded-lg"
|
className="object-contain rounded-lg max-w-[48px] max-h-[48px]"
|
||||||
style={{ width: "auto", height: "auto" }}
|
sizes="48px"
|
||||||
onError={(e) => { e.currentTarget.style.display = "none"; }}
|
onError={(e) => { e.currentTarget.style.display = "none"; }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -344,13 +344,22 @@ export default function ProviderDetailPage() {
|
|||||||
</Card>
|
</Card>
|
||||||
|
|
||||||
{/* Modals */}
|
{/* Modals */}
|
||||||
<OAuthModal
|
{providerId === "kiro" ? (
|
||||||
isOpen={showOAuthModal}
|
<KiroOAuthWrapper
|
||||||
provider={providerId}
|
isOpen={showOAuthModal}
|
||||||
providerInfo={providerInfo}
|
providerInfo={providerInfo}
|
||||||
onSuccess={handleOAuthSuccess}
|
onSuccess={handleOAuthSuccess}
|
||||||
onClose={() => setShowOAuthModal(false)}
|
onClose={() => setShowOAuthModal(false)}
|
||||||
/>
|
/>
|
||||||
|
) : (
|
||||||
|
<OAuthModal
|
||||||
|
isOpen={showOAuthModal}
|
||||||
|
provider={providerId}
|
||||||
|
providerInfo={providerInfo}
|
||||||
|
onSuccess={handleOAuthSuccess}
|
||||||
|
onClose={() => setShowOAuthModal(false)}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
<AddApiKeyModal
|
<AddApiKeyModal
|
||||||
isOpen={showAddApiKeyModal}
|
isOpen={showAddApiKeyModal}
|
||||||
provider={providerId}
|
provider={providerId}
|
||||||
|
|||||||
@@ -155,8 +155,8 @@ function ProviderCard({ providerId, provider, stats }) {
|
|||||||
alt={provider.name}
|
alt={provider.name}
|
||||||
width={40}
|
width={40}
|
||||||
height={40}
|
height={40}
|
||||||
className="object-contain rounded-lg"
|
className="object-contain rounded-lg max-w-[40px] max-h-[40px]"
|
||||||
style={{ width: "auto", height: "auto" }}
|
sizes="40px"
|
||||||
onError={() => setImgError(true)}
|
onError={() => setImgError(true)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -0,0 +1,76 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import { KiroService } from "@/lib/oauth/services/kiro";
|
||||||
|
import { createProviderConnection, isCloudEnabled } from "@/models";
|
||||||
|
import { getConsistentMachineId } from "@/shared/utils/machineId";
|
||||||
|
import { syncToCloud } from "@/app/api/sync/cloud/route";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* POST /api/oauth/kiro/import
|
||||||
|
* Import and validate refresh token from Kiro IDE
|
||||||
|
*/
|
||||||
|
export async function POST(request) {
|
||||||
|
try {
|
||||||
|
const { refreshToken } = await request.json();
|
||||||
|
|
||||||
|
if (!refreshToken || typeof refreshToken !== "string") {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: "Refresh token is required" },
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const kiroService = new KiroService();
|
||||||
|
|
||||||
|
// Validate and refresh token
|
||||||
|
const tokenData = await kiroService.validateImportToken(refreshToken.trim());
|
||||||
|
|
||||||
|
// Extract email from JWT if available
|
||||||
|
const email = kiroService.extractEmailFromJWT(tokenData.accessToken);
|
||||||
|
|
||||||
|
// Save to database
|
||||||
|
const connection = await createProviderConnection({
|
||||||
|
provider: "kiro",
|
||||||
|
authType: "oauth",
|
||||||
|
accessToken: tokenData.accessToken,
|
||||||
|
refreshToken: tokenData.refreshToken,
|
||||||
|
expiresAt: new Date(Date.now() + tokenData.expiresIn * 1000).toISOString(),
|
||||||
|
email: email || null,
|
||||||
|
providerSpecificData: {
|
||||||
|
profileArn: tokenData.profileArn,
|
||||||
|
authMethod: "imported",
|
||||||
|
provider: "Imported",
|
||||||
|
},
|
||||||
|
testStatus: "active",
|
||||||
|
});
|
||||||
|
|
||||||
|
// Auto sync to Cloud if enabled
|
||||||
|
await syncToCloudIfEnabled();
|
||||||
|
|
||||||
|
return NextResponse.json({
|
||||||
|
success: true,
|
||||||
|
connection: {
|
||||||
|
id: connection.id,
|
||||||
|
provider: connection.provider,
|
||||||
|
email: connection.email,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Kiro import token error:", error);
|
||||||
|
return NextResponse.json({ error: error.message }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sync to Cloud if enabled
|
||||||
|
*/
|
||||||
|
async function syncToCloudIfEnabled() {
|
||||||
|
try {
|
||||||
|
const cloudEnabled = await isCloudEnabled();
|
||||||
|
if (!cloudEnabled) return;
|
||||||
|
|
||||||
|
const machineId = await getConsistentMachineId();
|
||||||
|
await syncToCloud(machineId);
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Error syncing to cloud after Kiro import:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,43 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import { generatePKCE } from "@/lib/oauth/utils/pkce";
|
||||||
|
import { KiroService } from "@/lib/oauth/services/kiro";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GET /api/oauth/kiro/social-authorize
|
||||||
|
* Generate Google/GitHub social login URL for manual callback flow
|
||||||
|
* Uses kiro:// custom protocol as required by AWS Cognito
|
||||||
|
*/
|
||||||
|
export async function GET(request) {
|
||||||
|
try {
|
||||||
|
const { searchParams } = new URL(request.url);
|
||||||
|
const provider = searchParams.get("provider"); // "google" or "github"
|
||||||
|
|
||||||
|
if (!provider || !["google", "github"].includes(provider)) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: "Invalid provider. Use 'google' or 'github'" },
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate PKCE for social auth
|
||||||
|
const { codeVerifier, codeChallenge, state } = generatePKCE();
|
||||||
|
|
||||||
|
const kiroService = new KiroService();
|
||||||
|
const authUrl = kiroService.buildSocialLoginUrl(
|
||||||
|
provider,
|
||||||
|
codeChallenge,
|
||||||
|
state
|
||||||
|
);
|
||||||
|
|
||||||
|
return NextResponse.json({
|
||||||
|
authUrl,
|
||||||
|
state,
|
||||||
|
codeVerifier,
|
||||||
|
codeChallenge,
|
||||||
|
provider,
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Kiro social authorize error:", error);
|
||||||
|
return NextResponse.json({ error: error.message }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,87 @@
|
|||||||
|
import { NextResponse } from "next/server";
|
||||||
|
import { KiroService } from "@/lib/oauth/services/kiro";
|
||||||
|
import { createProviderConnection, isCloudEnabled } from "@/models";
|
||||||
|
import { getConsistentMachineId } from "@/shared/utils/machineId";
|
||||||
|
import { syncToCloud } from "@/app/api/sync/cloud/route";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* POST /api/oauth/kiro/social-exchange
|
||||||
|
* Exchange authorization code for tokens (Google/GitHub social login)
|
||||||
|
* Callback URL will be in format: kiro://kiro.kiroAgent/authenticate-success?code=XXX&state=YYY
|
||||||
|
*/
|
||||||
|
export async function POST(request) {
|
||||||
|
try {
|
||||||
|
const { code, codeVerifier, provider } = await request.json();
|
||||||
|
|
||||||
|
if (!code || !codeVerifier) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: "Missing required fields" },
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!provider || !["google", "github"].includes(provider)) {
|
||||||
|
return NextResponse.json(
|
||||||
|
{ error: "Invalid provider" },
|
||||||
|
{ status: 400 }
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const kiroService = new KiroService();
|
||||||
|
|
||||||
|
// Exchange code for tokens (redirect_uri handled internally)
|
||||||
|
const tokenData = await kiroService.exchangeSocialCode(
|
||||||
|
code,
|
||||||
|
codeVerifier
|
||||||
|
);
|
||||||
|
|
||||||
|
// Extract email from JWT if available
|
||||||
|
const email = kiroService.extractEmailFromJWT(tokenData.accessToken);
|
||||||
|
|
||||||
|
// Save to database
|
||||||
|
const connection = await createProviderConnection({
|
||||||
|
provider: "kiro",
|
||||||
|
authType: "oauth",
|
||||||
|
accessToken: tokenData.accessToken,
|
||||||
|
refreshToken: tokenData.refreshToken,
|
||||||
|
expiresAt: new Date(Date.now() + tokenData.expiresIn * 1000).toISOString(),
|
||||||
|
email: email || null,
|
||||||
|
providerSpecificData: {
|
||||||
|
profileArn: tokenData.profileArn,
|
||||||
|
authMethod: provider, // "google" or "github"
|
||||||
|
provider: provider.charAt(0).toUpperCase() + provider.slice(1),
|
||||||
|
},
|
||||||
|
testStatus: "active",
|
||||||
|
});
|
||||||
|
|
||||||
|
// Auto sync to Cloud if enabled
|
||||||
|
await syncToCloudIfEnabled();
|
||||||
|
|
||||||
|
return NextResponse.json({
|
||||||
|
success: true,
|
||||||
|
connection: {
|
||||||
|
id: connection.id,
|
||||||
|
provider: connection.provider,
|
||||||
|
email: connection.email,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Kiro social exchange error:", error);
|
||||||
|
return NextResponse.json({ error: error.message }, { status: 500 });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sync to Cloud if enabled
|
||||||
|
*/
|
||||||
|
async function syncToCloudIfEnabled() {
|
||||||
|
try {
|
||||||
|
const cloudEnabled = await isCloudEnabled();
|
||||||
|
if (!cloudEnabled) return;
|
||||||
|
|
||||||
|
const machineId = await getConsistentMachineId();
|
||||||
|
await syncToCloud(machineId);
|
||||||
|
} catch (error) {
|
||||||
|
console.log("Error syncing to cloud after Kiro OAuth:", error);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -48,7 +48,8 @@ export default function FlowAnimation() {
|
|||||||
alt={tool.name}
|
alt={tool.name}
|
||||||
width={48}
|
width={48}
|
||||||
height={48}
|
height={48}
|
||||||
className="object-contain rounded-xl"
|
className="object-contain rounded-xl max-w-[48px] max-h-[48px]"
|
||||||
|
sizes="48px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -113,22 +113,33 @@ export const GITHUB_CONFIG = {
|
|||||||
editorPluginVersion: "copilot-chat/0.26.7",
|
editorPluginVersion: "copilot-chat/0.26.7",
|
||||||
};
|
};
|
||||||
|
|
||||||
// Kiro OAuth Configuration (AWS SSO OIDC Device Code Flow)
|
// Kiro OAuth Configuration
|
||||||
|
// Supports multiple auth methods:
|
||||||
|
// 1. AWS Builder ID (Device Code Flow)
|
||||||
|
// 2. AWS IAM Identity Center/IDC (Device Code Flow with custom startUrl/region)
|
||||||
|
// 3. Google/GitHub Social Login (Authorization Code Flow - manual callback)
|
||||||
|
// 4. Import Token (paste refresh token from Kiro IDE)
|
||||||
export const KIRO_CONFIG = {
|
export const KIRO_CONFIG = {
|
||||||
// AWS SSO OIDC endpoints for Builder ID
|
// AWS SSO OIDC endpoints for Builder ID/IDC (Device Code Flow)
|
||||||
ssoOidcEndpoint: "https://oidc.us-east-1.amazonaws.com",
|
ssoOidcEndpoint: "https://oidc.us-east-1.amazonaws.com",
|
||||||
registerClientUrl: "https://oidc.us-east-1.amazonaws.com/client/register",
|
registerClientUrl: "https://oidc.us-east-1.amazonaws.com/client/register",
|
||||||
deviceAuthUrl: "https://oidc.us-east-1.amazonaws.com/device_authorization",
|
deviceAuthUrl: "https://oidc.us-east-1.amazonaws.com/device_authorization",
|
||||||
tokenUrl: "https://oidc.us-east-1.amazonaws.com/token",
|
tokenUrl: "https://oidc.us-east-1.amazonaws.com/token",
|
||||||
refreshTokenUrl: "https://prod.us-east-1.auth.desktop.kiro.dev/refreshToken",
|
// AWS Builder ID default start URL
|
||||||
// AWS Builder ID start URL
|
|
||||||
startUrl: "https://view.awsapps.com/start",
|
startUrl: "https://view.awsapps.com/start",
|
||||||
// Client registration params
|
// Client registration params
|
||||||
clientName: "kiro-cli",
|
clientName: "kiro-oauth-client",
|
||||||
clientType: "public",
|
clientType: "public",
|
||||||
scopes: ["codewhisperer:completions", "codewhisperer:analysis", "codewhisperer:conversations"],
|
scopes: ["codewhisperer:completions", "codewhisperer:analysis", "codewhisperer:conversations"],
|
||||||
grantTypes: ["urn:ietf:params:oauth:grant-type:device_code", "refresh_token"],
|
grantTypes: ["urn:ietf:params:oauth:grant-type:device_code", "refresh_token"],
|
||||||
issuerUrl: "https://identitycenter.amazonaws.com/ssoins-722374e8c3c8e6c6",
|
issuerUrl: "https://identitycenter.amazonaws.com/ssoins-722374e8c3c8e6c6",
|
||||||
|
// Social auth endpoints (Google/GitHub via AWS Cognito)
|
||||||
|
socialAuthEndpoint: "https://prod.us-east-1.auth.desktop.kiro.dev",
|
||||||
|
socialLoginUrl: "https://prod.us-east-1.auth.desktop.kiro.dev/login",
|
||||||
|
socialTokenUrl: "https://prod.us-east-1.auth.desktop.kiro.dev/oauth/token",
|
||||||
|
socialRefreshUrl: "https://prod.us-east-1.auth.desktop.kiro.dev/refreshToken",
|
||||||
|
// Auth methods
|
||||||
|
authMethods: ["builder-id", "idc", "google", "github", "import"],
|
||||||
};
|
};
|
||||||
|
|
||||||
// OAuth timeout (5 minutes)
|
// OAuth timeout (5 minutes)
|
||||||
|
|||||||
@@ -11,4 +11,5 @@ export { IFlowService } from "./iflow.js";
|
|||||||
export { AntigravityService } from "./antigravity.js";
|
export { AntigravityService } from "./antigravity.js";
|
||||||
export { OpenAIService } from "./openai.js";
|
export { OpenAIService } from "./openai.js";
|
||||||
export { GitHubService } from "./github.js";
|
export { GitHubService } from "./github.js";
|
||||||
|
export { KiroService } from "./kiro.js";
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,276 @@
|
|||||||
|
import { KIRO_CONFIG } from "../constants/oauth.js";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kiro OAuth Service
|
||||||
|
* Supports multiple authentication methods:
|
||||||
|
* 1. AWS Builder ID (Device Code Flow)
|
||||||
|
* 2. AWS IAM Identity Center/IDC (Device Code Flow)
|
||||||
|
* 3. Google/GitHub Social Login (Authorization Code Flow + Manual Callback)
|
||||||
|
* 4. Import Token (Manual refresh token paste)
|
||||||
|
*/
|
||||||
|
|
||||||
|
const KIRO_AUTH_SERVICE = "https://prod.us-east-1.auth.desktop.kiro.dev";
|
||||||
|
|
||||||
|
export class KiroService {
|
||||||
|
/**
|
||||||
|
* Register OIDC client with AWS SSO
|
||||||
|
* Returns clientId and clientSecret for device code flow
|
||||||
|
*/
|
||||||
|
async registerClient(region = "us-east-1") {
|
||||||
|
const endpoint = `https://oidc.${region}.amazonaws.com/client/register`;
|
||||||
|
|
||||||
|
const response = await fetch(endpoint, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
clientName: KIRO_CONFIG.clientName,
|
||||||
|
clientType: KIRO_CONFIG.clientType,
|
||||||
|
scopes: KIRO_CONFIG.scopes,
|
||||||
|
grantTypes: KIRO_CONFIG.grantTypes,
|
||||||
|
issuerUrl: KIRO_CONFIG.issuerUrl,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const error = await response.text();
|
||||||
|
throw new Error(`Failed to register client: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return {
|
||||||
|
clientId: data.clientId,
|
||||||
|
clientSecret: data.clientSecret,
|
||||||
|
clientSecretExpiresAt: data.clientSecretExpiresAt,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start device authorization for AWS Builder ID or IDC
|
||||||
|
*/
|
||||||
|
async startDeviceAuthorization(clientId, clientSecret, startUrl, region = "us-east-1") {
|
||||||
|
const endpoint = `https://oidc.${region}.amazonaws.com/device_authorization`;
|
||||||
|
|
||||||
|
const response = await fetch(endpoint, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
clientId,
|
||||||
|
clientSecret,
|
||||||
|
startUrl,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const error = await response.text();
|
||||||
|
throw new Error(`Failed to start device authorization: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return {
|
||||||
|
deviceCode: data.deviceCode,
|
||||||
|
userCode: data.userCode,
|
||||||
|
verificationUri: data.verificationUri,
|
||||||
|
verificationUriComplete: data.verificationUriComplete,
|
||||||
|
expiresIn: data.expiresIn,
|
||||||
|
interval: data.interval || 5,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Poll for token using device code (AWS Builder ID/IDC)
|
||||||
|
*/
|
||||||
|
async pollDeviceToken(clientId, clientSecret, deviceCode, region = "us-east-1") {
|
||||||
|
const endpoint = `https://oidc.${region}.amazonaws.com/token`;
|
||||||
|
|
||||||
|
const response = await fetch(endpoint, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
clientId,
|
||||||
|
clientSecret,
|
||||||
|
deviceCode,
|
||||||
|
grantType: "urn:ietf:params:oauth:grant-type:device_code",
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
|
||||||
|
// Handle pending/slow_down/errors
|
||||||
|
if (!response.ok || data.error) {
|
||||||
|
return {
|
||||||
|
success: false,
|
||||||
|
error: data.error,
|
||||||
|
errorDescription: data.error_description,
|
||||||
|
pending: data.error === "authorization_pending" || data.error === "slow_down",
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
success: true,
|
||||||
|
tokens: {
|
||||||
|
accessToken: data.accessToken,
|
||||||
|
refreshToken: data.refreshToken,
|
||||||
|
expiresIn: data.expiresIn,
|
||||||
|
tokenType: data.tokenType,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build Google/GitHub social login URL
|
||||||
|
* Returns authorization URL for manual callback flow
|
||||||
|
* Uses kiro:// custom protocol as required by AWS Cognito whitelist
|
||||||
|
*/
|
||||||
|
buildSocialLoginUrl(provider, codeChallenge, state) {
|
||||||
|
const idp = provider === "google" ? "Google" : "Github";
|
||||||
|
// AWS Cognito only whitelists kiro:// protocol, not localhost
|
||||||
|
const redirectUri = "kiro://kiro.kiroAgent/authenticate-success";
|
||||||
|
return `${KIRO_AUTH_SERVICE}/login?idp=${idp}&redirect_uri=${encodeURIComponent(redirectUri)}&code_challenge=${codeChallenge}&code_challenge_method=S256&state=${state}&prompt=select_account`;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exchange authorization code for tokens (Social Login)
|
||||||
|
* Must use same redirect_uri as authorization request
|
||||||
|
*/
|
||||||
|
async exchangeSocialCode(code, codeVerifier) {
|
||||||
|
// Must match the redirect_uri used in buildSocialLoginUrl
|
||||||
|
const redirectUri = "kiro://kiro.kiroAgent/authenticate-success";
|
||||||
|
|
||||||
|
const response = await fetch(`${KIRO_AUTH_SERVICE}/oauth/token`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
code,
|
||||||
|
code_verifier: codeVerifier,
|
||||||
|
redirect_uri: redirectUri,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const error = await response.text();
|
||||||
|
throw new Error(`Token exchange failed: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return {
|
||||||
|
accessToken: data.accessToken,
|
||||||
|
refreshToken: data.refreshToken,
|
||||||
|
profileArn: data.profileArn,
|
||||||
|
expiresIn: data.expiresIn || 3600,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Refresh token using refresh token
|
||||||
|
*/
|
||||||
|
async refreshToken(refreshToken, providerSpecificData = {}) {
|
||||||
|
const { authMethod, clientId, clientSecret, region } = providerSpecificData;
|
||||||
|
|
||||||
|
// AWS SSO OIDC refresh (Builder ID or IDC)
|
||||||
|
if (clientId && clientSecret) {
|
||||||
|
const endpoint = `https://oidc.${region || "us-east-1"}.amazonaws.com/token`;
|
||||||
|
|
||||||
|
const response = await fetch(endpoint, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
clientId,
|
||||||
|
clientSecret,
|
||||||
|
refreshToken,
|
||||||
|
grantType: "refresh_token",
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const error = await response.text();
|
||||||
|
throw new Error(`Token refresh failed: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return {
|
||||||
|
accessToken: data.accessToken,
|
||||||
|
refreshToken: data.refreshToken || refreshToken,
|
||||||
|
expiresIn: data.expiresIn,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Social auth refresh (Google/GitHub)
|
||||||
|
const response = await fetch(`${KIRO_AUTH_SERVICE}/refreshToken`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
refreshToken,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (!response.ok) {
|
||||||
|
const error = await response.text();
|
||||||
|
throw new Error(`Token refresh failed: ${error}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
const data = await response.json();
|
||||||
|
return {
|
||||||
|
accessToken: data.accessToken,
|
||||||
|
refreshToken: data.refreshToken || refreshToken,
|
||||||
|
profileArn: data.profileArn,
|
||||||
|
expiresIn: data.expiresIn || 3600,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validate and import refresh token
|
||||||
|
*/
|
||||||
|
async validateImportToken(refreshToken) {
|
||||||
|
// Validate token format
|
||||||
|
if (!refreshToken.startsWith("aorAAAAAG")) {
|
||||||
|
throw new Error("Invalid token format. Token should start with aorAAAAAG...");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to refresh to validate
|
||||||
|
try {
|
||||||
|
const result = await this.refreshToken(refreshToken);
|
||||||
|
return {
|
||||||
|
accessToken: result.accessToken,
|
||||||
|
refreshToken: result.refreshToken || refreshToken,
|
||||||
|
profileArn: result.profileArn,
|
||||||
|
expiresIn: result.expiresIn,
|
||||||
|
authMethod: "imported",
|
||||||
|
};
|
||||||
|
} catch (error) {
|
||||||
|
throw new Error(`Token validation failed: ${error.message}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fetch user email from access token (optional, for display)
|
||||||
|
*/
|
||||||
|
extractEmailFromJWT(accessToken) {
|
||||||
|
try {
|
||||||
|
const parts = accessToken.split(".");
|
||||||
|
if (parts.length !== 3) return null;
|
||||||
|
|
||||||
|
// Decode payload (add padding if needed)
|
||||||
|
let payload = parts[1];
|
||||||
|
while (payload.length % 4) {
|
||||||
|
payload += "=";
|
||||||
|
}
|
||||||
|
|
||||||
|
const decoded = JSON.parse(atob(payload.replace(/-/g, "+").replace(/_/g, "/")));
|
||||||
|
return decoded.email || decoded.preferred_username || decoded.sub;
|
||||||
|
} catch {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -94,8 +94,8 @@ export default function Header({ onMenuClick, showMenuButton = true }) {
|
|||||||
alt={crumb.label}
|
alt={crumb.label}
|
||||||
width={28}
|
width={28}
|
||||||
height={28}
|
height={28}
|
||||||
className="object-contain rounded"
|
className="object-contain rounded max-w-[28px] max-h-[28px]"
|
||||||
style={{ width: "auto", height: "auto" }}
|
sizes="28px"
|
||||||
onError={(e) => { e.currentTarget.style.display = "none"; }}
|
onError={(e) => { e.currentTarget.style.display = "none"; }}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -0,0 +1,325 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import { Modal, Button, Input } from "@/shared/components";
|
||||||
|
import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kiro Auth Method Selection Modal
|
||||||
|
* Allows user to choose between multiple Kiro authentication methods:
|
||||||
|
* 1. AWS Builder ID (Device Code)
|
||||||
|
* 2. AWS IAM Identity Center/IDC (Device Code with custom startUrl/region)
|
||||||
|
* 3. Google Social Login (Manual callback)
|
||||||
|
* 4. GitHub Social Login (Manual callback)
|
||||||
|
* 5. Import Token (Paste refresh token)
|
||||||
|
*/
|
||||||
|
export default function KiroAuthModal({ isOpen, onMethodSelect, onClose }) {
|
||||||
|
const [selectedMethod, setSelectedMethod] = useState(null);
|
||||||
|
const [idcStartUrl, setIdcStartUrl] = useState("");
|
||||||
|
const [idcRegion, setIdcRegion] = useState("us-east-1");
|
||||||
|
const [refreshToken, setRefreshToken] = useState("");
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
const [importing, setImporting] = useState(false);
|
||||||
|
const { copied, copy } = useCopyToClipboard();
|
||||||
|
|
||||||
|
const handleMethodSelect = (method) => {
|
||||||
|
setSelectedMethod(method);
|
||||||
|
setError(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleBack = () => {
|
||||||
|
setSelectedMethod(null);
|
||||||
|
setError(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleImportToken = async () => {
|
||||||
|
if (!refreshToken.trim()) {
|
||||||
|
setError("Please enter a refresh token");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setImporting(true);
|
||||||
|
setError(null);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const res = await fetch("/api/oauth/kiro/import", {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({ refreshToken: refreshToken.trim() }),
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await res.json();
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
throw new Error(data.error || "Import failed");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Success - close modal
|
||||||
|
onClose();
|
||||||
|
} catch (err) {
|
||||||
|
setError(err.message);
|
||||||
|
} finally {
|
||||||
|
setImporting(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleIdcContinue = () => {
|
||||||
|
if (!idcStartUrl.trim()) {
|
||||||
|
setError("Please enter your IDC start URL");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
onMethodSelect("idc", { startUrl: idcStartUrl.trim(), region: idcRegion });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSocialLogin = (provider) => {
|
||||||
|
onMethodSelect("social", { provider });
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal isOpen={isOpen} title="Connect Kiro" onClose={onClose} size="lg">
|
||||||
|
<div className="flex flex-col gap-4">
|
||||||
|
{/* Method Selection */}
|
||||||
|
{!selectedMethod && (
|
||||||
|
<div className="space-y-3">
|
||||||
|
<p className="text-sm text-text-muted mb-4">
|
||||||
|
Choose your authentication method:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
{/* AWS Builder ID */}
|
||||||
|
<button
|
||||||
|
onClick={() => onMethodSelect("builder-id")}
|
||||||
|
className="w-full p-4 text-left border border-border rounded-lg hover:bg-sidebar transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="material-symbols-outlined text-primary mt-0.5">shield</span>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h3 className="font-semibold mb-1">AWS Builder ID</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
Recommended for most users. Free AWS account required.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* AWS IAM Identity Center (IDC) - HIDDEN */}
|
||||||
|
<button
|
||||||
|
onClick={() => handleMethodSelect("idc")}
|
||||||
|
className="hidden w-full p-4 text-left border border-border rounded-lg hover:bg-sidebar transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="material-symbols-outlined text-primary mt-0.5">business</span>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h3 className="font-semibold mb-1">AWS IAM Identity Center</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
For enterprise users with custom AWS IAM Identity Center.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Google Social Login - HIDDEN */}
|
||||||
|
<button
|
||||||
|
onClick={() => handleMethodSelect("social-google")}
|
||||||
|
className="hidden w-full p-4 text-left border border-border rounded-lg hover:bg-sidebar transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="material-symbols-outlined text-primary mt-0.5">account_circle</span>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h3 className="font-semibold mb-1">Google Account</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
Login with your Google account (manual callback).
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* GitHub Social Login - HIDDEN */}
|
||||||
|
<button
|
||||||
|
onClick={() => handleMethodSelect("social-github")}
|
||||||
|
className="hidden w-full p-4 text-left border border-border rounded-lg hover:bg-sidebar transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="material-symbols-outlined text-primary mt-0.5">code</span>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h3 className="font-semibold mb-1">GitHub Account</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
Login with your GitHub account (manual callback).
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
|
||||||
|
{/* Import Token */}
|
||||||
|
<button
|
||||||
|
onClick={() => handleMethodSelect("import")}
|
||||||
|
className="w-full p-4 text-left border border-border rounded-lg hover:bg-sidebar transition-colors"
|
||||||
|
>
|
||||||
|
<div className="flex items-start gap-3">
|
||||||
|
<span className="material-symbols-outlined text-primary mt-0.5">file_upload</span>
|
||||||
|
<div className="flex-1">
|
||||||
|
<h3 className="font-semibold mb-1">Import Token</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
Paste refresh token from Kiro IDE.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* IDC Configuration */}
|
||||||
|
{selectedMethod === "idc" && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-medium mb-2">
|
||||||
|
IDC Start URL <span className="text-red-500">*</span>
|
||||||
|
</label>
|
||||||
|
<Input
|
||||||
|
value={idcStartUrl}
|
||||||
|
onChange={(e) => setIdcStartUrl(e.target.value)}
|
||||||
|
placeholder="https://your-org.awsapps.com/start"
|
||||||
|
className="font-mono text-sm"
|
||||||
|
/>
|
||||||
|
<p className="text-xs text-text-muted mt-1">
|
||||||
|
Your organization's AWS IAM Identity Center URL
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-medium mb-2">
|
||||||
|
AWS Region
|
||||||
|
</label>
|
||||||
|
<Input
|
||||||
|
value={idcRegion}
|
||||||
|
onChange={(e) => setIdcRegion(e.target.value)}
|
||||||
|
placeholder="us-east-1"
|
||||||
|
className="font-mono text-sm"
|
||||||
|
/>
|
||||||
|
<p className="text-xs text-text-muted mt-1">
|
||||||
|
AWS region for your Identity Center (default: us-east-1)
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<p className="text-sm text-red-600">{error}</p>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={handleIdcContinue} fullWidth>
|
||||||
|
Continue
|
||||||
|
</Button>
|
||||||
|
<Button onClick={handleBack} variant="ghost" fullWidth>
|
||||||
|
Back
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Social Login Info (Google) */}
|
||||||
|
{selectedMethod === "social-google" && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="bg-amber-50 dark:bg-amber-900/20 p-4 rounded-lg border border-amber-200 dark:border-amber-800">
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<span className="material-symbols-outlined text-amber-600 dark:text-amber-400">info</span>
|
||||||
|
<div className="flex-1 text-sm">
|
||||||
|
<p className="font-medium text-amber-900 dark:text-amber-100 mb-1">
|
||||||
|
Manual Callback Required
|
||||||
|
</p>
|
||||||
|
<p className="text-amber-800 dark:text-amber-200">
|
||||||
|
After login, you'll need to copy the callback URL from your browser and paste it back here.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={() => handleSocialLogin("google")} fullWidth>
|
||||||
|
Continue with Google
|
||||||
|
</Button>
|
||||||
|
<Button onClick={handleBack} variant="ghost" fullWidth>
|
||||||
|
Back
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Social Login Info (GitHub) */}
|
||||||
|
{selectedMethod === "social-github" && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="bg-amber-50 dark:bg-amber-900/20 p-4 rounded-lg border border-amber-200 dark:border-amber-800">
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<span className="material-symbols-outlined text-amber-600 dark:text-amber-400">info</span>
|
||||||
|
<div className="flex-1 text-sm">
|
||||||
|
<p className="font-medium text-amber-900 dark:text-amber-100 mb-1">
|
||||||
|
Manual Callback Required
|
||||||
|
</p>
|
||||||
|
<p className="text-amber-800 dark:text-amber-200">
|
||||||
|
After login, you'll need to copy the callback URL from your browser and paste it back here.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={() => handleSocialLogin("github")} fullWidth>
|
||||||
|
Continue with GitHub
|
||||||
|
</Button>
|
||||||
|
<Button onClick={handleBack} variant="ghost" fullWidth>
|
||||||
|
Back
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Import Token */}
|
||||||
|
{selectedMethod === "import" && (
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div className="bg-blue-50 dark:bg-blue-900/20 p-3 rounded-lg border border-blue-200 dark:border-blue-800 mb-4">
|
||||||
|
<p className="text-sm text-blue-800 dark:text-blue-200">
|
||||||
|
💡 Please login to Kiro IDE first.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<label className="block text-sm font-medium mb-2">
|
||||||
|
Refresh Token <span className="text-red-500">*</span>
|
||||||
|
</label>
|
||||||
|
<Input
|
||||||
|
value={refreshToken}
|
||||||
|
onChange={(e) => setRefreshToken(e.target.value)}
|
||||||
|
placeholder="aorAAAAAG..."
|
||||||
|
className="font-mono text-sm"
|
||||||
|
type="password"
|
||||||
|
/>
|
||||||
|
<p className="text-xs text-text-muted mt-1">
|
||||||
|
Find it in Kiro IDE at: <code className="bg-sidebar px-1 rounded">~/.aws/sso/cache/kiro-auth-token.json</code>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{error && (
|
||||||
|
<div className="bg-red-50 dark:bg-red-900/20 p-3 rounded-lg">
|
||||||
|
<p className="text-sm text-red-600 dark:text-red-400">{error}</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={handleImportToken} fullWidth disabled={importing}>
|
||||||
|
{importing ? "Importing..." : "Import Token"}
|
||||||
|
</Button>
|
||||||
|
<Button onClick={handleBack} variant="ghost" fullWidth>
|
||||||
|
Back
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
KiroAuthModal.propTypes = {
|
||||||
|
isOpen: PropTypes.bool.isRequired,
|
||||||
|
onMethodSelect: PropTypes.func.isRequired,
|
||||||
|
onClose: PropTypes.func.isRequired,
|
||||||
|
};
|
||||||
@@ -0,0 +1,101 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState, useCallback } from "react";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import OAuthModal from "./OAuthModal";
|
||||||
|
import KiroAuthModal from "./KiroAuthModal";
|
||||||
|
import KiroSocialOAuthModal from "./KiroSocialOAuthModal";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kiro OAuth Wrapper
|
||||||
|
* Orchestrates between method selection, device code flow, and social login flow
|
||||||
|
*/
|
||||||
|
export default function KiroOAuthWrapper({ isOpen, providerInfo, onSuccess, onClose }) {
|
||||||
|
const [authMethod, setAuthMethod] = useState(null); // null | "builder-id" | "idc" | "social" | "import"
|
||||||
|
const [socialProvider, setSocialProvider] = useState(null); // "google" | "github"
|
||||||
|
const [idcConfig, setIdcConfig] = useState(null);
|
||||||
|
|
||||||
|
const handleMethodSelect = useCallback((method, config) => {
|
||||||
|
if (method === "builder-id") {
|
||||||
|
// Use device code flow (AWS Builder ID)
|
||||||
|
setAuthMethod("builder-id");
|
||||||
|
} else if (method === "idc") {
|
||||||
|
// Use device code flow with IDC config
|
||||||
|
setAuthMethod("idc");
|
||||||
|
setIdcConfig(config);
|
||||||
|
} else if (method === "social") {
|
||||||
|
// Use social login with manual callback
|
||||||
|
setAuthMethod("social");
|
||||||
|
setSocialProvider(config.provider);
|
||||||
|
} else if (method === "import") {
|
||||||
|
// Import handled in KiroAuthModal, just close
|
||||||
|
onSuccess?.();
|
||||||
|
}
|
||||||
|
}, [onSuccess]);
|
||||||
|
|
||||||
|
const handleBack = () => {
|
||||||
|
setAuthMethod(null);
|
||||||
|
setSocialProvider(null);
|
||||||
|
setIdcConfig(null);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSocialSuccess = () => {
|
||||||
|
setAuthMethod(null);
|
||||||
|
setSocialProvider(null);
|
||||||
|
onSuccess?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDeviceSuccess = () => {
|
||||||
|
setAuthMethod(null);
|
||||||
|
setIdcConfig(null);
|
||||||
|
onSuccess?.();
|
||||||
|
};
|
||||||
|
|
||||||
|
// Show method selection first
|
||||||
|
if (!authMethod) {
|
||||||
|
return (
|
||||||
|
<KiroAuthModal
|
||||||
|
isOpen={isOpen}
|
||||||
|
onMethodSelect={handleMethodSelect}
|
||||||
|
onClose={onClose}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show device code flow (Builder ID or IDC)
|
||||||
|
if (authMethod === "builder-id" || authMethod === "idc") {
|
||||||
|
return (
|
||||||
|
<OAuthModal
|
||||||
|
isOpen={isOpen}
|
||||||
|
provider="kiro"
|
||||||
|
providerInfo={providerInfo}
|
||||||
|
onSuccess={handleDeviceSuccess}
|
||||||
|
onClose={handleBack}
|
||||||
|
idcConfig={idcConfig}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Show social login flow (Google/GitHub with manual callback)
|
||||||
|
if (authMethod === "social" && socialProvider) {
|
||||||
|
return (
|
||||||
|
<KiroSocialOAuthModal
|
||||||
|
isOpen={isOpen}
|
||||||
|
provider={socialProvider}
|
||||||
|
onSuccess={handleSocialSuccess}
|
||||||
|
onClose={handleBack}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
KiroOAuthWrapper.propTypes = {
|
||||||
|
isOpen: PropTypes.bool.isRequired,
|
||||||
|
providerInfo: PropTypes.shape({
|
||||||
|
name: PropTypes.string,
|
||||||
|
}),
|
||||||
|
onSuccess: PropTypes.func,
|
||||||
|
onClose: PropTypes.func.isRequired,
|
||||||
|
};
|
||||||
@@ -0,0 +1,205 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import PropTypes from "prop-types";
|
||||||
|
import { Modal, Button, Input } from "@/shared/components";
|
||||||
|
import { useCopyToClipboard } from "@/shared/hooks/useCopyToClipboard";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Kiro Social OAuth Modal (Google/GitHub)
|
||||||
|
* Handles manual callback URL flow for social login
|
||||||
|
*/
|
||||||
|
export default function KiroSocialOAuthModal({ isOpen, provider, onSuccess, onClose }) {
|
||||||
|
const [step, setStep] = useState("loading"); // loading | input | success | error
|
||||||
|
const [authUrl, setAuthUrl] = useState("");
|
||||||
|
const [authData, setAuthData] = useState(null);
|
||||||
|
const [callbackUrl, setCallbackUrl] = useState("");
|
||||||
|
const [error, setError] = useState(null);
|
||||||
|
const { copied, copy } = useCopyToClipboard();
|
||||||
|
|
||||||
|
// Initialize auth flow
|
||||||
|
useEffect(() => {
|
||||||
|
if (!isOpen || !provider) return;
|
||||||
|
|
||||||
|
const initAuth = async () => {
|
||||||
|
try {
|
||||||
|
setError(null);
|
||||||
|
setStep("loading");
|
||||||
|
|
||||||
|
const res = await fetch(`/api/oauth/kiro/social-authorize?provider=${provider}`);
|
||||||
|
const data = await res.json();
|
||||||
|
|
||||||
|
if (!res.ok) {
|
||||||
|
throw new Error(data.error);
|
||||||
|
}
|
||||||
|
|
||||||
|
setAuthData(data);
|
||||||
|
setAuthUrl(data.authUrl);
|
||||||
|
setStep("input");
|
||||||
|
|
||||||
|
// Auto-open browser
|
||||||
|
window.open(data.authUrl, "_blank");
|
||||||
|
} catch (err) {
|
||||||
|
setError(err.message);
|
||||||
|
setStep("error");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
initAuth();
|
||||||
|
}, [isOpen, provider]);
|
||||||
|
|
||||||
|
const handleManualSubmit = async () => {
|
||||||
|
try {
|
||||||
|
setError(null);
|
||||||
|
|
||||||
|
// Parse callback URL - can be either kiro:// or http://localhost format
|
||||||
|
let url;
|
||||||
|
try {
|
||||||
|
url = new URL(callbackUrl);
|
||||||
|
} catch (e) {
|
||||||
|
// If URL parsing fails, might be malformed
|
||||||
|
throw new Error("Invalid callback URL format");
|
||||||
|
}
|
||||||
|
|
||||||
|
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");
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exchange code for tokens
|
||||||
|
const res = await fetch("/api/oauth/kiro/social-exchange", {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "Content-Type": "application/json" },
|
||||||
|
body: JSON.stringify({
|
||||||
|
code,
|
||||||
|
codeVerifier: authData.codeVerifier,
|
||||||
|
provider,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = await res.json();
|
||||||
|
if (!res.ok) throw new Error(data.error);
|
||||||
|
|
||||||
|
setStep("success");
|
||||||
|
onSuccess?.();
|
||||||
|
} catch (err) {
|
||||||
|
setError(err.message);
|
||||||
|
setStep("error");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const providerName = provider === "google" ? "Google" : "GitHub";
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Modal isOpen={isOpen} title={`Connect Kiro via ${providerName}`} onClose={onClose} size="lg">
|
||||||
|
<div className="flex flex-col gap-4">
|
||||||
|
{/* Loading */}
|
||||||
|
{step === "loading" && (
|
||||||
|
<div className="text-center py-6">
|
||||||
|
<div className="size-16 mx-auto mb-4 rounded-full bg-primary/10 flex items-center justify-center">
|
||||||
|
<span className="material-symbols-outlined text-3xl text-primary animate-spin">
|
||||||
|
progress_activity
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<h3 className="text-lg font-semibold mb-2">Initializing...</h3>
|
||||||
|
<p className="text-sm text-text-muted">
|
||||||
|
Setting up {providerName} authentication
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Manual Input Step */}
|
||||||
|
{step === "input" && (
|
||||||
|
<>
|
||||||
|
<div className="space-y-4">
|
||||||
|
<div>
|
||||||
|
<p className="text-sm font-medium mb-2">Step 1: Open this URL in your browser</p>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Input value={authUrl} readOnly className="flex-1 font-mono text-xs" />
|
||||||
|
<Button
|
||||||
|
variant="secondary"
|
||||||
|
icon={copied === "auth_url" ? "check" : "content_copy"}
|
||||||
|
onClick={() => copy(authUrl, "auth_url")}
|
||||||
|
>
|
||||||
|
Copy
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<p className="text-sm font-medium mb-2">Step 2: Paste the callback URL here</p>
|
||||||
|
<p className="text-xs text-text-muted mb-2">
|
||||||
|
After authorization, copy the full URL from your browser address bar.
|
||||||
|
</p>
|
||||||
|
<Input
|
||||||
|
value={callbackUrl}
|
||||||
|
onChange={(e) => setCallbackUrl(e.target.value)}
|
||||||
|
placeholder="kiro://kiro.kiroAgent/authenticate-success?code=..."
|
||||||
|
className="font-mono text-xs"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={handleManualSubmit} fullWidth disabled={!callbackUrl}>
|
||||||
|
Connect
|
||||||
|
</Button>
|
||||||
|
<Button onClick={onClose} variant="ghost" fullWidth>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Success */}
|
||||||
|
{step === "success" && (
|
||||||
|
<div className="text-center py-6">
|
||||||
|
<div className="size-16 mx-auto mb-4 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center">
|
||||||
|
<span className="material-symbols-outlined text-3xl text-green-600">check_circle</span>
|
||||||
|
</div>
|
||||||
|
<h3 className="text-lg font-semibold mb-2">Connected Successfully!</h3>
|
||||||
|
<p className="text-sm text-text-muted mb-4">
|
||||||
|
Your Kiro account via {providerName} has been connected.
|
||||||
|
</p>
|
||||||
|
<Button onClick={onClose} fullWidth>
|
||||||
|
Done
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Error */}
|
||||||
|
{step === "error" && (
|
||||||
|
<div className="text-center py-6">
|
||||||
|
<div className="size-16 mx-auto mb-4 rounded-full bg-red-100 dark:bg-red-900/30 flex items-center justify-center">
|
||||||
|
<span className="material-symbols-outlined text-3xl text-red-600">error</span>
|
||||||
|
</div>
|
||||||
|
<h3 className="text-lg font-semibold mb-2">Connection Failed</h3>
|
||||||
|
<p className="text-sm text-red-600 mb-4">{error}</p>
|
||||||
|
<div className="flex gap-2">
|
||||||
|
<Button onClick={() => setStep("input")} variant="secondary" fullWidth>
|
||||||
|
Try Again
|
||||||
|
</Button>
|
||||||
|
<Button onClick={onClose} variant="ghost" fullWidth>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
</Modal>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
KiroSocialOAuthModal.propTypes = {
|
||||||
|
isOpen: PropTypes.bool.isRequired,
|
||||||
|
provider: PropTypes.oneOf(["google", "github"]).isRequired,
|
||||||
|
onSuccess: PropTypes.func,
|
||||||
|
onClose: PropTypes.func.isRequired,
|
||||||
|
};
|
||||||
@@ -18,7 +18,11 @@ export { default as ModelSelectModal } from "./ModelSelectModal";
|
|||||||
export { default as ManualConfigModal } from "./ManualConfigModal";
|
export { default as ManualConfigModal } from "./ManualConfigModal";
|
||||||
export { default as UsageStats } from "./UsageStats";
|
export { default as UsageStats } from "./UsageStats";
|
||||||
export { default as RequestLogger } from "./RequestLogger";
|
export { default as RequestLogger } from "./RequestLogger";
|
||||||
|
export { default as KiroAuthModal } from "./KiroAuthModal";
|
||||||
|
export { default as KiroOAuthWrapper } from "./KiroOAuthWrapper";
|
||||||
|
export { default as KiroSocialOAuthModal } from "./KiroSocialOAuthModal";
|
||||||
|
|
||||||
// Layouts
|
// Layouts
|
||||||
export * from "./layouts";
|
export * from "./layouts";
|
||||||
|
|
||||||
|
|
||||||
|
|||||||