2022-05-19 22:04:34 +00:00
|
|
|
import { httpsCallable } from 'firebase/functions'
|
|
|
|
import { User } from 'common/user'
|
|
|
|
import { randomString } from 'common/util/random'
|
|
|
|
import './init'
|
|
|
|
import { functions } from './init'
|
2022-05-26 05:30:03 +00:00
|
|
|
import { safeLocalStorage } from '../util/local'
|
2022-05-19 22:04:34 +00:00
|
|
|
|
|
|
|
export const cloudFunction = <RequestData, ResponseData>(name: string) =>
|
|
|
|
httpsCallable<RequestData, ResponseData>(functions, name)
|
|
|
|
|
|
|
|
export const createUser: () => Promise<User | null> = () => {
|
2022-05-26 05:30:03 +00:00
|
|
|
const local = safeLocalStorage()
|
|
|
|
let deviceToken = local?.getItem('device-token')
|
2022-05-19 22:04:34 +00:00
|
|
|
if (!deviceToken) {
|
|
|
|
deviceToken = randomString()
|
2022-05-26 05:30:03 +00:00
|
|
|
local?.setItem('device-token', deviceToken)
|
2022-05-19 22:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cloudFunction('createUser')({ deviceToken })
|
|
|
|
.then((r) => (r.data as any)?.user || null)
|
|
|
|
.catch(() => null)
|
|
|
|
}
|