Skip to content

Commit

Permalink
dev(auth): maintain CurrentWallet reference when renewing auth token
Browse files Browse the repository at this point in the history
  • Loading branch information
theborakompanioni committed Sep 22, 2023
1 parent 5d55606 commit 41cce78
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 26 deletions.
6 changes: 4 additions & 2 deletions src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
CurrentWallet,
useCurrentWallet,
useSetCurrentWallet,
useClearCurrentWallet,
useReloadCurrentWalletInfo,
} from '../context/WalletContext'
import { clearSession, setSession } from '../session'
Expand All @@ -44,6 +45,7 @@ export default function App() {
const settings = useSettings()
const currentWallet = useCurrentWallet()
const setCurrentWallet = useSetCurrentWallet()
const clearCurrentWallet = useClearCurrentWallet()
const reloadCurrentWalletInfo = useReloadCurrentWalletInfo()
const serviceInfo = useServiceInfo()
const sessionConnectionError = useSessionConnectionError()
Expand All @@ -59,9 +61,9 @@ export default function App() {
)

const stopWallet = useCallback(() => {
clearCurrentWallet()
clearSession()
setCurrentWallet(null)
}, [setCurrentWallet])
}, [clearCurrentWallet])

const reloadWalletInfo = useCallback(
(delay: Milliseconds) => {
Expand Down
12 changes: 6 additions & 6 deletions src/context/ServiceInfoContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
useEffect,
useRef,
} from 'react'
import { useCurrentWallet, useSetCurrentWallet } from './WalletContext'
import { useCurrentWallet, useClearCurrentWallet } from './WalletContext'
// @ts-ignore
import { useWebsocket } from './WebsocketContext'
import { clearSession } from '../session'
Expand Down Expand Up @@ -118,7 +118,7 @@ const ServiceInfoContext = createContext<ServiceInfoContextEntry | undefined>(un

const ServiceInfoProvider = ({ children }: PropsWithChildren<{}>) => {
const currentWallet = useCurrentWallet()
const setCurrentWallet = useSetCurrentWallet()
const clearCurrentWallet = useClearCurrentWallet()
const websocket = useWebsocket()

const fetchSessionInProgress = useRef<Promise<ServiceInfo> | null>(null)
Expand Down Expand Up @@ -162,14 +162,14 @@ const ServiceInfoProvider = ({ children }: PropsWithChildren<{}>) => {
// Just reset the wallet info, not the session storage (token),
// as the connection might be down shortly and auth information
// is still valid most of the time.
setCurrentWallet(null)
clearCurrentWallet()
}
}, [connectionError, setCurrentWallet])
}, [connectionError, clearCurrentWallet])

const reloadServiceInfo = useCallback(
async ({ signal }: { signal: AbortSignal }) => {
const resetWalletAndClearSession = () => {
setCurrentWallet(null)
clearCurrentWallet()
clearSession()
}

Expand Down Expand Up @@ -241,7 +241,7 @@ const ServiceInfoProvider = ({ children }: PropsWithChildren<{}>) => {
throw err
})
},
[currentWallet, setCurrentWallet],
[currentWallet, clearCurrentWallet],
)

