- Convert "Choose Your Path" screen to informative (read-only cards) - Harden "Choose Your Setup" (gray out Coming Soon options, auto-select Fresh Start) - Auto-fetch DID on mount with retry and auto-advance after success - Improve backup download for mobile compatibility - Add retry logic to verify step with graceful skip option - Route verify → done → login for complete onboarding flow - Add AIUI install confirmation via custom event (SEC-001) - Add file path whitelist for AIUI file access (SEC-002) - Add log redaction for container logs sent to AIUI (SEC-003) - Add Secure flag to session cookie in production (SEC-004) - Fix ISO build script to handle zstd compression errors gracefully - Sync archipelago.service from live server Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
149 lines
5.2 KiB
Vue
149 lines
5.2 KiB
Vue
<template>
|
|
<div class="min-h-screen flex items-center justify-center p-4">
|
|
<!-- Main Glass Container -->
|
|
<div class="max-w-[800px] w-full relative z-10 path-glass-container">
|
|
<!-- Header -->
|
|
<div v-if="!verified" class="text-center mb-6 flex-shrink-0">
|
|
<h1 class="text-[26px] font-semibold text-white/96 mb-2 drop-shadow-[0_2px_6px_rgba(0,0,0,0.4)]">
|
|
Verify Your Identity
|
|
</h1>
|
|
<p class="text-[20px] text-white/75 leading-relaxed max-w-[600px] mx-auto">
|
|
Sign a challenge to verify your decentralized identity is working correctly.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Content Area -->
|
|
<div class="flex flex-col items-center gap-6 mb-6">
|
|
<p v-if="errorMessage" class="text-red-400 text-sm">{{ errorMessage }}</p>
|
|
<!-- Sign Button (if not verified yet) -->
|
|
<button
|
|
v-if="!verified"
|
|
@click="signChallenge"
|
|
:disabled="isSigning"
|
|
class="path-action-button path-action-button--continue"
|
|
>
|
|
<span v-if="!isSigning">Sign Challenge</span>
|
|
<span v-else class="flex items-center gap-2">
|
|
<svg class="animate-spin h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
|
|
<circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle>
|
|
<path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
|
|
</svg>
|
|
Signing...
|
|
</span>
|
|
</button>
|
|
|
|
<!-- Verification Success -->
|
|
<div v-if="verified" class="w-full max-w-[600px]">
|
|
<div class="text-center mb-6">
|
|
<div class="flex justify-center mb-6">
|
|
<div class="path-option-card cursor-default w-20 h-20 rounded-full flex items-center justify-center">
|
|
<svg class="w-10 h-10 text-black" fill="none" stroke="currentColor" viewBox="0 0 24 24" stroke-width="3">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M5 13l4 4L19 7" />
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<p class="text-[20px] text-white/80 leading-relaxed max-w-[600px] mx-auto mb-6">
|
|
Your identity has been successfully verified and is ready to use.
|
|
</p>
|
|
</div>
|
|
|
|
<!-- Signature Display -->
|
|
<div class="path-option-card cursor-default px-6 py-6">
|
|
<div class="text-left">
|
|
<h3 class="text-sm font-semibold text-white/80 mb-2 uppercase tracking-wide">Signature</h3>
|
|
<div class="bg-black/40 rounded-lg p-4 backdrop-blur-sm border border-white/10">
|
|
<p class="text-white/95 font-mono text-xs break-all leading-relaxed">
|
|
{{ signature }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Action Buttons -->
|
|
<div class="flex gap-4 max-w-[600px] mx-auto flex-shrink-0">
|
|
<button
|
|
@click="skipForNow"
|
|
class="path-action-button path-action-button--skip"
|
|
>
|
|
Skip
|
|
</button>
|
|
<button
|
|
v-if="verified"
|
|
@click="proceed"
|
|
class="path-action-button path-action-button--continue"
|
|
>
|
|
Finish
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { completeOnboarding } from '@/composables/useOnboarding'
|
|
import { rpcClient } from '@/api/rpc-client'
|
|
|
|
const router = useRouter()
|
|
const verified = ref(false)
|
|
const isSigning = ref(false)
|
|
const signature = ref('')
|
|
const errorMessage = ref('')
|
|
|
|
/** Generate a cryptographically random challenge (32 bytes, base64) */
|
|
function generateChallenge(): string {
|
|
const bytes = new Uint8Array(32)
|
|
crypto.getRandomValues(bytes)
|
|
return btoa(String.fromCharCode(...bytes))
|
|
}
|
|
|
|
async function signChallenge() {
|
|
isSigning.value = true
|
|
errorMessage.value = ''
|
|
|
|
for (let attempt = 0; attempt < 3; attempt++) {
|
|
try {
|
|
const challenge = generateChallenge()
|
|
const { signature: sig } = await rpcClient.signChallenge(challenge)
|
|
signature.value = sig
|
|
verified.value = true
|
|
isSigning.value = false
|
|
return
|
|
} catch (err) {
|
|
const msg = err instanceof Error ? err.message : ''
|
|
const isRetryable = /502|503|timeout|fetch|network/i.test(msg)
|
|
if (!isRetryable || attempt === 2) {
|
|
errorMessage.value = isRetryable
|
|
? 'Server is not reachable. You can retry or skip this step.'
|
|
: (msg || 'Failed to sign challenge. You can retry or skip this step.')
|
|
} else {
|
|
await new Promise((r) => setTimeout(r, 1000 * (attempt + 1)))
|
|
}
|
|
}
|
|
}
|
|
isSigning.value = false
|
|
}
|
|
|
|
async function proceed() {
|
|
try {
|
|
await completeOnboarding()
|
|
} catch {
|
|
/* localStorage fallback ensures we can proceed */
|
|
}
|
|
router.push('/onboarding/done').catch(() => {})
|
|
}
|
|
|
|
async function skipForNow() {
|
|
try {
|
|
await completeOnboarding()
|
|
} catch {
|
|
/* localStorage fallback ensures we can proceed */
|
|
}
|
|
router.push('/onboarding/done').catch(() => {})
|
|
}
|
|
</script>
|
|
|