168 lines
5.2 KiB
JavaScript
168 lines
5.2 KiB
JavaScript
import { AdyenCheckout } from "@adyen/adyen-web/auto";
|
|
import store from "@/store";
|
|
import globalMethods from "@/global-methods";
|
|
import { endpoints } from "@/constants/endpoints";
|
|
import { AppointmentTypeStrings } from "@/constants/schedule-constants";
|
|
import { paymentMethods } from "@/constants/payment-method-constants";
|
|
import { applicationConfig } from "../constants/application-config";
|
|
|
|
export async function getNewSession(sessionConfig) {}
|
|
|
|
export async function getSessionInfo(sessionId, encryptedSessionResult, pageNameToLog = "") {
|
|
const order = store.getters.order;
|
|
const location = getLocationInfo(order);
|
|
const workOrder = getWorkOrderLastSixDigits(order);
|
|
const system = getSourceSystem();
|
|
|
|
const request = {
|
|
sessionId: sessionId,
|
|
sessionResult: encryptedSessionResult,
|
|
zipCodeCtu: location.zipCodeCtu,
|
|
workOrderNumber: workOrder,
|
|
sourceSystem: system,
|
|
};
|
|
|
|
const response = await globalMethods.callHttpClient({
|
|
method: endpoints.GetAdyenSessionResult.method,
|
|
endpoint: endpoints.GetAdyenSessionResult.url,
|
|
payload: request,
|
|
logApiCall: true,
|
|
pageNameToLog: pageNameToLog,
|
|
});
|
|
|
|
return response?.data;
|
|
}
|
|
|
|
export async function createAdyenCheckout({
|
|
session: { id, sessionData },
|
|
handlers: { onPaymentCompleted, onPaymentFailed, onError },
|
|
options: { showPayButton = true, amount },
|
|
}) {
|
|
const config = {
|
|
session: {
|
|
id: id,
|
|
sessionData: sessionData,
|
|
},
|
|
clientKey: applicationConfig.ADYEN_CLIENT_KEY,
|
|
environment: applicationConfig.ADYEN_ENVIRONMENT,
|
|
locale: "en_US",
|
|
countryCode: "US",
|
|
showPayButton: showPayButton,
|
|
translations: {
|
|
en_US: {
|
|
"creditCard.securityCode.label": "CVV/CVC",
|
|
},
|
|
},
|
|
onPaymentCompleted: onPaymentCompleted,
|
|
onPaymentFailed: onPaymentFailed,
|
|
onError: onError,
|
|
};
|
|
|
|
if (amount !== undefined && amount !== null) {
|
|
config.amount = {
|
|
value: amount,
|
|
currency: "USD",
|
|
};
|
|
}
|
|
|
|
console.log(`Creating checkout with configuration:`);
|
|
console.log(config);
|
|
|
|
return await AdyenCheckout(config);
|
|
}
|
|
|
|
export function mapAdyenToFmgPaymentMethod(adyenMethod) {
|
|
const paymentMethodMap = {
|
|
["scheme"]: paymentMethods.CREDIT_CARD,
|
|
["afterpaytouch"]: paymentMethods.AFTERPAY,
|
|
["paypal"]: paymentMethods.PAYPAL,
|
|
["applepay"]: paymentMethods.APPLE_PAY,
|
|
};
|
|
|
|
const match = paymentMethodMap[adyenMethod];
|
|
|
|
return match ?? paymentMethods.CREDIT_CARD;
|
|
}
|
|
|
|
export function mapFmgToAdyenPaymentMethod(fmgMethod) {
|
|
const paymentMethodMap = {
|
|
[paymentMethods.CREDIT_CARD]: "scheme",
|
|
[paymentMethods.AFTERPAY]: "afterpaytouch",
|
|
[paymentMethods.PAYPAL]: "paypal",
|
|
[paymentMethods.APPLE_PAY]: "applepay",
|
|
[paymentMethods.PAY_NOW]: null,
|
|
[paymentMethods.LATER]: null,
|
|
};
|
|
|
|
const match = paymentMethodMap[fmgMethod];
|
|
|
|
return match;
|
|
}
|
|
|
|
export function generateCcToken(adyenSessionInfo) {
|
|
const order = store.getters.order;
|
|
const locationInfo = getLocationInfo(order);
|
|
|
|
const ccToken = {
|
|
subscriptionId: adyenSessionInfo?.storedToken,
|
|
expMonth: adyenSessionInfo?.cardExpiryMonth,
|
|
expYear: adyenSessionInfo?.cardExpiryYear,
|
|
cardType: adyenSessionInfo?.cardType,
|
|
billToPostalCode: locationInfo.zipCode, // TODO - real data?
|
|
billToFirstName: order.customer.firstName, // TODO - real data?
|
|
billToLastName: order.customer.lastName, // TODO - real data?
|
|
referenceNumber: adyenSessionInfo?.workOrderNumber,
|
|
authCode: adyenSessionInfo?.authCode,
|
|
transactionId: adyenSessionInfo?.transactionReference,
|
|
transReferenceNumber: adyenSessionInfo?.transactionReference,
|
|
lastFour: adyenSessionInfo?.last4DigitsOfCard,
|
|
};
|
|
|
|
return ccToken;
|
|
}
|
|
|
|
function getLocationInfo(order) {
|
|
const serviceLocation = order.serviceLocation;
|
|
const isMobile = serviceLocation.appointmentType === AppointmentTypeStrings.MOBILE;
|
|
if (isMobile) {
|
|
return {
|
|
address: serviceLocation.address,
|
|
address2: serviceLocation.address2,
|
|
city: serviceLocation.city,
|
|
state: serviceLocation.state,
|
|
zipCode: serviceLocation.zipCode,
|
|
zipCodeCtu: serviceLocation.zipCodeCtu,
|
|
};
|
|
} else {
|
|
const providerInfo = serviceLocation.provider.address;
|
|
return {
|
|
address: providerInfo.streetAddress,
|
|
address2: "",
|
|
city: providerInfo.city,
|
|
state: providerInfo.state,
|
|
zipCode: providerInfo.zipCode,
|
|
zipCodeCtu: providerInfo.zipCodeCtu,
|
|
};
|
|
}
|
|
}
|
|
|
|
function getWorkOrderLastSixDigits(order) {
|
|
const workOrderNumber = order.workOrderNumber ?? "";
|
|
const tokens = workOrderNumber.split("-");
|
|
const lastSegment = tokens[tokens.length - 1] ?? "";
|
|
const numDigits = lastSegment.length;
|
|
const numZeroes = 6 - numDigits;
|
|
|
|
let result = "";
|
|
for (let i = 0; i < numZeroes; i++) {
|
|
result += "0";
|
|
}
|
|
|
|
result += lastSegment;
|
|
|
|
return result;
|
|
}
|
|
|
|
function getSourceSystem() {
|
|
return "FMG-2.0";
|
|
}
|