useEffect(() => {
Expand Down
75 changes: 57 additions & 18 deletions src/context/WalletContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@ export interface CurrentWallet {
token: Api.ApiToken
}

class CurrentWalletImpl implements CurrentWallet {
name: Api.WalletName
#token: Api.ApiToken

constructor(name: Api.WalletName, token: Api.ApiToken) {
this.name = name
this.#token = token
}

get token() {
return this.#token
}

updateToken(token: Api.ApiToken) {
this.#token = token
}
}

// TODO: move these interfaces to JmWalletApi, once distinct types are used as return value instead of plain "Response"
export type Utxo = {
address: Api.BitcoinAddress
Expand Down Expand Up @@ -111,9 +129,10 @@ export interface WalletInfo {
data: CombinedRawWalletData
}

interface WalletContextEntry {
currentWallet: CurrentWallet | null
setCurrentWallet: React.Dispatch<React.SetStateAction<CurrentWallet | null>>
interface WalletContextEntry<T extends CurrentWallet> {
currentWallet: T | null
setCurrentWallet: (currentWallet: CurrentWallet) => void
clearCurrentWallet: () => void
currentWalletInfo: WalletInfo | undefined
reloadCurrentWalletInfo: {
reloadAll: ({ signal }: { signal: AbortSignal }) => Promise<WalletInfo>
Expand Down Expand Up @@ -150,16 +169,11 @@ const toFidelityBondSummary = (res: UtxosResponse): FidenlityBondSummary => {
}
}

const WalletContext = createContext<WalletContextEntry | undefined>(undefined)
const WalletContext = createContext<WalletContextEntry<CurrentWalletImpl> | undefined>(undefined)

const restoreWalletFromSession = (): CurrentWallet | null => {
const restoreWalletFromSession = (): CurrentWalletImpl | null => {
const session = getSession()
return session && session.name && session.auth && session.auth.token
? {
name: session.name,
token: session.auth.token,
}
: null
return session?.name && session?.auth?.token ? new CurrentWalletImpl(session.name, session.auth.token) : null
}

export const groupByJar = (utxos: Utxos): UtxosByJar => {
Expand Down Expand Up @@ -189,7 +203,18 @@ const toWalletInfo = (data: CombinedRawWalletData): WalletInfo => {
const toCombinedRawData = (utxos: UtxosResponse, display: WalletDisplayResponse) => ({ utxos, display })

const WalletProvider = ({ children }: PropsWithChildren<any>) => {
const [currentWallet, setCurrentWallet] = useState(restoreWalletFromSession())
const [currentWallet, setCurrentWalletOrNull] = useState(restoreWalletFromSession())

const setCurrentWallet = useCallback(
(wallet: CurrentWallet) => {
setCurrentWalletOrNull(new CurrentWalletImpl(wallet.name, wallet.token))
},
[setCurrentWalletOrNull],
)

const clearCurrentWallet = useCallback(() => {
setCurrentWalletOrNull(null)
}, [setCurrentWalletOrNull])

const [utxoResponse, setUtxoResponse] = useState<UtxosResponse>()
const [displayResponse, setDisplayResponse] = useState<WalletDisplayResponse>()
Expand Down Expand Up @@ -282,9 +307,12 @@ const WalletProvider = ({ children }: PropsWithChildren<any>) => {

const abortCtrl = new AbortController()

const refreshToken = () => {
const renewToken = () => {
const session = getSession()
if (!session?.auth?.refresh_token) return
if (!session?.auth?.refresh_token) {
console.warn('Cannot renew auth token - no refresh_token available.')
return
}

Api.postToken(
{ token: session.auth.token, signal: abortCtrl.signal },
Expand All @@ -303,23 +331,25 @@ const WalletProvider = ({ children }: PropsWithChildren<any>) => {
refresh_token: body.refresh_token,
}
setSession({ name: currentWallet.name, auth })
setCurrentWallet({ ...currentWallet, token: auth.token })
currentWallet.updateToken(auth.token)
console.debug('Successfully renewed auth token.')
})
.catch((err) => console.error(err))
}

const interval = setInterval(refreshToken, JM_API_AUTH_TOKEN_EXPIRY / 4)
const interval = setInterval(renewToken, JM_API_AUTH_TOKEN_EXPIRY / 3)
return () => {
clearInterval(interval)
abortCtrl.abort()
}
}, [currentWallet, setCurrentWallet])
}, [currentWallet])

return (
<WalletContext.Provider
value={{
currentWallet,
setCurrentWallet,
clearCurrentWallet,
currentWalletInfo,
reloadCurrentWalletInfo,
}}
Expand All @@ -329,7 +359,7 @@ const WalletProvider = ({ children }: PropsWithChildren<any>) => {
)
}

const useCurrentWallet = () => {
const useCurrentWallet = (): CurrentWallet | null => {
const context = useContext(WalletContext)
if (context === undefined) {
throw new Error('useCurrentWallet must be used within a WalletProvider')
Expand All @@ -345,6 +375,14 @@ const useSetCurrentWallet = () => {
return context.setCurrentWallet
}

const useClearCurrentWallet = () => {
const context = useContext(WalletContext)
if (context === undefined) {
throw new Error('useClearCurrentWallet must be used within a WalletProvider')
}
return context.clearCurrentWallet
}

const useCurrentWalletInfo = () => {
const context = useContext(WalletContext)
if (context === undefined) {
Expand All @@ -366,6 +404,7 @@ export {
WalletProvider,
useCurrentWallet,
useSetCurrentWallet,
useClearCurrentWallet,
useCurrentWalletInfo,
useReloadCurrentWalletInfo,
}

0 comments on commit 41cce78

Please sign in to comment.