aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages/home/AddingProviderScreen.tsx
blob: d2d22374ece5bece532ce5c100f9d4eb2acf60c8 (plain)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
import { AuthenticationProviderStatusOk } from "anastasis-core";
import { h, VNode } from "preact";
import { useEffect, useLayoutEffect, useRef, useState } from "preact/hooks";
import { TextInput } from "../../components/fields/TextInput";
import { useAnastasisContext } from "../../context/anastasis";
import { authMethods, KnownAuthMethods } from "./authMethod";
import { AnastasisClientFrame } from "./index";

interface Props {
  providerType?: KnownAuthMethods;
  cancel: () => void;
}


async function testProvider(url: string, expectedMethodType?: string): Promise<void> {
  try {
    const response = await fetch(`${url}/config`)
    const json = await (response.json().catch(d => ({})))
    if (!("methods" in json) || !Array.isArray(json.methods)) {
      throw Error("This provider doesn't have authentication method. Check the provider URL")
    }
    if (!expectedMethodType) {
      return
    }
    let found = false
    for (let i = 0; i < json.methods.length && !found; i++) {
      found = json.methods[i].type !== expectedMethodType
    }
    if (!found) {
      throw Error(`This provider does not support authentication method ${expectedMethodType}`)
    }
    return
  } catch (e) {
    console.log("error", e)
    const error = e instanceof Error ?
      Error(`There was an error testing this provider, try another one. ${e.message}`) :
      Error(`There was an error testing this provider, try another one.`)
    throw error
  }

}

export function AddingProviderScreen({ providerType, cancel }: Props): VNode {
  const reducer = useAnastasisContext();

  const [providerURL, setProviderURL] = useState("");
  const [error, setError] = useState<string | undefined>()
  const [testing, setTesting] = useState(false)
  const providerLabel = providerType ? authMethods[providerType].label : undefined

  //FIXME: move this timeout logic into a hook
  const timeout = useRef<number | undefined>(undefined);
  useEffect(() => {
    if (timeout) window.clearTimeout(timeout.current)
    timeout.current = window.setTimeout(async () => {
      const url = providerURL.endsWith('/') ? providerURL.substring(0, providerURL.length - 1) : providerURL
      if (!url) return;
      try {
        setTesting(true)
        await testProvider(url, providerType)
        // this is use as tested but everything when ok
        // undefined will mean that the field is not dirty
        setError("")
      } catch (e) {
        console.log("tuvieja", e)
        if (e instanceof Error) setError(e.message)
      }
      setTesting(false)
    }, 1000);
  }, [providerURL])


  if (!reducer) {
    return <div>no reducer in context</div>;
  }

  function addProvider(): void {
    // addAuthMethod({
    //   authentication_method: {
    //     type: "sms",
    //     instructions: `SMS to ${providerURL}`,
    //     challenge: encodeCrock(stringToBytes(providerURL)),
    //   },
    // });
  }

  let errors = !providerURL ? 'Add provider URL' : undefined
  try {
    new URL(providerURL)
  } catch {
    errors = 'Check the URL'
  }
  if (!!error && !errors) {
    errors = error
  }

  if (!reducer.currentReducerState || !("authentication_providers" in reducer.currentReducerState)) {
    return <div>invalid state</div>
  }

  const authProviders = reducer.currentReducerState.authentication_providers || {}

  return (
    <AnastasisClientFrame hideNav
      title="Backup: Manage providers"
      hideNext={errors}>
      <div>
        {!providerLabel ?
          <p>
            Add a provider url
          </p> :
          <p>
            Add a provider url for a {providerLabel} service
          </p>
        }
        <div class="container">
          <TextInput
            label="Provider URL"
            placeholder="https://provider.com"
            grabFocus
            bind={[providerURL, setProviderURL]} />
        </div>
        <p class="block">
          Example: https://kudos.demo.anastasis.lu
        </p>

        {testing && <p class="block has-text-info">Testing</p>}
        {!!error && <p class="block has-text-danger">{error}</p>}
        {error === "" && <p class="block has-text-success">This provider worked!</p>}

        <div class="block" style={{ marginTop: '2em', display: 'flex', justifyContent: 'space-between' }}>
          <button class="button" onClick={cancel}>Cancel</button>
          <span data-tooltip={errors}>
            <button class="button is-info" disabled={error !== "" || testing} onClick={addProvider}>Add</button>
          </span>
        </div>

        <p class="subtitle">
          Current providers
        </p>
        {/* <table class="table"> */}
        {Object.keys(authProviders).map(k => {
          const p = authProviders[k]
          if (("currency" in p)) {
            return <TableRow url={k} info={p} />
          }
        }
        )}
        {/* </table> */}
      </div>
    </AnastasisClientFrame>
  );
}
function TableRow({ url, info }: { url: string, info: AuthenticationProviderStatusOk }) {
  const [status, setStatus] = useState("checking")
  useEffect(function () {
    testProvider(url.endsWith('/') ? url.substring(0, url.length - 1) : url)
      .then(function () { setStatus('responding') })
      .catch(function () { setStatus('failed to contact') })
  })
  return <div class="box" style={{ display: 'flex', justifyContent: 'space-between' }}>
    <div>
      <div class="subtitle">{url}</div>
      <dl>
        <dt><b>Business Name</b></dt>
        <dd>{info.business_name}</dd>
        <dt><b>Supported methods</b></dt>
        <dd>{info.methods.map(m => m.type).join(',')}</dd>
        <dt><b>Maximum storage</b></dt>
        <dd>{info.storage_limit_in_megabytes} Mb</dd>
        <dt><b>Status</b></dt>
        <dd>{status}</dd>
      </dl>
    </div>
    <div class="block" style={{ marginTop: 'auto', marginBottom: 'auto', display: 'flex', justifyContent: 'space-between', flexDirection: 'column' }}>
      <button class="button is-danger" >Remove</button>
    </div>
  </div>
}