mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-07-28 21:09:30 +00:00
e7a8b41ba9
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/a287b6d4-b0e2-4481-9e90-30d919a70c4f.jpg
547 lines
20 KiB
TypeScript
547 lines
20 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from '@/components/ui/card';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { Switch } from '@/components/ui/switch';
|
|
import { Badge } from '@/components/ui/badge';
|
|
import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from '@/components/ui/select';
|
|
import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '@/components/ui/tooltip';
|
|
import { Separator } from '@/components/ui/separator';
|
|
import {
|
|
Info,
|
|
Clock,
|
|
Settings,
|
|
ListFilter,
|
|
EyeIcon,
|
|
CalendarDays,
|
|
RefreshCw,
|
|
AlertTriangle
|
|
} from 'lucide-react';
|
|
|
|
import { DynamicGroupRule, LdapConnection } from '@shared/schema';
|
|
import CronJobBuilder, { ScheduleItem } from './cron-job-builder';
|
|
import ConditionBuilder from './condition-builder';
|
|
import { useToast } from '@/hooks/use-toast';
|
|
import { queryClient, apiRequest } from '@/lib/queryClient';
|
|
import { useMutation, useQuery } from '@tanstack/react-query';
|
|
|
|
export interface Condition {
|
|
id?: number;
|
|
ruleId?: number;
|
|
parentId?: number | null;
|
|
attribute: string;
|
|
operator: string;
|
|
value: string;
|
|
logicalOperator?: string | null;
|
|
isGroup?: boolean;
|
|
}
|
|
|
|
interface RuleEditorProps {
|
|
rule?: DynamicGroupRule;
|
|
onSave: (rule: DynamicGroupRule, schedules: ScheduleItem[]) => void;
|
|
onCancel: () => void;
|
|
}
|
|
|
|
export const RuleEditor: React.FC<RuleEditorProps> = ({ rule, onSave, onCancel }) => {
|
|
const { toast } = useToast();
|
|
const [activeTab, setActiveTab] = useState('general');
|
|
const [conditions, setConditions] = useState<Condition[]>([]);
|
|
const [schedules, setSchedules] = useState<ScheduleItem[]>([]);
|
|
const [formData, setFormData] = useState({
|
|
name: rule?.name || '',
|
|
description: rule?.description || '',
|
|
targetGroup: rule?.targetGroup || '',
|
|
enabled: rule?.enabled ?? true,
|
|
variablePattern: rule?.variablePattern || '',
|
|
connections: rule?.connectionIds || []
|
|
});
|
|
|
|
// Load LDAP connections
|
|
const { data: ldapConnections = [] } = useQuery<LdapConnection[]>({
|
|
queryKey: ['/api/ldap-connections'],
|
|
staleTime: 60000,
|
|
});
|
|
|
|
// Load conditions for the rule if editing
|
|
const { data: conditionsData } = useQuery<Condition[]>({
|
|
queryKey: ['/api/dynamic-group-rules', rule?.id, 'conditions'],
|
|
enabled: !!rule?.id,
|
|
staleTime: 60000,
|
|
});
|
|
|
|
// Load schedules for the rule if editing
|
|
const { data: schedulesData } = useQuery<ScheduleItem[]>({
|
|
queryKey: ['/api/dynamic-group-rules', rule?.id, 'schedules'],
|
|
enabled: !!rule?.id,
|
|
staleTime: 60000,
|
|
});
|
|
|
|
// Initialize conditions and schedules when data loads
|
|
useEffect(() => {
|
|
if (conditionsData) {
|
|
setConditions(conditionsData);
|
|
}
|
|
}, [conditionsData]);
|
|
|
|
useEffect(() => {
|
|
if (schedulesData) {
|
|
setSchedules(schedulesData);
|
|
}
|
|
}, [schedulesData]);
|
|
|
|
// Handle form input changes
|
|
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
|
const { name, value } = e.target;
|
|
setFormData(prev => ({ ...prev, [name]: value }));
|
|
};
|
|
|
|
// Handle toggle changes
|
|
const handleToggleChange = (field: string, value: boolean) => {
|
|
setFormData(prev => ({ ...prev, [field]: value }));
|
|
};
|
|
|
|
// Handle connection selection
|
|
const handleConnectionChange = (connectionIds: number[]) => {
|
|
setFormData(prev => ({ ...prev, connections: connectionIds }));
|
|
};
|
|
|
|
// Handle form submission
|
|
const handleSubmit = () => {
|
|
if (!formData.name) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please provide a name for the rule",
|
|
variant: "destructive"
|
|
});
|
|
setActiveTab('general');
|
|
return;
|
|
}
|
|
|
|
if (!formData.targetGroup) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please specify a target AD group",
|
|
variant: "destructive"
|
|
});
|
|
setActiveTab('general');
|
|
return;
|
|
}
|
|
|
|
if (formData.connections.length === 0) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please select at least one LDAP connection",
|
|
variant: "destructive"
|
|
});
|
|
setActiveTab('general');
|
|
return;
|
|
}
|
|
|
|
if (conditions.length === 0) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please define at least one condition",
|
|
variant: "destructive"
|
|
});
|
|
setActiveTab('conditions');
|
|
return;
|
|
}
|
|
|
|
if (schedules.length === 0) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please define at least one schedule",
|
|
variant: "destructive"
|
|
});
|
|
setActiveTab('schedules');
|
|
return;
|
|
}
|
|
|
|
const ruleData: DynamicGroupRule = {
|
|
id: rule?.id,
|
|
name: formData.name,
|
|
description: formData.description || null,
|
|
targetGroup: formData.targetGroup,
|
|
enabled: formData.enabled,
|
|
createdAt: rule?.createdAt || new Date(),
|
|
updatedAt: new Date(),
|
|
lastRun: rule?.lastRun || null,
|
|
lastRunStatus: rule?.lastRunStatus || null,
|
|
variablePattern: formData.variablePattern || null,
|
|
connectionIds: formData.connections
|
|
};
|
|
|
|
onSave(ruleData, schedules);
|
|
};
|
|
|
|
// Test the rule
|
|
const testRuleMutation = useMutation({
|
|
mutationFn: async () => {
|
|
const res = await apiRequest('POST', '/api/dynamic-group-rules/test', {
|
|
rule: {
|
|
name: formData.name,
|
|
targetGroup: formData.targetGroup,
|
|
connectionIds: formData.connections,
|
|
variablePattern: formData.variablePattern || null
|
|
},
|
|
conditions
|
|
});
|
|
return await res.json();
|
|
},
|
|
onSuccess: (data) => {
|
|
toast({
|
|
title: "Test Results",
|
|
description: `The rule would match ${data.matchCount} objects`,
|
|
});
|
|
},
|
|
onError: (error: Error) => {
|
|
toast({
|
|
title: "Test Failed",
|
|
description: error.message,
|
|
variant: "destructive"
|
|
});
|
|
}
|
|
});
|
|
|
|
const handleTest = () => {
|
|
if (formData.connections.length === 0) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please select at least one LDAP connection to test",
|
|
variant: "destructive"
|
|
});
|
|
return;
|
|
}
|
|
|
|
if (conditions.length === 0) {
|
|
toast({
|
|
title: "Missing Information",
|
|
description: "Please define at least one condition to test",
|
|
variant: "destructive"
|
|
});
|
|
return;
|
|
}
|
|
|
|
testRuleMutation.mutate();
|
|
};
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<Tabs value={activeTab} onValueChange={setActiveTab} className="w-full">
|
|
<TabsList className="grid grid-cols-4 md:w-[500px] mb-8">
|
|
<TabsTrigger value="general" className="flex items-center gap-2">
|
|
<Settings className="h-4 w-4" />
|
|
<span className="hidden sm:inline">General</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="conditions" className="flex items-center gap-2">
|
|
<ListFilter className="h-4 w-4" />
|
|
<span className="hidden sm:inline">Conditions</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="schedules" className="flex items-center gap-2">
|
|
<CalendarDays className="h-4 w-4" />
|
|
<span className="hidden sm:inline">Schedules</span>
|
|
</TabsTrigger>
|
|
<TabsTrigger value="preview" className="flex items-center gap-2">
|
|
<EyeIcon className="h-4 w-4" />
|
|
<span className="hidden sm:inline">Preview</span>
|
|
</TabsTrigger>
|
|
</TabsList>
|
|
|
|
{/* General Settings Tab */}
|
|
<TabsContent value="general" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Rule Settings</CardTitle>
|
|
<CardDescription>Configure the basic settings for your dynamic group rule</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Rule Name <span className="text-destructive">*</span></Label>
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
value={formData.name}
|
|
onChange={handleInputChange}
|
|
placeholder="Enter rule name"
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="targetGroup">Target AD Group <span className="text-destructive">*</span></Label>
|
|
<Input
|
|
id="targetGroup"
|
|
name="targetGroup"
|
|
value={formData.targetGroup}
|
|
onChange={handleInputChange}
|
|
placeholder="Enter target AD group DN"
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Full DN of the group to update (e.g., CN=Marketing,OU=Groups,DC=example,DC=com)
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="description">Description</Label>
|
|
<Textarea
|
|
id="description"
|
|
name="description"
|
|
value={formData.description}
|
|
onChange={handleInputChange}
|
|
placeholder="Enter rule description"
|
|
rows={3}
|
|
/>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label>LDAP Connections <span className="text-destructive">*</span></Label>
|
|
<div className="border rounded-md p-4 space-y-2">
|
|
{ldapConnections.length === 0 ? (
|
|
<p className="text-sm text-muted-foreground">No LDAP connections available. Please create one first.</p>
|
|
) : (
|
|
<div className="space-y-2">
|
|
{ldapConnections.map((connection) => (
|
|
<div key={connection.id} className="flex items-center space-x-2">
|
|
<Switch
|
|
id={`connection-${connection.id}`}
|
|
checked={formData.connections.includes(connection.id)}
|
|
onCheckedChange={(checked) => {
|
|
if (checked) {
|
|
handleConnectionChange([...formData.connections, connection.id]);
|
|
} else {
|
|
handleConnectionChange(formData.connections.filter(id => id !== connection.id));
|
|
}
|
|
}}
|
|
/>
|
|
<Label htmlFor={`connection-${connection.id}`}>
|
|
{connection.name} ({connection.server})
|
|
</Label>
|
|
</div>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<p className="text-xs text-muted-foreground">
|
|
Select one or more LDAP connections to search for objects
|
|
</p>
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="variablePattern">Variable Pattern</Label>
|
|
<Input
|
|
id="variablePattern"
|
|
name="variablePattern"
|
|
value={formData.variablePattern}
|
|
onChange={handleInputChange}
|
|
placeholder="e.g., {attribute} Value"
|
|
/>
|
|
<p className="text-xs text-muted-foreground">
|
|
Optional pattern for generating variable values in name or description.
|
|
Use {attribute} to insert attribute values.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="flex items-center space-x-2">
|
|
<Switch
|
|
id="enabled"
|
|
checked={formData.enabled}
|
|
onCheckedChange={(checked) => handleToggleChange('enabled', checked)}
|
|
/>
|
|
<Label htmlFor="enabled">Enable Rule</Label>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Conditions Tab */}
|
|
<TabsContent value="conditions" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Rule Conditions</CardTitle>
|
|
<CardDescription>
|
|
Define the conditions that determine which objects will be included in the dynamic group
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<ConditionBuilder
|
|
conditions={conditions}
|
|
onChange={setConditions}
|
|
connections={formData.connections}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Schedules Tab */}
|
|
<TabsContent value="schedules" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Rule Schedules</CardTitle>
|
|
<CardDescription>
|
|
Configure when this rule should run to update the dynamic group membership
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<CronJobBuilder
|
|
schedules={schedules}
|
|
onSchedulesChange={setSchedules}
|
|
ruleId={rule?.id}
|
|
/>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
|
|
{/* Preview Tab */}
|
|
<TabsContent value="preview" className="space-y-6">
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle className="text-xl">Rule Preview</CardTitle>
|
|
<CardDescription>
|
|
Review your dynamic group rule configuration before saving
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="space-y-6">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<div className="space-y-4">
|
|
<div>
|
|
<h3 className="text-sm font-medium">General Information</h3>
|
|
<Separator className="my-2" />
|
|
<dl className="space-y-2">
|
|
<div className="flex justify-between">
|
|
<dt className="text-sm font-medium text-muted-foreground">Name:</dt>
|
|
<dd className="text-sm">{formData.name || 'Not set'}</dd>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<dt className="text-sm font-medium text-muted-foreground">Target Group:</dt>
|
|
<dd className="text-sm max-w-[250px] truncate" title={formData.targetGroup}>
|
|
{formData.targetGroup || 'Not set'}
|
|
</dd>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<dt className="text-sm font-medium text-muted-foreground">Status:</dt>
|
|
<dd className="text-sm">
|
|
{formData.enabled ? (
|
|
<Badge variant="outline" className="bg-green-50 text-green-700 border-green-200">
|
|
Enabled
|
|
</Badge>
|
|
) : (
|
|
<Badge variant="outline" className="bg-yellow-50 text-yellow-700 border-yellow-200">
|
|
Disabled
|
|
</Badge>
|
|
)}
|
|
</dd>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<dt className="text-sm font-medium text-muted-foreground">Connections:</dt>
|
|
<dd className="text-sm">
|
|
{formData.connections.length === 0 ? (
|
|
<span className="text-destructive">None selected</span>
|
|
) : (
|
|
<span>{formData.connections.length} connection(s)</span>
|
|
)}
|
|
</dd>
|
|
</div>
|
|
<div className="flex justify-between">
|
|
<dt className="text-sm font-medium text-muted-foreground">Variable Pattern:</dt>
|
|
<dd className="text-sm">{formData.variablePattern || 'None'}</dd>
|
|
</div>
|
|
</dl>
|
|
</div>
|
|
|
|
<div>
|
|
<h3 className="text-sm font-medium">Schedules</h3>
|
|
<Separator className="my-2" />
|
|
{schedules.length === 0 ? (
|
|
<p className="text-sm text-destructive">No schedules defined</p>
|
|
) : (
|
|
<ul className="space-y-2">
|
|
{schedules.map((schedule, index) => (
|
|
<li key={index} className="text-sm flex items-center space-x-2">
|
|
<Clock className="h-3 w-3 text-muted-foreground" />
|
|
<span>
|
|
{schedule.name}: {schedule.description}
|
|
{!schedule.enabled && (
|
|
<Badge variant="outline" className="ml-2 text-xs">Disabled</Badge>
|
|
)}
|
|
</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="space-y-4">
|
|
<div>
|
|
<h3 className="text-sm font-medium">Conditions</h3>
|
|
<Separator className="my-2" />
|
|
{conditions.length === 0 ? (
|
|
<p className="text-sm text-destructive">No conditions defined</p>
|
|
) : (
|
|
<div className="border rounded-md p-3 bg-muted/50">
|
|
<p className="text-sm font-mono overflow-auto whitespace-pre-wrap">
|
|
{/* Simplified visualization - in a real implementation, you'd want to render the actual LDAP filter */}
|
|
{`(& ${conditions.map((c) =>
|
|
c.isGroup
|
|
? `(${c.logicalOperator === 'AND' ? '&' : '|'} ...)`
|
|
: `(${c.attribute} ${c.operator} ${c.value})`
|
|
).join(' ')})`}
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
|
|
<div>
|
|
<h3 className="text-sm font-medium">Description</h3>
|
|
<Separator className="my-2" />
|
|
<p className="text-sm">{formData.description || 'No description provided'}</p>
|
|
</div>
|
|
|
|
<div className="pt-4">
|
|
<Button
|
|
variant="outline"
|
|
className="w-full"
|
|
onClick={handleTest}
|
|
disabled={
|
|
testRuleMutation.isPending ||
|
|
conditions.length === 0 ||
|
|
formData.connections.length === 0
|
|
}
|
|
>
|
|
{testRuleMutation.isPending ? (
|
|
<>
|
|
<RefreshCw className="mr-2 h-4 w-4 animate-spin" />
|
|
Testing...
|
|
</>
|
|
) : (
|
|
<>
|
|
<RefreshCw className="mr-2 h-4 w-4" />
|
|
Test Rule
|
|
</>
|
|
)}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
</TabsContent>
|
|
</Tabs>
|
|
|
|
<div className="flex justify-end space-x-2">
|
|
<Button variant="outline" onClick={onCancel}>
|
|
Cancel
|
|
</Button>
|
|
<Button onClick={handleSubmit}>
|
|
{rule ? 'Update Rule' : 'Create Rule'}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default RuleEditor; |