mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-08-09 18:32:21 +00:00
a1cc112435
Replit-Commit-Author: Agent Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/6d7c58e6-0cd9-4f69-81f7-091dce31abab.jpg
452 lines
17 KiB
TypeScript
452 lines
17 KiB
TypeScript
import { useEffect, useState } from "react";
|
|
import { useLocation } from "wouter";
|
|
import { z } from "zod";
|
|
import { useForm } from "react-hook-form";
|
|
import { zodResolver } from "@hookform/resolvers/zod";
|
|
import { useMutation } from "@tanstack/react-query";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import {
|
|
Form,
|
|
FormControl,
|
|
FormField,
|
|
FormItem,
|
|
FormLabel,
|
|
FormMessage,
|
|
} from "@/components/ui/form";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs";
|
|
import { Checkbox } from "@/components/ui/checkbox";
|
|
import { insertUserSchema } from "@shared/schema";
|
|
import { apiRequest } from "@/lib/queryClient";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
|
|
// Login form schema
|
|
const loginSchema = z.object({
|
|
username: z.string().min(1, "Username is required"),
|
|
password: z.string().min(1, "Password is required"),
|
|
rememberMe: z.boolean().optional(),
|
|
});
|
|
|
|
type LoginFormValues = z.infer<typeof loginSchema>;
|
|
|
|
// Registration form schema
|
|
const registerSchema = insertUserSchema.extend({
|
|
confirmPassword: z.string().min(1, "Password confirmation is required"),
|
|
acceptTerms: z.boolean().refine(val => val === true, {
|
|
message: "You must accept the terms and conditions",
|
|
}),
|
|
// Define roleId explicitly to match form values
|
|
roleId: z.number().optional().nullable(),
|
|
}).refine(data => data.password === data.confirmPassword, {
|
|
message: "Passwords do not match",
|
|
path: ["confirmPassword"],
|
|
});
|
|
|
|
type RegisterFormValues = z.infer<typeof registerSchema>;
|
|
|
|
export default function AuthPage() {
|
|
const [location, navigate] = useLocation();
|
|
const { toast } = useToast();
|
|
const [isChecking, setIsChecking] = useState(true);
|
|
|
|
// Check if user is already logged in
|
|
useEffect(() => {
|
|
const checkAuth = async () => {
|
|
try {
|
|
const response = await fetch('/api/user', {
|
|
credentials: 'include'
|
|
});
|
|
|
|
if (response.ok) {
|
|
// User is already logged in, redirect to home
|
|
navigate('/');
|
|
}
|
|
} catch (error) {
|
|
console.error('Error checking auth status:', error);
|
|
} finally {
|
|
setIsChecking(false);
|
|
}
|
|
};
|
|
|
|
checkAuth();
|
|
}, [navigate]);
|
|
|
|
// Login mutation
|
|
const loginMutation = useMutation({
|
|
mutationFn: async (credentials: LoginFormValues) => {
|
|
const res = await apiRequest("POST", "/api/login", credentials);
|
|
return await res.json();
|
|
},
|
|
onSuccess: (user) => {
|
|
toast({
|
|
title: "Login successful",
|
|
description: `Welcome back, ${user.username}!`,
|
|
});
|
|
navigate('/');
|
|
},
|
|
onError: (error: Error) => {
|
|
toast({
|
|
title: "Login failed",
|
|
description: error.message,
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
// Register mutation - using our simplified endpoint
|
|
const registerMutation = useMutation({
|
|
mutationFn: async (credentials: any) => {
|
|
try {
|
|
const res = await apiRequest("POST", "/api/simple-register", credentials);
|
|
if (!res.ok) {
|
|
const errorData = await res.json();
|
|
throw new Error(errorData.message || "Registration failed");
|
|
}
|
|
return await res.json();
|
|
} catch (error) {
|
|
console.error("Registration error:", error);
|
|
throw error instanceof Error ? error : new Error("Unknown registration error");
|
|
}
|
|
},
|
|
onSuccess: (response) => {
|
|
toast({
|
|
title: "Registration successful",
|
|
description: response.message || `Welcome, ${response.username}!`,
|
|
});
|
|
// Switch to login tab automatically
|
|
const loginTab = document.querySelector('[data-state="inactive"][data-value="login"]') as HTMLElement;
|
|
if (loginTab) loginTab.click();
|
|
},
|
|
onError: (error: Error) => {
|
|
toast({
|
|
title: "Registration failed",
|
|
description: error.message,
|
|
variant: "destructive",
|
|
});
|
|
},
|
|
});
|
|
|
|
// Login form
|
|
const loginForm = useForm<LoginFormValues>({
|
|
resolver: zodResolver(loginSchema),
|
|
defaultValues: {
|
|
username: "",
|
|
password: "",
|
|
rememberMe: false,
|
|
},
|
|
});
|
|
|
|
// Register form
|
|
const registerForm = useForm<RegisterFormValues>({
|
|
resolver: zodResolver(registerSchema),
|
|
defaultValues: {
|
|
username: "",
|
|
password: "",
|
|
confirmPassword: "",
|
|
email: "",
|
|
fullName: "",
|
|
acceptTerms: false,
|
|
roleId: 2, // Assign the default "user" role ID
|
|
},
|
|
});
|
|
|
|
// Handle login form submission
|
|
const onLoginSubmit = (data: LoginFormValues) => {
|
|
const { username, password } = data;
|
|
loginMutation.mutate({ username, password });
|
|
};
|
|
|
|
// Handle register form submission
|
|
const onRegisterSubmit = (data: RegisterFormValues) => {
|
|
// Remove confirmPassword and acceptTerms which aren't part of the API request
|
|
const { confirmPassword, acceptTerms, ...registerData } = data;
|
|
registerMutation.mutate(registerData);
|
|
};
|
|
|
|
return (
|
|
<div className="flex min-h-screen bg-background">
|
|
<div className="flex flex-col justify-center flex-1 px-4 py-12 sm:px-6 lg:flex-none lg:px-20 xl:px-24">
|
|
<div className="w-full max-w-sm mx-auto lg:w-96">
|
|
<div className="text-center mb-8">
|
|
<h2 className="text-2xl font-bold text-gray-900">Active Directory Management API</h2>
|
|
<p className="mt-2 text-sm text-gray-600">
|
|
A comprehensive solution for managing your Active Directory resources
|
|
</p>
|
|
</div>
|
|
|
|
<Tabs defaultValue="login">
|
|
<TabsList className="grid w-full grid-cols-2 mb-6">
|
|
<TabsTrigger value="login">Login</TabsTrigger>
|
|
<TabsTrigger value="register">Register</TabsTrigger>
|
|
</TabsList>
|
|
|
|
<TabsContent value="login">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Login to your account</CardTitle>
|
|
<CardDescription>
|
|
Enter your credentials to access the dashboard
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...loginForm}>
|
|
<form onSubmit={loginForm.handleSubmit(onLoginSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={loginForm.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="Enter your username"
|
|
{...field}
|
|
disabled={loginMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={loginForm.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="password"
|
|
placeholder="Enter your password"
|
|
{...field}
|
|
disabled={loginMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<div className="flex items-center justify-between">
|
|
<FormField
|
|
control={loginForm.control}
|
|
name="rememberMe"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-center space-x-2 space-y-0">
|
|
<FormControl>
|
|
<Checkbox
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
disabled={loginMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormLabel className="text-sm font-normal">
|
|
Remember me
|
|
</FormLabel>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button variant="link" className="text-sm p-0 h-auto" disabled={loginMutation.isPending}>
|
|
Forgot password?
|
|
</Button>
|
|
</div>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={loginMutation.isPending}
|
|
>
|
|
{loginMutation.isPending ? "Logging in..." : "Log in"}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
<TabsContent value="register">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Create a new account</CardTitle>
|
|
<CardDescription>
|
|
Fill out the form to register a new account
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<Form {...registerForm}>
|
|
<form onSubmit={registerForm.handleSubmit(onRegisterSubmit)} className="space-y-4">
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="username"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Username</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="Choose a username"
|
|
{...field}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="fullName"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Full Name</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
placeholder="Enter your full name"
|
|
{...field}
|
|
value={field.value || ""}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="email"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Email</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="email"
|
|
placeholder="Enter your email"
|
|
{...field}
|
|
value={field.value || ""}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="password"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="password"
|
|
placeholder="Create a password"
|
|
{...field}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="confirmPassword"
|
|
render={({ field }) => (
|
|
<FormItem>
|
|
<FormLabel>Confirm Password</FormLabel>
|
|
<FormControl>
|
|
<Input
|
|
type="password"
|
|
placeholder="Confirm your password"
|
|
{...field}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<FormMessage />
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<FormField
|
|
control={registerForm.control}
|
|
name="acceptTerms"
|
|
render={({ field }) => (
|
|
<FormItem className="flex flex-row items-start space-x-2 space-y-0">
|
|
<FormControl>
|
|
<Checkbox
|
|
checked={field.value}
|
|
onCheckedChange={field.onChange}
|
|
disabled={registerMutation.isPending}
|
|
/>
|
|
</FormControl>
|
|
<div className="space-y-1 leading-none">
|
|
<FormLabel className="text-sm font-normal">
|
|
I accept the terms and conditions
|
|
</FormLabel>
|
|
<FormMessage />
|
|
</div>
|
|
</FormItem>
|
|
)}
|
|
/>
|
|
|
|
<Button
|
|
type="submit"
|
|
className="w-full"
|
|
disabled={registerMutation.isPending}
|
|
>
|
|
{registerMutation.isPending ? "Creating account..." : "Create account"}
|
|
</Button>
|
|
</form>
|
|
</Form>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
</Tabs>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="relative hidden w-0 flex-1 lg:block">
|
|
<div className="absolute inset-0 bg-primary flex items-center justify-center">
|
|
<div className="max-w-lg p-8 text-white">
|
|
<h2 className="text-4xl font-bold mb-6">Active Directory Management API</h2>
|
|
<ul className="space-y-4 text-lg">
|
|
<li className="flex items-center">
|
|
<span className="mr-2 inline-block w-6 h-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-sm">✓</span>
|
|
Complete CRUD operations for AD resources
|
|
</li>
|
|
<li className="flex items-center">
|
|
<span className="mr-2 inline-block w-6 h-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-sm">✓</span>
|
|
Comprehensive API with Swagger documentation
|
|
</li>
|
|
<li className="flex items-center">
|
|
<span className="mr-2 inline-block w-6 h-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-sm">✓</span>
|
|
Flexible filtering and property selection
|
|
</li>
|
|
<li className="flex items-center">
|
|
<span className="mr-2 inline-block w-6 h-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-sm">✓</span>
|
|
Secure API token management
|
|
</li>
|
|
<li className="flex items-center">
|
|
<span className="mr-2 inline-block w-6 h-6 bg-white bg-opacity-20 rounded-full flex items-center justify-center text-sm">✓</span>
|
|
Intuitive and responsive admin interface
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|