Add landing page
This commit is contained in:
parent
3fea484585
commit
bce86ee840
47 changed files with 7119 additions and 439 deletions
|
|
@ -1,62 +1,86 @@
|
|||
// Initialize HelcimPay.js session
|
||||
const HELCIM_API_BASE = 'https://api.helcim.com/v2'
|
||||
const HELCIM_API_BASE = "https://api.helcim.com/v2";
|
||||
|
||||
export default defineEventHandler(async (event) => {
|
||||
try {
|
||||
const config = useRuntimeConfig(event)
|
||||
const body = await readBody(event)
|
||||
|
||||
const config = useRuntimeConfig(event);
|
||||
const body = await readBody(event);
|
||||
|
||||
// Debug log the request body
|
||||
console.log('Initialize payment request body:', body)
|
||||
|
||||
// Validate required fields
|
||||
if (!body.customerId) {
|
||||
throw createError({
|
||||
statusCode: 400,
|
||||
statusMessage: 'Customer ID is required'
|
||||
})
|
||||
console.log("Initialize payment request body:", body);
|
||||
|
||||
const helcimToken =
|
||||
config.public.helcimToken || process.env.NUXT_PUBLIC_HELCIM_TOKEN;
|
||||
|
||||
// Determine payment type based on whether this is for a subscription or one-time payment
|
||||
const isEventTicket = body.metadata?.type === "event_ticket";
|
||||
const amount = body.amount || 0;
|
||||
|
||||
// For event tickets with amount > 0, we do a purchase
|
||||
// For subscriptions or card verification, we do verify
|
||||
const paymentType = isEventTicket && amount > 0 ? "purchase" : "verify";
|
||||
|
||||
const requestBody = {
|
||||
paymentType,
|
||||
amount: paymentType === "purchase" ? amount : 0,
|
||||
currency: "CAD",
|
||||
paymentMethod: "cc",
|
||||
};
|
||||
|
||||
// For subscription setup (verify mode), include customer code if provided
|
||||
// For one-time purchases (event tickets), don't include customer code
|
||||
// as the customer may not exist in Helcim yet
|
||||
if (body.customerCode && paymentType === "verify") {
|
||||
requestBody.customerCode = body.customerCode;
|
||||
}
|
||||
|
||||
const helcimToken = config.public.helcimToken || process.env.NUXT_PUBLIC_HELCIM_TOKEN
|
||||
|
||||
// Add product/event information for better display in Helcim modal
|
||||
if (body.metadata?.eventTitle) {
|
||||
// Some Helcim accounts don't support invoice numbers in initialization
|
||||
// Try multiple fields that might display in the modal
|
||||
requestBody.description = body.metadata.eventTitle;
|
||||
requestBody.notes = body.metadata.eventTitle;
|
||||
requestBody.orderNumber = `${body.metadata.eventId}`;
|
||||
}
|
||||
|
||||
console.log("Helcim request body:", JSON.stringify(requestBody, null, 2));
|
||||
|
||||
// Initialize HelcimPay.js session
|
||||
const response = await fetch(`${HELCIM_API_BASE}/helcim-pay/initialize`, {
|
||||
method: 'POST',
|
||||
method: "POST",
|
||||
headers: {
|
||||
'accept': 'application/json',
|
||||
'content-type': 'application/json',
|
||||
'api-token': helcimToken
|
||||
accept: "application/json",
|
||||
"content-type": "application/json",
|
||||
"api-token": helcimToken,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
paymentType: 'verify', // For card verification
|
||||
amount: 0, // Must be exactly 0 for verification
|
||||
currency: 'CAD',
|
||||
customerCode: body.customerCode,
|
||||
paymentMethod: 'cc'
|
||||
})
|
||||
})
|
||||
|
||||
body: JSON.stringify(requestBody),
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
const errorText = await response.text()
|
||||
console.error('HelcimPay initialization failed:', response.status, errorText)
|
||||
const errorText = await response.text();
|
||||
console.error(
|
||||
"HelcimPay initialization failed:",
|
||||
response.status,
|
||||
errorText,
|
||||
);
|
||||
throw createError({
|
||||
statusCode: response.status,
|
||||
statusMessage: `Failed to initialize payment: ${errorText}`
|
||||
})
|
||||
statusMessage: `Failed to initialize payment: ${errorText}`,
|
||||
});
|
||||
}
|
||||
|
||||
const paymentData = await response.json()
|
||||
|
||||
const paymentData = await response.json();
|
||||
|
||||
return {
|
||||
success: true,
|
||||
checkoutToken: paymentData.checkoutToken,
|
||||
secretToken: paymentData.secretToken
|
||||
}
|
||||
secretToken: paymentData.secretToken,
|
||||
};
|
||||
} catch (error) {
|
||||
console.error('Error initializing HelcimPay:', error)
|
||||
console.error("Error initializing HelcimPay:", error);
|
||||
throw createError({
|
||||
statusCode: error.statusCode || 500,
|
||||
statusMessage: error.message || 'Failed to initialize payment'
|
||||
})
|
||||
statusMessage: error.message || "Failed to initialize payment",
|
||||
});
|
||||
}
|
||||
})
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue