Rewrite res to response for convenience and clarity

This commit is contained in:
Henrik Larsson 2023-07-03 14:16:47 +02:00
parent e9afb63a52
commit 31ecadb97f

View File

@ -7,14 +7,14 @@ const SANITY_WEBHOOK_SECRET = `${process.env.SANITY_WEBHOOK_SECRET}`;
export async function POST(request: NextRequest) { export async function POST(request: NextRequest) {
// Await the response from our request. // Await the response from our request.
const res = await request.json(); const response = await request.json();
// Get headers. // Get headers.
const headersList = headers(); const headersList = headers();
// Get Sanity webhook signature header name. // Get Sanity webhook signature header name.
const signature = `${headersList.get(SIGNATURE_HEADER_NAME)}`; const signature = `${headersList.get(SIGNATURE_HEADER_NAME)}`;
const isValid = isValidSignature(JSON.stringify(res), signature, SANITY_WEBHOOK_SECRET); const isValid = isValidSignature(JSON.stringify(response), signature, SANITY_WEBHOOK_SECRET);
// Log out validity of request. // Log out validity of request.
console.log(`===== Is the webhook request valid? ${isValid}`); console.log(`===== Is the webhook request valid? ${isValid}`);
@ -25,9 +25,9 @@ export async function POST(request: NextRequest) {
return; return;
} }
const slug = res.slug; const slug = response.slug;
const locale = res.locale; const locale = response.locale;
const type = res.type; const type = response.type;
let pathToRevalidate = ""; let pathToRevalidate = "";
if (type === "home") { if (type === "home") {