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,30 @@
import { WaitpointId } from "@trigger.dev/core/v3/isomorphic";
import nodeCrypto from "node:crypto";
import { env } from "~/env.server";
export function generateHttpCallbackUrl(waitpointId: string, apiKey: string) {
const hash = generateHttpCallbackHash(waitpointId, apiKey);
return `${env.API_ORIGIN ?? env.APP_ORIGIN}/api/v1/waitpoints/tokens/${WaitpointId.toFriendlyId(
waitpointId
)}/callback/${hash}`;
}
function generateHttpCallbackHash(waitpointId: string, apiKey: string) {
const hmac = nodeCrypto.createHmac("sha256", apiKey);
hmac.update(waitpointId);
return hmac.digest("hex");
}
export function verifyHttpCallbackHash(waitpointId: string, hash: string, apiKey: string) {
const expectedHash = generateHttpCallbackHash(waitpointId, apiKey);
if (
hash.length === expectedHash.length &&
nodeCrypto.timingSafeEqual(Buffer.from(hash, "hex"), Buffer.from(expectedHash, "hex"))
) {
return true;
}
return false;
}