chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:32:57 +08:00
commit cd420f9332
4811 changed files with 884702 additions and 0 deletions
@@ -0,0 +1,26 @@
import type { LoaderFunctionArgs } from "@remix-run/server-runtime";
import { json } from "@remix-run/server-runtime";
import { authenticateApiRequest } from "~/services/apiAuth.server";
import { logger } from "~/services/logger.server";
export async function action({ request }: LoaderFunctionArgs) {
try {
// Next authenticate the request
const authenticationResult = await authenticateApiRequest(request);
if (!authenticationResult) {
return json({ error: "Invalid or Missing API key" }, { status: 401 });
}
const claims = {
sub: authenticationResult.environment.id,
pub: true,
};
return json(claims);
} catch (error) {
if (error instanceof Response) throw error;
logger.error("Failed to read auth jwt claims", { error });
return json({ error: "Internal Server Error" }, { status: 500 });
}
}