mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-22 14:11:12 -05:00
feat: Implement orphaned password recovery
This commit is contained in:
152
src/components/auth/PasswordVerificationDialog.tsx
Normal file
152
src/components/auth/PasswordVerificationDialog.tsx
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import { Button } from "@/components/ui/button";
|
||||||
|
import {
|
||||||
|
Dialog,
|
||||||
|
DialogContent,
|
||||||
|
DialogDescription,
|
||||||
|
DialogFooter,
|
||||||
|
DialogHeader,
|
||||||
|
DialogTitle,
|
||||||
|
} from "@/components/ui/dialog";
|
||||||
|
import { Input } from "@/components/ui/input";
|
||||||
|
import { Label } from "@/components/ui/label";
|
||||||
|
import { reverifyPasswordAuth } from "@/lib/identityService";
|
||||||
|
import { toast } from "sonner";
|
||||||
|
import { Loader2, AlertCircle } from "lucide-react";
|
||||||
|
import { Alert, AlertDescription } from "@/components/ui/alert";
|
||||||
|
|
||||||
|
interface PasswordVerificationDialogProps {
|
||||||
|
open: boolean;
|
||||||
|
onOpenChange: (open: boolean) => void;
|
||||||
|
onSuccess: () => void;
|
||||||
|
defaultEmail?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function PasswordVerificationDialog({
|
||||||
|
open,
|
||||||
|
onOpenChange,
|
||||||
|
onSuccess,
|
||||||
|
defaultEmail = "",
|
||||||
|
}: PasswordVerificationDialogProps) {
|
||||||
|
const [email, setEmail] = useState(defaultEmail);
|
||||||
|
const [password, setPassword] = useState("");
|
||||||
|
const [isVerifying, setIsVerifying] = useState(false);
|
||||||
|
const [showResetOption, setShowResetOption] = useState(false);
|
||||||
|
|
||||||
|
const handleVerify = async (e: React.FormEvent) => {
|
||||||
|
e.preventDefault();
|
||||||
|
|
||||||
|
if (!email || !password) {
|
||||||
|
toast.error("Please enter both email and password");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
setIsVerifying(true);
|
||||||
|
setShowResetOption(false);
|
||||||
|
|
||||||
|
try {
|
||||||
|
const result = await reverifyPasswordAuth(email, password);
|
||||||
|
|
||||||
|
if (result.success) {
|
||||||
|
toast.success("Password Verified!", {
|
||||||
|
description: "Your password authentication has been activated.",
|
||||||
|
});
|
||||||
|
onOpenChange(false);
|
||||||
|
onSuccess();
|
||||||
|
} else {
|
||||||
|
setShowResetOption(true);
|
||||||
|
toast.error("Verification Failed", {
|
||||||
|
description: result.error || "Unable to verify password. Try the password reset option below.",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (error: any) {
|
||||||
|
setShowResetOption(true);
|
||||||
|
toast.error("Verification Error", {
|
||||||
|
description: error.message || "An unexpected error occurred.",
|
||||||
|
});
|
||||||
|
} finally {
|
||||||
|
setIsVerifying(false);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handlePasswordReset = () => {
|
||||||
|
onOpenChange(false);
|
||||||
|
// Navigate or trigger password reset flow
|
||||||
|
window.location.href = `/auth?email=${encodeURIComponent(email)}&message=reset-password`;
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Dialog open={open} onOpenChange={onOpenChange}>
|
||||||
|
<DialogContent className="sm:max-w-md">
|
||||||
|
<DialogHeader>
|
||||||
|
<DialogTitle>Verify Password Access</DialogTitle>
|
||||||
|
<DialogDescription>
|
||||||
|
Enter your email and password to activate password authentication for your account.
|
||||||
|
</DialogDescription>
|
||||||
|
</DialogHeader>
|
||||||
|
|
||||||
|
<form onSubmit={handleVerify}>
|
||||||
|
<div className="space-y-4 py-4">
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label htmlFor="verify-email">Email</Label>
|
||||||
|
<Input
|
||||||
|
id="verify-email"
|
||||||
|
type="email"
|
||||||
|
value={email}
|
||||||
|
onChange={(e) => setEmail(e.target.value)}
|
||||||
|
placeholder="your@email.com"
|
||||||
|
disabled={isVerifying}
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="space-y-2">
|
||||||
|
<Label htmlFor="verify-password">Password</Label>
|
||||||
|
<Input
|
||||||
|
id="verify-password"
|
||||||
|
type="password"
|
||||||
|
value={password}
|
||||||
|
onChange={(e) => setPassword(e.target.value)}
|
||||||
|
placeholder="Enter your password"
|
||||||
|
disabled={isVerifying}
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{showResetOption && (
|
||||||
|
<Alert>
|
||||||
|
<AlertCircle className="h-4 w-4" />
|
||||||
|
<AlertDescription>
|
||||||
|
Can't remember your password?{" "}
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="link"
|
||||||
|
className="h-auto p-0 text-sm"
|
||||||
|
onClick={handlePasswordReset}
|
||||||
|
>
|
||||||
|
Reset it here
|
||||||
|
</Button>
|
||||||
|
</AlertDescription>
|
||||||
|
</Alert>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<DialogFooter>
|
||||||
|
<Button
|
||||||
|
type="button"
|
||||||
|
variant="outline"
|
||||||
|
onClick={() => onOpenChange(false)}
|
||||||
|
disabled={isVerifying}
|
||||||
|
>
|
||||||
|
Cancel
|
||||||
|
</Button>
|
||||||
|
<Button type="submit" disabled={isVerifying}>
|
||||||
|
{isVerifying && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
|
||||||
|
Verify Password
|
||||||
|
</Button>
|
||||||
|
</DialogFooter>
|
||||||
|
</form>
|
||||||
|
</DialogContent>
|
||||||
|
</Dialog>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -16,14 +16,18 @@ import {
|
|||||||
getUserIdentities,
|
getUserIdentities,
|
||||||
checkDisconnectSafety,
|
checkDisconnectSafety,
|
||||||
disconnectIdentity,
|
disconnectIdentity,
|
||||||
connectIdentity
|
connectIdentity,
|
||||||
|
hasOrphanedPassword
|
||||||
} from '@/lib/identityService';
|
} from '@/lib/identityService';
|
||||||
import type { UserIdentity, OAuthProvider } from '@/types/identity';
|
import type { UserIdentity, OAuthProvider } from '@/types/identity';
|
||||||
|
import { PasswordVerificationDialog } from '@/components/auth/PasswordVerificationDialog';
|
||||||
|
import { toast as sonnerToast } from 'sonner';
|
||||||
export function SecurityTab() {
|
export function SecurityTab() {
|
||||||
const { user } = useAuth();
|
const { user } = useAuth();
|
||||||
const { toast } = useToast();
|
const { toast } = useToast();
|
||||||
const navigate = useNavigate();
|
const navigate = useNavigate();
|
||||||
const [passwordDialogOpen, setPasswordDialogOpen] = useState(false);
|
const [passwordDialogOpen, setPasswordDialogOpen] = useState(false);
|
||||||
|
const [verificationDialogOpen, setVerificationDialogOpen] = useState(false);
|
||||||
const [identities, setIdentities] = useState<UserIdentity[]>([]);
|
const [identities, setIdentities] = useState<UserIdentity[]>([]);
|
||||||
const [loadingIdentities, setLoadingIdentities] = useState(true);
|
const [loadingIdentities, setLoadingIdentities] = useState(true);
|
||||||
const [disconnectingProvider, setDisconnectingProvider] = useState<OAuthProvider | null>(null);
|
const [disconnectingProvider, setDisconnectingProvider] = useState<OAuthProvider | null>(null);
|
||||||
@@ -31,12 +35,33 @@ export function SecurityTab() {
|
|||||||
const [hasPassword, setHasPassword] = useState(false);
|
const [hasPassword, setHasPassword] = useState(false);
|
||||||
const [addPasswordMode, setAddPasswordMode] = useState<'standalone' | 'disconnect'>('standalone');
|
const [addPasswordMode, setAddPasswordMode] = useState<'standalone' | 'disconnect'>('standalone');
|
||||||
const [addingPassword, setAddingPassword] = useState(false);
|
const [addingPassword, setAddingPassword] = useState(false);
|
||||||
|
const [showOrphanedPasswordOption, setShowOrphanedPasswordOption] = useState(false);
|
||||||
|
|
||||||
// Load user identities on mount
|
// Load user identities on mount
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
loadIdentities();
|
loadIdentities();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const checkOrphanedPassword = async () => {
|
||||||
|
if (!hasPassword) {
|
||||||
|
const isOrphaned = await hasOrphanedPassword();
|
||||||
|
setShowOrphanedPasswordOption(isOrphaned);
|
||||||
|
|
||||||
|
if (isOrphaned) {
|
||||||
|
sonnerToast.info("Password Authentication Needs Activation", {
|
||||||
|
description: "Click 'Verify Password Access' to complete your password setup.",
|
||||||
|
duration: 10000,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
if (!loadingIdentities) {
|
||||||
|
checkOrphanedPassword();
|
||||||
|
}
|
||||||
|
}, [hasPassword, loadingIdentities]);
|
||||||
|
|
||||||
const loadIdentities = async () => {
|
const loadIdentities = async () => {
|
||||||
try {
|
try {
|
||||||
setLoadingIdentities(true);
|
setLoadingIdentities(true);
|
||||||
@@ -162,6 +187,15 @@ export function SecurityTab() {
|
|||||||
setPasswordSetupProvider('google' as OAuthProvider);
|
setPasswordSetupProvider('google' as OAuthProvider);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const handleVerifyExistingPassword = () => {
|
||||||
|
setVerificationDialogOpen(true);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleVerificationSuccess = async () => {
|
||||||
|
await loadIdentities();
|
||||||
|
sonnerToast.success("Password authentication activated successfully!");
|
||||||
|
};
|
||||||
|
|
||||||
// Get connected accounts with identity data
|
// Get connected accounts with identity data
|
||||||
const connectedAccounts = [
|
const connectedAccounts = [
|
||||||
{
|
{
|
||||||
@@ -198,6 +232,13 @@ export function SecurityTab() {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
|
<PasswordVerificationDialog
|
||||||
|
open={verificationDialogOpen}
|
||||||
|
onOpenChange={setVerificationDialogOpen}
|
||||||
|
onSuccess={handleVerificationSuccess}
|
||||||
|
defaultEmail={user?.email}
|
||||||
|
/>
|
||||||
|
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
{/* Password Section - Conditional based on auth method */}
|
{/* Password Section - Conditional based on auth method */}
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
@@ -216,22 +257,34 @@ export function SecurityTab() {
|
|||||||
)}
|
)}
|
||||||
</CardDescription>
|
</CardDescription>
|
||||||
</CardHeader>
|
</CardHeader>
|
||||||
<CardContent>
|
<CardContent className="space-y-3">
|
||||||
{hasPassword ? (
|
{hasPassword ? (
|
||||||
<Button onClick={() => setPasswordDialogOpen(true)}>
|
<Button onClick={() => setPasswordDialogOpen(true)}>
|
||||||
Change Password
|
Change Password
|
||||||
</Button>
|
</Button>
|
||||||
) : (
|
) : (
|
||||||
<Button onClick={handleAddPassword} disabled={addingPassword}>
|
<>
|
||||||
{addingPassword ? (
|
<Button onClick={handleAddPassword} disabled={addingPassword}>
|
||||||
<>
|
{addingPassword ? (
|
||||||
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
|
<>
|
||||||
Adding Password...
|
<Loader2 className="w-4 h-4 mr-2 animate-spin" />
|
||||||
</>
|
Adding Password...
|
||||||
) : (
|
</>
|
||||||
'Add Password'
|
) : (
|
||||||
|
'Add Password'
|
||||||
|
)}
|
||||||
|
</Button>
|
||||||
|
|
||||||
|
{showOrphanedPasswordOption && (
|
||||||
|
<Button
|
||||||
|
variant="outline"
|
||||||
|
onClick={handleVerifyExistingPassword}
|
||||||
|
className="w-full"
|
||||||
|
>
|
||||||
|
Already have a password? Verify Access
|
||||||
|
</Button>
|
||||||
)}
|
)}
|
||||||
</Button>
|
</>
|
||||||
)}
|
)}
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</Card>
|
</Card>
|
||||||
|
|||||||
Reference in New Issue
Block a user