24 lines
1.1 KiB
TypeScript
24 lines
1.1 KiB
TypeScript
// SHA-256(endpoint).hex[:16]. Deterministic; no salt. Public-boundary only:
|
|
// the upstream api-server still uses the readable names. See B1 spec.
|
|
//
|
|
// Verify with:
|
|
// python3 -c "import hashlib; print(hashlib.sha256(b'acc').hexdigest()[:16])"
|
|
export const API_PATHS = {
|
|
acc: "414322309db5c06d", // upstream: /acc/
|
|
user: "04f8996da763b7a9", // upstream: /user/
|
|
updateAcc: "982830e2982d95de", // upstream: /update-acc-data
|
|
updateUser: "f1a25b37d8db494c", // upstream: /update-user-data
|
|
} as const;
|
|
|
|
// Reverse map for the Route Handler. Keys are the public path segment,
|
|
// values are { upstream: string; trailingSlash: boolean }.
|
|
export const PUBLIC_TO_UPSTREAM: Record<
|
|
string,
|
|
{ upstream: string; trailingSlash: boolean }
|
|
> = {
|
|
[API_PATHS.acc]: { upstream: "acc", trailingSlash: true },
|
|
[API_PATHS.user]: { upstream: "user", trailingSlash: true },
|
|
[API_PATHS.updateAcc]: { upstream: "update-acc-data", trailingSlash: false },
|
|
[API_PATHS.updateUser]: { upstream: "update-user-data", trailingSlash: false },
|
|
};
|