File size: 6,815 Bytes
7d7a53f 9b4ba04 7d7a53f 4331e77 7d7a53f 4331e77 7d7a53f 4331e77 7d7a53f 4331e77 e67ab0e 9b4ba04 7d7a53f 4331e77 7d7a53f 4331e77 7d7a53f 4331e77 e67ab0e 7d7a53f 4331e77 9b4ba04 7d7a53f 4331e77 7d7a53f 308e215 7d7a53f 9b4ba04 c178e57 9b4ba04 7d7a53f |
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 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 |
import { Elysia } from "elysia";
import { authPlugin } from "$api/authPlugin";
import { defaultModel } from "$lib/server/models";
import { collections } from "$lib/server/database";
import { authCondition } from "$lib/server/auth";
import { models, validateModel } from "$lib/server/models";
import { DEFAULT_SETTINGS, type SettingsEditable } from "$lib/types/Settings";
import { z } from "zod";
import { config } from "$lib/server/config";
import { logger } from "$lib/server/logger";
export const userGroup = new Elysia()
.use(authPlugin)
.get("/login", () => {
// todo: login
throw new Error("Not implemented");
})
.get("/login/callback", () => {
// todo: login callback
throw new Error("Not implemented");
})
.post("/logout", () => {
// todo: logout
throw new Error("Not implemented");
})
.group("/user", (app) => {
return app
.get("/", ({ locals }) => {
return locals.user
? {
id: locals.user._id.toString(),
username: locals.user.username,
avatarUrl: locals.user.avatarUrl,
email: locals.user.email,
isAdmin: locals.user.isAdmin ?? false,
isEarlyAccess: locals.user.isEarlyAccess ?? false,
}
: null;
})
.get("/settings", async ({ locals }) => {
const settings = await collections.settings.findOne(authCondition(locals));
if (settings && !validateModel(models).safeParse(settings?.activeModel).success) {
settings.activeModel = defaultModel.id;
await collections.settings.updateOne(authCondition(locals), {
$set: { activeModel: defaultModel.id },
});
}
// if the model is unlisted, set the active model to the default model
if (
settings?.activeModel &&
models.find((m) => m.id === settings?.activeModel)?.unlisted === true
) {
settings.activeModel = defaultModel.id;
await collections.settings.updateOne(authCondition(locals), {
$set: { activeModel: defaultModel.id },
});
}
// todo: get user settings
return {
welcomeModalSeen: !!settings?.welcomeModalSeenAt,
welcomeModalSeenAt: settings?.welcomeModalSeenAt ?? null,
activeModel: settings?.activeModel ?? DEFAULT_SETTINGS.activeModel,
disableStream: settings?.disableStream ?? DEFAULT_SETTINGS.disableStream,
directPaste: settings?.directPaste ?? DEFAULT_SETTINGS.directPaste,
hidePromptExamples: settings?.hidePromptExamples ?? DEFAULT_SETTINGS.hidePromptExamples,
shareConversationsWithModelAuthors:
settings?.shareConversationsWithModelAuthors ??
DEFAULT_SETTINGS.shareConversationsWithModelAuthors,
customPrompts: settings?.customPrompts ?? {},
multimodalOverrides: settings?.multimodalOverrides ?? {},
toolsOverrides: settings?.toolsOverrides ?? {},
billingOrganization: settings?.billingOrganization ?? undefined,
};
})
.post("/settings", async ({ locals, request }) => {
const body = await request.json();
const { welcomeModalSeen, ...settings } = z
.object({
shareConversationsWithModelAuthors: z
.boolean()
.default(DEFAULT_SETTINGS.shareConversationsWithModelAuthors),
welcomeModalSeen: z.boolean().optional(),
activeModel: z.string().default(DEFAULT_SETTINGS.activeModel),
customPrompts: z.record(z.string()).default({}),
multimodalOverrides: z.record(z.boolean()).default({}),
toolsOverrides: z.record(z.boolean()).default({}),
disableStream: z.boolean().default(false),
directPaste: z.boolean().default(false),
hidePromptExamples: z.record(z.boolean()).default({}),
billingOrganization: z.string().optional(),
})
.parse(body) satisfies SettingsEditable;
await collections.settings.updateOne(
authCondition(locals),
{
$set: {
...settings,
...(welcomeModalSeen && { welcomeModalSeenAt: new Date() }),
updatedAt: new Date(),
},
$setOnInsert: {
createdAt: new Date(),
},
},
{
upsert: true,
}
);
// return ok response
return new Response();
})
.get("/reports", async ({ locals }) => {
if (!locals.user || !locals.sessionId) {
return [];
}
const reports = await collections.reports
.find({
createdBy: locals.user?._id ?? locals.sessionId,
})
.toArray();
return reports;
})
.get("/billing-orgs", async ({ locals, set }) => {
// Only available for HuggingChat
if (!config.isHuggingChat) {
set.status = 404;
return { error: "Not available" };
}
// Requires authenticated user with OAuth token
if (!locals.user) {
set.status = 401;
return { error: "Login required" };
}
if (!locals.token) {
set.status = 401;
return { error: "OAuth token not available. Please log out and log back in." };
}
try {
// Fetch billing info from HuggingFace OAuth userinfo
const response = await fetch("https://huggingface.co/oauth/userinfo", {
headers: { Authorization: `Bearer ${locals.token}` },
});
if (!response.ok) {
logger.error(`Failed to fetch billing orgs: ${response.status}`);
set.status = 502;
return { error: "Failed to fetch billing information" };
}
const data = await response.json();
// Get user's current billingOrganization setting
const settings = await collections.settings.findOne(authCondition(locals));
const currentBillingOrg = settings?.billingOrganization;
// Filter orgs to only those with canPay: true
const billingOrgs = (data.orgs ?? [])
.filter((org: { canPay?: boolean }) => org.canPay === true)
.map((org: { sub: string; name: string; preferred_username: string }) => ({
sub: org.sub,
name: org.name,
preferred_username: org.preferred_username,
}));
// Check if current billing org is still valid
const isCurrentOrgValid =
!currentBillingOrg ||
billingOrgs.some(
(org: { preferred_username: string }) => org.preferred_username === currentBillingOrg
);
// If current billing org is no longer valid, clear it
if (!isCurrentOrgValid && currentBillingOrg) {
logger.info(
`Clearing invalid billingOrganization '${currentBillingOrg}' for user ${locals.user._id}`
);
await collections.settings.updateOne(authCondition(locals), {
$unset: { billingOrganization: "" },
$set: { updatedAt: new Date() },
});
}
return {
userCanPay: data.canPay ?? false,
organizations: billingOrgs,
currentBillingOrg: isCurrentOrgValid ? currentBillingOrg : undefined,
};
} catch (err) {
logger.error(err, "Error fetching billing orgs:");
set.status = 500;
return { error: "Internal server error" };
}
});
});
|