-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathservices.ts
233 lines (220 loc) · 5.84 KB
/
services.ts
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
import {isBackchannel} from "./utils"
const PROFILE_SCOPES = new Set(
"name family_name given_name middle_name nickname preferred_username profile picture website gender birthday zoneinfo locale updated_at"
.trim()
.split(/\s+/)
)
const EMAIL_SCOPES = new Set("email email_verified".trim().split(/\s+/))
type CompositeSignature = {
f_type: string
f_vsn: string
addr: string
keyId: number
signature: string
}
type AuthResponseService = {
f_type: string
f_vsn: string
type: string
uid: string
endpoint?: string
id?: string
method?: string
data?: Record<
string,
string | boolean | number | null | Array<CompositeSignature> | unknown
>
identity?: {
address: string
keyId?: number
}
provider?: {
address: string | null
name: string
icon: string | null
description: string
}
params?: Record<string, string>
}
const intersection = (a: Set<string>, b: Set<string>) =>
new Set([...a].filter(x => b.has(x)))
function entries<T>(arr: Array<T> = []) {
const arrEntries = [arr].flatMap(a => a).filter(Boolean) as Iterable<
readonly [PropertyKey, string]
>
return Object.fromEntries(arrEntries)
}
const getMethod = (backchannel: boolean, platform: string | null) => {
return backchannel
? "HTTP/POST"
: platform === "react-native"
? "DEEPLINK/RPC"
: "IFRAME/RPC"
}
const entry = (
scopes: Set<string>,
key: string,
value: string | boolean | number
) => scopes.has(key) && [key, value]
export const buildServices = ({
baseUrl,
address,
nonce,
scopes,
compSig,
keyId,
includeRefresh = false,
client,
}: {
baseUrl: string
address: string
nonce: string | undefined
scopes: Set<string>
compSig: string | undefined
keyId?: number
includeRefresh?: boolean
client?: {platform?: string}
}) => {
const backchannel = isBackchannel()
const platform = client?.platform || null
const services: AuthResponseService[] = [
{
f_type: "Service",
f_vsn: "1.0.0",
type: "authn",
uid: "fcl-dev-wallet#authn",
endpoint: backchannel ? `${baseUrl}/api/authn` : `${baseUrl}/fcl/authn`,
method: getMethod(backchannel, platform),
id: address,
identity: {
address: address,
},
provider: {
address: null,
name: "FCL Dev Wallet",
icon: null,
description: "For Local Development Only",
},
},
{
f_type: "Service",
f_vsn: "1.0.0",
type: "authz",
uid: "fcl-dev-wallet#authz",
endpoint: backchannel ? `${baseUrl}/api/authz` : `${baseUrl}/fcl/authz`,
method: getMethod(backchannel, platform),
identity: {
address: address,
keyId: Number(keyId),
},
},
{
f_type: "Service",
f_vsn: "1.0.0",
type: "user-signature",
uid: "fcl-dev-wallet#user-sig",
endpoint: backchannel
? `${baseUrl}/api/user-sig`
: `${baseUrl}/fcl/user-sig`,
method: getMethod(backchannel, platform),
id: address,
data: {addr: address, keyId: Number(keyId)},
params: {},
},
]
// Account Proof Service
if (nonce) {
services.push({
f_type: "Service",
f_vsn: "1.0.0",
type: "account-proof",
method: "DATA",
uid: "fcl-dev-wallet#account-proof",
data: {
f_type: "account-proof",
f_vsn: "1.0.0",
address: address,
nonce: nonce,
signatures: [compSig] ?? null,
},
})
}
// Authentication Refresh Service
if (includeRefresh) {
services.push({
f_type: "Service",
f_vsn: "1.0.0",
type: "authn-refresh",
uid: "fcl-dev-wallet#authn-refresh",
endpoint: backchannel
? `${baseUrl}/api/authn-refresh`
: `${baseUrl}/fcl/authn-refresh`,
method: getMethod(backchannel, platform),
id: address,
data: {
f_type: "authn-refresh",
f_vsn: "1.0.0",
address: address,
keyId: Number(keyId),
},
params: {
sessionId: "C7OXWaVpU-efRymW7a5d",
scopes: Array.from(scopes).join(" "),
},
})
}
if (!!scopes.size) {
services.push({
f_type: "Service",
f_vsn: "1.0.0",
type: "open-id",
uid: "fcl-dev-wallet#open-id",
method: "data",
data: {
f_type: "OpenID",
f_vsn: "1.0.0",
...entries([
intersection(PROFILE_SCOPES, scopes).size && [
"profile",
entries([
entry(scopes, "name", `name[${address}]`),
entry(scopes, "family_name", `family_name[${address}]`),
entry(scopes, "given_name", `given_name[${address}]`),
entry(scopes, "middle_name", `middle_name[${address}]`),
entry(scopes, "nickname", `nickname[${address}]`),
entry(
scopes,
"preferred_username",
`preferred_username[${address}]`
),
entry(scopes, "profile", `https://onflow.org`),
entry(
scopes,
"piture",
`https://https://avatars.onflow.org/avatar/${address}`
),
entry(scopes, "website", "https://onflow.org"),
entry(scopes, "gender", `gender[${address}]`),
entry(
scopes,
"birthday",
`0000-${new Date().getMonth() + 1}-${new Date().getDate()}`
),
entry(scopes, "zoneinfo", `America/Vancouver`),
entry(scopes, "locale", `en`),
entry(scopes, "updated_at", Date.now()),
]),
],
intersection(EMAIL_SCOPES, scopes).size && [
"email",
entries([
entry(scopes, "email", `${address}@example.com`),
entry(scopes, "email_verified", true),
]),
],
]),
},
})
}
return services
}