about summary refs log tree commit diff
path: root/src/api/auth.ts
blob: 60ff1a3f23f5aacd0efe6795401ec1eae60dd69e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import {Linking} from 'react-native'
import * as auth from '@adxp/auth'
import {InAppBrowser} from 'react-native-inappbrowser-reborn'
import {isWeb} from '../platform/detection'
import {makeAppUrl} from '../platform/urls'
import * as env from '../env'

const SCOPE = auth.writeCap(
  'did:key:z6MkfRiFMLzCxxnw6VMrHK8pPFt4QAHS3jX3XM87y9rta6kP',
  'did:example:microblog',
)

export async function isAuthed(authStore: auth.BrowserStore) {
  return await authStore.hasUcan(SCOPE)
}

export async function logout(authStore: auth.BrowserStore) {
  await authStore.reset()
}

export async function parseUrlForUcan() {
  // @ts-ignore window is defined -prf
  const fragment = window.location.hash
  if (fragment.length < 1) {
    return undefined
  }
  try {
    const ucan = await auth.parseLobbyResponseHashFragment(fragment)
    // @ts-ignore window is defined -prf
    window.location.hash = ''
    return ucan
  } catch (err) {
    return undefined
  }
}

export async function requestAppUcan(authStore: auth.BrowserStore) {
  const did = await authStore.getDid()
  const returnUrl = makeAppUrl()
  const fragment = auth.requestAppUcanHashFragment(did, SCOPE, returnUrl)
  const url = `${env.AUTH_LOBBY}#${fragment}`

  if (isWeb) {
    // @ts-ignore window is defined -prf
    window.location.href = url
    return false
  }

  if (await InAppBrowser.isAvailable()) {
    const res = await InAppBrowser.openAuth(url, returnUrl, {
      // iOS Properties
      ephemeralWebSession: false,
      // Android Properties
      showTitle: false,
      enableUrlBarHiding: true,
      enableDefaultShare: false,
    })
    if (res.type === 'success' && res.url) {
      Linking.openURL(res.url)
    } else {
      console.error('Bad response', res)
      return false
    }
  } else {
    Linking.openURL(url)
  }
  return true
}