-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.ts
More file actions
134 lines (114 loc) · 3.08 KB
/
admin.ts
File metadata and controls
134 lines (114 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/**
* Admin Queries and Mutations for User Management
*
* These functions allow administrators to approve/disapprove users.
*/
import { query, mutation } from "./_generated/server";
import { v } from "convex/values";
import { getAuthUserId } from "@convex-dev/auth/server";
import { requireAdminUser } from "./authHelpers";
/**
* Get current user's approval status
*/
export const getCurrentUserStatus = query({
handler: async (ctx) => {
try {
const userId = await getAuthUserId(ctx);
if (!userId) {
return {
authenticated: false,
approved: false,
isAdmin: false,
userId: null,
email: null,
};
}
const user = await ctx.db.get(userId);
if (!user) {
console.error("User document not found:", userId);
return {
authenticated: true,
approved: false,
isAdmin: false,
userId: userId,
email: null,
};
}
return {
authenticated: true,
approved: user?.approved === true,
isAdmin: user?.isAdmin === true,
userId: userId,
email: user?.email || null,
};
} catch (error) {
console.error("Error getting user status:", error);
throw error;
}
},
});
/**
* List all users (admin only)
*/
export const listUsers = query({
handler: async (ctx) => {
// Verify the current user is an admin
await requireAdminUser(ctx);
const users = await ctx.db.query("users").collect();
return users.map((user) => ({
_id: user._id,
email: user.email || null,
name: user.name || null,
approved: user.approved || false,
isAdmin: user.isAdmin || false,
_creationTime: user._creationTime,
}));
},
});
/**
* Approve a user (admin only)
*/
export const approveUser = mutation({
args: {
userId: v.id("users"),
},
handler: async (ctx, args) => {
// Verify the current user is an admin
await requireAdminUser(ctx);
await ctx.db.patch(args.userId, { approved: true });
return { success: true };
},
});
/**
* Disapprove a user (admin only)
*/
export const disapproveUser = mutation({
args: {
userId: v.id("users"),
},
handler: async (ctx, args) => {
// Verify the current user is an admin
await requireAdminUser(ctx);
await ctx.db.patch(args.userId, { approved: false });
return { success: true };
},
});
/**
* Bootstrap: self-approve and promote to admin if no admins exist yet.
* Allows the first user to become admin without requiring an existing admin.
*/
export const bootstrapFirstAdmin = mutation({
handler: async (ctx) => {
const userId = await getAuthUserId(ctx);
if (!userId) {
throw new Error("Not authenticated");
}
const allUsers = await ctx.db.query("users").collect();
const hasAdmin = allUsers.some((u) => u.isAdmin === true);
if (hasAdmin) {
throw new Error("An admin already exists. Ask an admin to approve your account.");
}
await ctx.db.patch(userId, { approved: true, isAdmin: true });
return { success: true, userId };
},
});