31 lines
961 B
TypeScript
31 lines
961 B
TypeScript
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;
|
|
}
|