Added admin password change

X-Lovable-Edit-ID: edt-e7b7ecc1-9146-406b-881a-14b1f43ab35e
Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 16:01:24 +00:00
co-authored by renee-png
3 changed files with 162 additions and 25 deletions
BIN
View File
Binary file not shown.
+91 -25
View File
@@ -50,7 +50,7 @@ import {
TableRow,
} from "@/components/ui/table";
import { Badge } from "@/components/ui/badge";
import { Loader2, UserPlus, Trash2 } from "lucide-react";
import { Loader2, UserPlus, Trash2, KeyRound } from "lucide-react";
import { toast } from "sonner";
export const Route = createFileRoute("/admin/users")({
@@ -189,7 +189,7 @@ function UsersPage() {
<TableHead>Email</TableHead>
<TableHead>Role</TableHead>
<TableHead className="w-[140px]">Hourly rate</TableHead>
<TableHead className="w-[80px]"></TableHead>
<TableHead className="w-[120px] text-right">Actions</TableHead>
</TableRow>
</TableHeader>
<TableBody>
@@ -231,29 +231,32 @@ function UsersPage() {
/>
</TableCell>
<TableCell>
{!isSelf && (
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="ghost" size="icon">
<Trash2 className="h-4 w-4 text-destructive" />
</Button>
</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Delete user?</AlertDialogTitle>
<AlertDialogDescription>
This will permanently remove {u.email} and revoke their access.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Cancel</AlertDialogCancel>
<AlertDialogAction onClick={() => handleDelete(u.id)}>
Delete
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
)}
<div className="flex items-center justify-end gap-1">
<SetPasswordDialog userId={u.id} email={u.email} />
{!isSelf && (
<AlertDialog>
<AlertDialogTrigger asChild>
<Button variant="ghost" size="icon">
<Trash2 className="h-4 w-4 text-destructive" />
</Button>
</AlertDialogTrigger>
<AlertDialogContent>
<AlertDialogHeader>
<AlertDialogTitle>Delete user?</AlertDialogTitle>
<AlertDialogDescription>
This will permanently remove {u.email} and revoke their access.
</AlertDialogDescription>
</AlertDialogHeader>
<AlertDialogFooter>
<AlertDialogCancel>Cancel</AlertDialogCancel>
<AlertDialogAction onClick={() => handleDelete(u.id)}>
Delete
</AlertDialogAction>
</AlertDialogFooter>
</AlertDialogContent>
</AlertDialog>
)}
</div>
</TableCell>
</TableRow>
);
@@ -312,6 +315,69 @@ function RateInput({
}
function SetPasswordDialog({ userId, email }: { userId: string; email: string }) {
const [open, setOpen] = useState(false);
const [password, setPassword] = useState("");
const [submitting, setSubmitting] = useState(false);
const onSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setSubmitting(true);
const { error } = await supabase.functions.invoke("admin-set-password", {
body: { user_id: userId, password },
});
setSubmitting(false);
if (error) {
toast.error("Could not change password", { description: error.message });
return;
}
toast.success("Password updated", {
description: "Share the new password securely with the user.",
});
setPassword("");
setOpen(false);
};
return (
<Dialog open={open} onOpenChange={setOpen}>
<DialogTrigger asChild>
<Button variant="ghost" size="icon" title="Change password">
<KeyRound className="h-4 w-4" />
</Button>
</DialogTrigger>
<DialogContent>
<DialogHeader>
<DialogTitle className="font-serif">Change password</DialogTitle>
<DialogDescription>
Set a new password for {email}. Share it with them through a secure channel.
</DialogDescription>
</DialogHeader>
<form onSubmit={onSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="new-password">New password</Label>
<Input
id="new-password"
type="text"
value={password}
onChange={(e) => setPassword(e.target.value)}
minLength={10}
required
autoFocus
/>
<p className="text-xs text-muted-foreground">Min 10 characters.</p>
</div>
<DialogFooter>
<Button type="submit" disabled={submitting}>
{submitting && <Loader2 className="mr-2 h-4 w-4 animate-spin" />}
Update password
</Button>
</DialogFooter>
</form>
</DialogContent>
</Dialog>
);
}
function InviteDialog({ onCreated }: { onCreated: () => void }) {
const [email, setEmail] = useState("");
const [fullName, setFullName] = useState("");
@@ -0,0 +1,71 @@
// Admin-only edge function to set a user's password.
import { createClient } from "https://esm.sh/@supabase/supabase-js@2.49.4";
const corsHeaders = {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Headers": "authorization, x-client-info, apikey, content-type",
"Access-Control-Allow-Methods": "POST, OPTIONS",
};
Deno.serve(async (req) => {
if (req.method === "OPTIONS") return new Response(null, { headers: corsHeaders });
try {
const SUPABASE_URL = Deno.env.get("SUPABASE_URL")!;
const SERVICE_ROLE = Deno.env.get("SUPABASE_SERVICE_ROLE_KEY")!;
const ANON_KEY = Deno.env.get("SUPABASE_PUBLISHABLE_KEY") ?? Deno.env.get("SUPABASE_ANON_KEY")!;
const token = (req.headers.get("Authorization") ?? "").replace("Bearer ", "");
if (!token) {
return new Response(JSON.stringify({ error: "Missing auth" }), {
status: 401,
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
}
const userClient = createClient(SUPABASE_URL, ANON_KEY, {
global: { headers: { Authorization: `Bearer ${token}` } },
});
const { data: userData } = await userClient.auth.getUser();
if (!userData.user) {
return new Response(JSON.stringify({ error: "Unauthorized" }), {
status: 401,
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
}
const admin = createClient(SUPABASE_URL, SERVICE_ROLE);
const { data: isAdminData } = await admin.rpc("is_admin", { _user_id: userData.user.id });
if (!isAdminData) {
return new Response(JSON.stringify({ error: "Forbidden" }), {
status: 403,
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
}
const { user_id, password } = (await req.json()) as { user_id: string; password: string };
if (!user_id || !password || typeof password !== "string" || password.length < 10) {
return new Response(
JSON.stringify({ error: "Password must be at least 10 characters" }),
{ status: 400, headers: { ...corsHeaders, "Content-Type": "application/json" } },
);
}
const { error } = await admin.auth.admin.updateUserById(user_id, { password });
if (error) {
return new Response(JSON.stringify({ error: error.message }), {
status: 400,
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
}
return new Response(JSON.stringify({ ok: true }), {
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
} catch (e) {
return new Response(JSON.stringify({ error: (e as Error).message }), {
status: 500,
headers: { ...corsHeaders, "Content-Type": "application/json" },
});
}
});