mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-08-09 02:11:57 +00:00
fb68574adb
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/afff49ca-ba32-4dcb-b9c2-39ee146e28cb.jpg
441 lines
15 KiB
TypeScript
441 lines
15 KiB
TypeScript
import React, { useEffect, useState } from "react";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
import { useToast } from "@/hooks/use-toast";
|
|
import { LdapConnection } from "@shared/schema";
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardHeader,
|
|
CardTitle,
|
|
CardDescription,
|
|
CardFooter
|
|
} from "@/components/ui/card";
|
|
import { Button } from "@/components/ui/button";
|
|
import { Loader2, Plus, Trash } from "lucide-react";
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/components/ui/select";
|
|
import {
|
|
Tabs,
|
|
TabsContent,
|
|
TabsList,
|
|
TabsTrigger,
|
|
} from "@/components/ui/tabs";
|
|
import { Input } from "@/components/ui/input";
|
|
import { Label } from "@/components/ui/label";
|
|
import { Badge } from "@/components/ui/badge";
|
|
|
|
// Import shared types from our shared lib
|
|
import { LdapOperator, LdapCondition, LdapAttribute } from "@/lib/ldap-types";
|
|
|
|
export type LdapQueryBuilderParams = {
|
|
targetObject: "users" | "groups" | "computers" | "ous";
|
|
filter: LdapCondition;
|
|
};
|
|
|
|
// Used for displaying the operators in the UI
|
|
const operatorLabels: Record<LdapOperator, string> = {
|
|
[LdapOperator.AND]: "AND (All conditions)",
|
|
[LdapOperator.OR]: "OR (Any condition)",
|
|
[LdapOperator.NOT]: "NOT",
|
|
[LdapOperator.EQUALS]: "Equals",
|
|
[LdapOperator.NOT_EQUALS]: "Does not equal",
|
|
[LdapOperator.STARTS_WITH]: "Starts with",
|
|
[LdapOperator.ENDS_WITH]: "Ends with",
|
|
[LdapOperator.CONTAINS]: "Contains",
|
|
[LdapOperator.GREATER_THAN]: "Greater than",
|
|
[LdapOperator.LESS_THAN]: "Less than",
|
|
[LdapOperator.PRESENT]: "Has value (attribute exists)",
|
|
[LdapOperator.APPROX]: "Approximately equals",
|
|
};
|
|
|
|
// Group operators by type for the UI
|
|
const logicalOperators = [LdapOperator.AND, LdapOperator.OR, LdapOperator.NOT];
|
|
const comparisonOperators = [
|
|
LdapOperator.EQUALS,
|
|
LdapOperator.NOT_EQUALS,
|
|
LdapOperator.STARTS_WITH,
|
|
LdapOperator.ENDS_WITH,
|
|
LdapOperator.CONTAINS,
|
|
LdapOperator.GREATER_THAN,
|
|
LdapOperator.LESS_THAN,
|
|
LdapOperator.PRESENT,
|
|
LdapOperator.APPROX,
|
|
];
|
|
|
|
interface LdapQueryBuilderProps {
|
|
connections: LdapConnection[];
|
|
value: LdapQueryBuilderParams;
|
|
onChange: (value: LdapQueryBuilderParams) => void;
|
|
onTest?: () => void;
|
|
onSave?: () => void;
|
|
}
|
|
|
|
export function LdapQueryBuilder({
|
|
connections,
|
|
value,
|
|
onChange,
|
|
onTest,
|
|
onSave
|
|
}: LdapQueryBuilderProps) {
|
|
const { toast } = useToast();
|
|
const [selectedConnectionId, setSelectedConnectionId] = useState<number | null>(
|
|
connections.length > 0 ? connections[0].id : null
|
|
);
|
|
|
|
// Load available attributes based on connection and object type
|
|
const { data: availableAttributes = [], isLoading: isLoadingAttributes } = useQuery<LdapAttribute[]>({
|
|
queryKey: ["/api/ldap-queries/attributes", { connectionId: selectedConnectionId, targetObject: value.targetObject }],
|
|
enabled: !!selectedConnectionId && !!value.targetObject,
|
|
});
|
|
|
|
// Update the selected connection ID if the connections list changes
|
|
useEffect(() => {
|
|
if (connections.length > 0 && !selectedConnectionId) {
|
|
setSelectedConnectionId(connections[0].id);
|
|
}
|
|
}, [connections, selectedConnectionId]);
|
|
|
|
// Handle changes to the query target object type
|
|
const handleTargetObjectChange = (targetObject: "users" | "groups" | "computers" | "ous") => {
|
|
onChange({
|
|
...value,
|
|
targetObject,
|
|
});
|
|
};
|
|
|
|
// Handle updates to a condition
|
|
const handleConditionChange = (
|
|
condition: LdapCondition,
|
|
path: number[] = []
|
|
): LdapCondition => {
|
|
if (path.length === 0) {
|
|
return condition;
|
|
}
|
|
|
|
const [index, ...restPath] = path;
|
|
const updatedConditions = [...(value.filter.conditions || [])];
|
|
|
|
if (restPath.length === 0) {
|
|
updatedConditions[index] = condition;
|
|
} else {
|
|
updatedConditions[index] = handleConditionChange(
|
|
updatedConditions[index],
|
|
restPath
|
|
);
|
|
}
|
|
|
|
return {
|
|
...value.filter,
|
|
conditions: updatedConditions,
|
|
};
|
|
};
|
|
|
|
// Add a new condition to a logical operator
|
|
const handleAddCondition = (path: number[] = []) => {
|
|
let currentCondition = value.filter;
|
|
let parent = currentCondition;
|
|
|
|
// Navigate to the target condition
|
|
for (const index of path) {
|
|
if (!currentCondition.conditions) {
|
|
currentCondition.conditions = [];
|
|
}
|
|
parent = currentCondition;
|
|
currentCondition = currentCondition.conditions[index];
|
|
}
|
|
|
|
// Add a new condition
|
|
if (!parent.conditions) {
|
|
parent.conditions = [];
|
|
}
|
|
|
|
parent.conditions.push({
|
|
operator: LdapOperator.EQUALS,
|
|
attribute: availableAttributes.length > 0 ? availableAttributes[0].name : undefined,
|
|
value: "",
|
|
});
|
|
|
|
onChange({ ...value });
|
|
};
|
|
|
|
// Remove a condition
|
|
const handleRemoveCondition = (path: number[]) => {
|
|
if (path.length === 0) return;
|
|
|
|
const parentPath = path.slice(0, -1);
|
|
const index = path[path.length - 1];
|
|
|
|
let currentCondition = value.filter;
|
|
|
|
// Navigate to the parent condition
|
|
for (const idx of parentPath) {
|
|
if (!currentCondition.conditions) return;
|
|
currentCondition = currentCondition.conditions[idx];
|
|
}
|
|
|
|
// Remove the condition
|
|
if (currentCondition.conditions) {
|
|
currentCondition.conditions = currentCondition.conditions.filter((_, i) => i !== index);
|
|
onChange({ ...value });
|
|
}
|
|
};
|
|
|
|
// UI component for rendering a single condition
|
|
const ConditionItem = ({
|
|
condition,
|
|
path = []
|
|
}: {
|
|
condition: LdapCondition;
|
|
path: number[];
|
|
}) => {
|
|
const isLogical = logicalOperators.includes(condition.operator);
|
|
|
|
return (
|
|
<div className="p-4 border rounded-md mb-2">
|
|
<div className="flex flex-wrap gap-2 mb-2">
|
|
<Select
|
|
value={condition.operator}
|
|
onValueChange={(newValue) => {
|
|
const updatedCondition = { ...condition, operator: newValue as LdapOperator };
|
|
|
|
// Reset attributes and values when switching between logical and comparison
|
|
const wasLogical = logicalOperators.includes(condition.operator);
|
|
const isNowLogical = logicalOperators.includes(updatedCondition.operator);
|
|
|
|
if (wasLogical !== isNowLogical) {
|
|
if (isNowLogical) {
|
|
delete updatedCondition.attribute;
|
|
delete updatedCondition.value;
|
|
updatedCondition.conditions = [];
|
|
} else {
|
|
delete updatedCondition.conditions;
|
|
updatedCondition.attribute = availableAttributes.length > 0 ? availableAttributes[0].name : undefined;
|
|
updatedCondition.value = "";
|
|
}
|
|
}
|
|
|
|
const newFilter = handleConditionChange(updatedCondition, path);
|
|
onChange({ ...value, filter: newFilter });
|
|
}}
|
|
>
|
|
<SelectTrigger className="w-[200px]">
|
|
<SelectValue placeholder="Select operator" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="group" disabled className="font-semibold">
|
|
Logical Operators
|
|
</SelectItem>
|
|
{logicalOperators.map((op) => (
|
|
<SelectItem key={op} value={op}>
|
|
{operatorLabels[op]}
|
|
</SelectItem>
|
|
))}
|
|
<SelectItem value="divider" disabled className="font-semibold">
|
|
Comparison Operators
|
|
</SelectItem>
|
|
{comparisonOperators.map((op) => (
|
|
<SelectItem key={op} value={op}>
|
|
{operatorLabels[op]}
|
|
</SelectItem>
|
|
))}
|
|
</SelectContent>
|
|
</Select>
|
|
|
|
{!isLogical && (
|
|
<>
|
|
<Select
|
|
value={condition.attribute}
|
|
onValueChange={(newValue) => {
|
|
const updatedCondition = { ...condition, attribute: newValue };
|
|
const newFilter = handleConditionChange(updatedCondition, path);
|
|
onChange({ ...value, filter: newFilter });
|
|
}}
|
|
>
|
|
<SelectTrigger className="w-[200px]">
|
|
<SelectValue placeholder="Select attribute" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{isLoadingAttributes ? (
|
|
<div className="flex items-center justify-center p-2">
|
|
<Loader2 className="h-4 w-4 animate-spin mr-2" />
|
|
Loading attributes...
|
|
</div>
|
|
) : availableAttributes.length === 0 ? (
|
|
<SelectItem value="empty" disabled>
|
|
No attributes available
|
|
</SelectItem>
|
|
) : (
|
|
availableAttributes.map((attr) => (
|
|
<SelectItem key={attr.name} value={attr.name}>
|
|
{attr.name} {attr.description ? `(${attr.description})` : ''}
|
|
</SelectItem>
|
|
))
|
|
)}
|
|
</SelectContent>
|
|
</Select>
|
|
|
|
{condition.operator !== LdapOperator.PRESENT && (
|
|
<Input
|
|
value={condition.value || ""}
|
|
placeholder="Value"
|
|
className="flex-1"
|
|
onChange={(e) => {
|
|
const updatedCondition = { ...condition, value: e.target.value };
|
|
const newFilter = handleConditionChange(updatedCondition, path);
|
|
onChange({ ...value, filter: newFilter });
|
|
}}
|
|
/>
|
|
)}
|
|
</>
|
|
)}
|
|
|
|
{path.length > 0 && (
|
|
<Button
|
|
variant="ghost"
|
|
size="icon"
|
|
onClick={() => handleRemoveCondition(path)}
|
|
>
|
|
<Trash className="h-4 w-4 text-destructive" />
|
|
</Button>
|
|
)}
|
|
</div>
|
|
|
|
{isLogical && (
|
|
<div className="pl-4 border-l-2 border-dashed border-muted-foreground/30">
|
|
{condition.conditions?.map((childCondition, index) => (
|
|
<ConditionItem
|
|
key={index}
|
|
condition={childCondition}
|
|
path={[...path, index]}
|
|
/>
|
|
))}
|
|
<Button
|
|
variant="outline"
|
|
size="sm"
|
|
onClick={() => handleAddCondition(path)}
|
|
className="mt-2"
|
|
>
|
|
<Plus className="h-4 w-4 mr-2" />
|
|
Add Condition
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
return (
|
|
<Card className="w-full">
|
|
<CardHeader>
|
|
<CardTitle>LDAP Query Builder</CardTitle>
|
|
<CardDescription>
|
|
Build LDAP queries with a visual interface
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="space-y-4">
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div>
|
|
<Label htmlFor="connection">LDAP Connection</Label>
|
|
<Select
|
|
value={selectedConnectionId?.toString() || ""}
|
|
onValueChange={(value) => setSelectedConnectionId(parseInt(value))}
|
|
disabled={connections.length === 0}
|
|
>
|
|
<SelectTrigger id="connection">
|
|
<SelectValue placeholder="Select LDAP connection" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
{connections.length === 0 ? (
|
|
<SelectItem value="empty" disabled>
|
|
No connections available
|
|
</SelectItem>
|
|
) : (
|
|
connections.map((connection) => (
|
|
<SelectItem key={connection.id} value={connection.id.toString()}>
|
|
{connection.name}
|
|
</SelectItem>
|
|
))
|
|
)}
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
<div>
|
|
<Label htmlFor="targetObject">Target Object Type</Label>
|
|
<Select
|
|
value={value.targetObject}
|
|
onValueChange={(value) =>
|
|
handleTargetObjectChange(value as "users" | "groups" | "computers" | "ous")}
|
|
>
|
|
<SelectTrigger id="targetObject">
|
|
<SelectValue placeholder="Select object type" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectItem value="users">Users</SelectItem>
|
|
<SelectItem value="groups">Groups</SelectItem>
|
|
<SelectItem value="computers">Computers</SelectItem>
|
|
<SelectItem value="ous">Organizational Units</SelectItem>
|
|
</SelectContent>
|
|
</Select>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<Label className="mb-2 block">Build Filter</Label>
|
|
<Tabs defaultValue="builder" className="w-full">
|
|
<TabsList className="mb-2">
|
|
<TabsTrigger value="builder">Visual Builder</TabsTrigger>
|
|
<TabsTrigger value="preview">LDAP Filter Preview</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="builder" className="p-0">
|
|
<ConditionItem condition={value.filter} path={[]} />
|
|
</TabsContent>
|
|
<TabsContent value="preview" className="p-0">
|
|
<div className="p-4 bg-muted rounded-md font-mono text-sm overflow-auto">
|
|
<pre>
|
|
{JSON.stringify(value.filter, null, 2)}
|
|
</pre>
|
|
</div>
|
|
</TabsContent>
|
|
</Tabs>
|
|
</div>
|
|
|
|
{availableAttributes.length > 0 && (
|
|
<div>
|
|
<Label className="mb-2 block">Available Attributes</Label>
|
|
<div className="flex flex-wrap gap-2 max-h-[150px] overflow-y-auto p-2 border rounded-md">
|
|
{availableAttributes.map((attr) => (
|
|
<Badge key={attr.name} variant="outline" className="cursor-pointer">
|
|
{attr.name} {attr.type ? `(${attr.type})` : ''}
|
|
</Badge>
|
|
))}
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</CardContent>
|
|
<CardFooter className="flex justify-end gap-2">
|
|
{onTest && (
|
|
<Button
|
|
variant="outline"
|
|
onClick={onTest}
|
|
>
|
|
Test Query
|
|
</Button>
|
|
)}
|
|
{onSave && (
|
|
<Button
|
|
onClick={onSave}
|
|
>
|
|
Save Query
|
|
</Button>
|
|
)}
|
|
</CardFooter>
|
|
</Card>
|
|
);
|
|
} |