ChangeCustomerPassword
Implements ChangeCustomerPassword
Unified Method.
Source
/* eslint-disable unicorn/no-keyword-prefix */
import { defineApi, getCurrentCustomer } from "@vsf-enterprise/unified-api-commercetools";
import { validatePassword } from "@vsf-enterprise/unified-api-commercetools/udl";
const isUnauthorizedError = (error: unknown) =>
error &&
typeof error === "object" &&
(error as any).graphQLErrors[0].extensions.code === "InvalidCurrentPassword";
export const changeCustomerPassword = defineApi.changeCustomerPassword(async (context, args) => {
const { version } = await getCurrentCustomer(context);
const { currentPassword, newPassword, confirmPassword } = args;
if (!validatePassword(newPassword, confirmPassword)) {
throw { message: "Password does not meet the requirements", code: 422 };
}
try {
await context.api.customerChangeMyPassword(version, currentPassword, newPassword);
} catch (error) {
if (isUnauthorizedError(error)) {
throw { message: "Password change failed", code: 403 };
}
throw error;
}
});