246 lines
7.5 KiB
TypeScript
246 lines
7.5 KiB
TypeScript
import LoginDialog from '@/components/LoginDialog'
|
|
import { useToast } from '@/hooks'
|
|
import { useFetchRelayList } from '@/hooks/useFetchRelayList'
|
|
import client from '@/services/client.service'
|
|
import storage from '@/services/storage.service'
|
|
import { ISigner, TAccount, TAccountPointer, TDraftEvent } from '@/types'
|
|
import dayjs from 'dayjs'
|
|
import { Event, kinds } from 'nostr-tools'
|
|
import { createContext, useContext, useEffect, useState } from 'react'
|
|
import { useRelaySettings } from '../RelaySettingsProvider'
|
|
import { BunkerSigner } from './bunker.signer'
|
|
import { Nip07Signer } from './nip-07.signer'
|
|
import { NsecSigner } from './nsec.signer'
|
|
|
|
type TNostrContext = {
|
|
pubkey: string | null
|
|
account: TAccountPointer | null
|
|
accounts: TAccountPointer[]
|
|
switchAccount: (account: TAccountPointer | null) => Promise<void>
|
|
nsecLogin: (nsec: string) => Promise<string>
|
|
nip07Login: () => Promise<string>
|
|
bunkerLogin: (bunker: string) => Promise<string>
|
|
removeAccount: (account: TAccountPointer) => void
|
|
/**
|
|
* Default publish the event to current relays, user's write relays and additional relays
|
|
*/
|
|
publish: (draftEvent: TDraftEvent, additionalRelayUrls?: string[]) => Promise<Event>
|
|
signHttpAuth: (url: string, method: string) => Promise<string>
|
|
signEvent: (draftEvent: TDraftEvent) => Promise<Event>
|
|
checkLogin: <T>(cb?: () => T) => Promise<T | void>
|
|
}
|
|
|
|
const NostrContext = createContext<TNostrContext | undefined>(undefined)
|
|
|
|
export const useNostr = () => {
|
|
const context = useContext(NostrContext)
|
|
if (!context) {
|
|
throw new Error('useNostr must be used within a NostrProvider')
|
|
}
|
|
return context
|
|
}
|
|
|
|
export function NostrProvider({ children }: { children: React.ReactNode }) {
|
|
const { toast } = useToast()
|
|
const [account, setAccount] = useState<TAccountPointer | null>(null)
|
|
const [signer, setSigner] = useState<ISigner | null>(null)
|
|
const [openLoginDialog, setOpenLoginDialog] = useState(false)
|
|
const { relayUrls: currentRelayUrls } = useRelaySettings()
|
|
const { relayList } = useFetchRelayList(account?.pubkey)
|
|
|
|
useEffect(() => {
|
|
const init = async () => {
|
|
const accounts = storage.getAccounts()
|
|
const act = storage.getCurrentAccount() ?? accounts[0] // auto login the first account
|
|
if (!act) return
|
|
|
|
setAccount({ pubkey: act.pubkey, signerType: act.signerType })
|
|
|
|
const pubkey = await loginWithAccountPointer(act)
|
|
// login failed, set account to null
|
|
if (!pubkey) {
|
|
setAccount(null)
|
|
return
|
|
}
|
|
}
|
|
init().catch(() => {
|
|
setAccount(null)
|
|
})
|
|
}, [])
|
|
|
|
const login = (signer: ISigner, act: TAccount) => {
|
|
storage.addAccount(act)
|
|
storage.switchAccount(act)
|
|
setAccount({ pubkey: act.pubkey, signerType: act.signerType })
|
|
setSigner(signer)
|
|
return act.pubkey
|
|
}
|
|
|
|
const removeAccount = (act: TAccountPointer) => {
|
|
storage.removeAccount(act)
|
|
if (account?.pubkey === act.pubkey) {
|
|
setAccount(null)
|
|
setSigner(null)
|
|
}
|
|
}
|
|
|
|
const switchAccount = async (act: TAccountPointer | null) => {
|
|
if (!act) {
|
|
storage.switchAccount(null)
|
|
setAccount(null)
|
|
return
|
|
}
|
|
await loginWithAccountPointer(act)
|
|
}
|
|
|
|
const nsecLogin = async (nsec: string) => {
|
|
const browserNsecSigner = new NsecSigner()
|
|
const pubkey = browserNsecSigner.login(nsec)
|
|
return login(browserNsecSigner, { pubkey, signerType: 'nsec', nsec })
|
|
}
|
|
|
|
const nip07Login = async () => {
|
|
try {
|
|
const nip07Signer = new Nip07Signer()
|
|
const pubkey = await nip07Signer.getPublicKey()
|
|
if (!pubkey) {
|
|
throw new Error('You did not allow to access your pubkey')
|
|
}
|
|
return login(nip07Signer, { pubkey, signerType: 'nip-07' })
|
|
} catch (err) {
|
|
toast({
|
|
title: 'Login failed',
|
|
description: (err as Error).message,
|
|
variant: 'destructive'
|
|
})
|
|
throw err
|
|
}
|
|
}
|
|
|
|
const bunkerLogin = async (bunker: string) => {
|
|
const bunkerSigner = new BunkerSigner()
|
|
const pubkey = await bunkerSigner.login(bunker)
|
|
if (!pubkey) {
|
|
throw new Error('Invalid bunker')
|
|
}
|
|
const bunkerUrl = new URL(bunker)
|
|
bunkerUrl.searchParams.delete('secret')
|
|
return login(bunkerSigner, {
|
|
pubkey,
|
|
signerType: 'bunker',
|
|
bunker: bunkerUrl.toString(),
|
|
bunkerClientSecretKey: bunkerSigner.getClientSecretKey()
|
|
})
|
|
}
|
|
|
|
const loginWithAccountPointer = async (act: TAccountPointer): Promise<string | null> => {
|
|
let account = storage.findAccount(act)
|
|
if (!account) {
|
|
return null
|
|
}
|
|
if (account.signerType === 'nsec' || account.signerType === 'browser-nsec') {
|
|
if (account.nsec) {
|
|
const browserNsecSigner = new NsecSigner()
|
|
browserNsecSigner.login(account.nsec)
|
|
// Migrate to nsec
|
|
if (account.signerType === 'browser-nsec') {
|
|
storage.removeAccount(account)
|
|
account = { ...account, signerType: 'nsec' }
|
|
storage.addAccount(account)
|
|
}
|
|
return login(browserNsecSigner, account)
|
|
}
|
|
} else if (account.signerType === 'nip-07') {
|
|
const nip07Signer = new Nip07Signer()
|
|
const pubkey = await nip07Signer.getPublicKey()
|
|
if (!pubkey) {
|
|
storage.removeAccount(account)
|
|
return null
|
|
}
|
|
if (pubkey !== account.pubkey) {
|
|
storage.removeAccount(account)
|
|
account = { ...account, pubkey }
|
|
storage.addAccount(account)
|
|
}
|
|
return login(nip07Signer, account)
|
|
} else if (account.signerType === 'bunker') {
|
|
if (account.bunker && account.bunkerClientSecretKey) {
|
|
const bunkerSigner = new BunkerSigner(account.bunkerClientSecretKey)
|
|
const pubkey = await bunkerSigner.login(account.bunker)
|
|
if (!pubkey) {
|
|
storage.removeAccount(account)
|
|
return null
|
|
}
|
|
if (pubkey !== account.pubkey) {
|
|
storage.removeAccount(account)
|
|
account = { ...account, pubkey }
|
|
storage.addAccount(account)
|
|
}
|
|
return login(bunkerSigner, account)
|
|
}
|
|
}
|
|
storage.removeAccount(account)
|
|
return null
|
|
}
|
|
|
|
const signEvent = async (draftEvent: TDraftEvent) => {
|
|
const event = await signer?.signEvent(draftEvent)
|
|
if (!event) {
|
|
throw new Error('sign event failed')
|
|
}
|
|
return event
|
|
}
|
|
|
|
const publish = async (draftEvent: TDraftEvent, additionalRelayUrls: string[] = []) => {
|
|
const event = await signEvent(draftEvent)
|
|
await client.publishEvent(
|
|
relayList.write.concat(additionalRelayUrls).concat(currentRelayUrls),
|
|
event
|
|
)
|
|
return event
|
|
}
|
|
|
|
const signHttpAuth = async (url: string, method: string) => {
|
|
const event = await signEvent({
|
|
content: '',
|
|
kind: kinds.HTTPAuth,
|
|
created_at: dayjs().unix(),
|
|
tags: [
|
|
['u', url],
|
|
['method', method]
|
|
]
|
|
})
|
|
return 'Nostr ' + btoa(JSON.stringify(event))
|
|
}
|
|
|
|
const checkLogin = async <T,>(cb?: () => T): Promise<T | void> => {
|
|
if (signer) {
|
|
return cb && cb()
|
|
}
|
|
return setOpenLoginDialog(true)
|
|
}
|
|
|
|
return (
|
|
<NostrContext.Provider
|
|
value={{
|
|
pubkey: account?.pubkey ?? null,
|
|
account,
|
|
accounts: storage
|
|
.getAccounts()
|
|
.map((act) => ({ pubkey: act.pubkey, signerType: act.signerType })),
|
|
switchAccount,
|
|
nsecLogin,
|
|
nip07Login,
|
|
bunkerLogin,
|
|
removeAccount,
|
|
publish,
|
|
signHttpAuth,
|
|
checkLogin,
|
|
signEvent
|
|
}}
|
|
>
|
|
{children}
|
|
<LoginDialog open={openLoginDialog} setOpen={setOpenLoginDialog} />
|
|
</NostrContext.Provider>
|
|
)
|
|
}
|