Login should work now!

This commit is contained in:
Luis Alvarez
2020-10-22 17:13:28 -05:00
parent 3941b90b0f
commit 7c91f8a80f
3 changed files with 51 additions and 3 deletions

View File

@@ -1,6 +1,9 @@
import { FetcherError } from '@lib/commerce/utils/errors'
import login from '../../operations/login'
import type { LoginHandlers } from '../login'
const invalidCredentials = /invalid credentials/i
const loginHandler: LoginHandlers['login'] = async ({
res,
body: { email, password },
@@ -17,7 +20,28 @@ const loginHandler: LoginHandlers['login'] = async ({
// Passwords must be at least 7 characters and contain both alphabetic
// and numeric characters.
await login({ variables: { email, password }, config, res })
try {
await login({ variables: { email, password }, config, res })
} catch (error) {
// Check if the email and password didn't match an existing account
if (
error instanceof FetcherError &&
invalidCredentials.test(error.message)
) {
return res.status(401).json({
data: null,
errors: [
{
message:
'Cannot find an account that matches the provided credentials',
code: 'invalid_credentials',
},
],
})
}
throw error
}
res.status(200).json({ data: null })
}

View File

@@ -1,3 +1,4 @@
import { FetcherError } from '@lib/commerce/utils/errors'
import type { GraphQLFetcher } from 'lib/commerce/api'
import { getConfig } from '..'
import log from '@lib/logger'
@@ -25,8 +26,10 @@ const fetchGraphqlApi: GraphQLFetcher = async (
const json = await res.json()
if (json.errors) {
console.error(json.errors)
throw new Error('Failed to fetch BigCommerce API')
throw new FetcherError({
errors: json.errors ?? [{ message: 'Failed to fetch Bigcommerce API' }],
status: res.status,
})
}
return { data: json.data, res }