Skip to content

Commit

Permalink
fix: explicitly pass token
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinBuyck committed Dec 20, 2023
1 parent f7ca60f commit ecccf84
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 15 deletions.
2 changes: 2 additions & 0 deletions backend/core/src/auth/services/user.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ export class UserService {
}

if (user.confirmationToken !== token) {
console.log(user.confirmationToken)
console.log(token)
throw new HttpException(USER_ERRORS.TOKEN_MISSING.message, USER_ERRORS.TOKEN_MISSING.status)
}
user.hitConfirmationURL = new Date()
Expand Down
21 changes: 13 additions & 8 deletions shared-helpers/src/AuthContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,9 @@ export const AuthProvider: FunctionComponent<React.PropsWithChildren> = ({ child
},
loginWithToken: async (token: string) => {
dispatch(saveToken({ accessToken: token, apiUrl, dispatch }))
const profile = await userService?.userControllerProfile()
const profile = await userService?.userControllerProfile({
headers: { Authorization: `Bearer ${token}` },
})
if (profile) {
dispatch(saveProfile(profile))
return profile
Expand All @@ -317,12 +319,13 @@ export const AuthProvider: FunctionComponent<React.PropsWithChildren> = ({ child
})
if (response) {
dispatch(saveToken({ accessToken: response.accessToken, apiUrl, dispatch }))
// 12/18 - Short-term error fix to allow user accesss
// const profile = await userService?.userControllerProfile()
// if (profile) {
// dispatch(saveProfile(profile))
// return profile
// }
const profile = await userService?.userControllerProfile({
headers: { Authorization: `Bearer ${response.accessToken}` },
})
if (profile) {
dispatch(saveProfile(profile))
return profile
}
}
return undefined
} finally {
Expand All @@ -335,7 +338,9 @@ export const AuthProvider: FunctionComponent<React.PropsWithChildren> = ({ child
const response = await userService?.confirm({ body: { token } })
if (response) {
dispatch(saveToken({ accessToken: response.accessToken, apiUrl, dispatch }))
const profile = await userService?.userControllerProfile()
const profile = await userService?.userControllerProfile({
headers: { Authorization: `Bearer ${response.accessToken}` },
})
if (profile) {
dispatch(saveProfile(profile))
return profile
Expand Down
12 changes: 6 additions & 6 deletions sites/partners/src/components/users/FormUserConfirm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const FormUserConfirm = () => {
password.current = watch("password", "")

const [isLoginLoading, setLoginLoading] = useState(false)
const [isSubmitting, setSubmitting] = useState(false)
const [isTokenChecked, setIsTokenChecked] = useState(false)
const [termsModal, setTermsModal] = useState(null)
const [rerequestModalOpen, setRerequestModalOpen] = useState(false)
const [newConfirmationRequested, setNewConfirmationRequested] = useState(false)
Expand All @@ -58,10 +58,13 @@ const FormUserConfirm = () => {
]

useEffect(() => {
if (!isSubmitting && token) {
console.log("In useEffect")
if (!isTokenChecked && token) {
console.log("checking token")
userService
.isUserConfirmationTokenValid({ body: { token } })
.then((res) => {
setIsTokenChecked(true)
if (!res) {
setRerequestModalOpen(true)
}
Expand All @@ -70,10 +73,9 @@ const FormUserConfirm = () => {
setRerequestModalOpen(true)
})
}
}, [isSubmitting, token, userService])
}, [isTokenChecked, token, userService])

const onSubmit = async (data: FormUserConfirmFields) => {
setSubmitting(true)
resetMutation()

const body = {
Expand All @@ -98,11 +100,9 @@ const FormUserConfirm = () => {
setSiteAlertMessage(t(`users.accountConfirmed`), "success")
void router.push("/")
} else {
setSubmitting(false)
setRerequestModalOpen(true)
}
} catch (err) {
setSubmitting(false)
console.error(err)
}
}
Expand Down
2 changes: 1 addition & 1 deletion sites/partners/src/pages/reset-password.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const ResetPassword = () => {
try {
await resetPassword(token.toString(), password, passwordConfirmation)
setSiteAlertMessage(t(`account.settings.passwordSuccess`), "notice")
await router.push("/sign-in")
await router.push("/")
window.scrollTo(0, 0)
} catch (err) {
const { status, data } = err.response || {}
Expand Down

0 comments on commit ecccf84

Please sign in to comment.