-
-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathLnurlAuth.tsx
361 lines (334 loc) · 12.7 KB
/
LnurlAuth.tsx
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
import url from 'url';
import * as React from 'react';
import ReactNativeBlobUtil from 'react-native-blob-util';
import { inject, observer } from 'mobx-react';
import { Alert, StyleSheet, Text, View } from 'react-native';
import querystring from 'querystring-es3';
import { HMAC as sha256HMAC } from 'fast-sha256';
import Button from '../components/Button';
import Header from '../components/Header';
import LightningIndicator from '../components/LightningIndicator';
import Screen from '../components/Screen';
import {
SuccessMessage,
ErrorMessage
} from '../components/SuccessErrorMessage';
import { themeColor } from '../utils/ThemeUtils';
import { localeString } from '../utils/LocaleUtils';
import BackendUtils from '../utils/BackendUtils';
import Base64Utils from '../utils/Base64Utils';
import DropdownSetting from '../components/DropdownSetting';
import SettingsStore, { LNDHUB_AUTH_MODES } from '../stores/SettingsStore';
const EC = require('elliptic').ec;
const ec = new EC('secp256k1');
const LNURLAUTH_CANONICAL_PHRASE =
'DO NOT EVER SIGN THIS TEXT WITH YOUR PRIVATE KEYS! IT IS ONLY USED FOR DERIVATION OF LNURL-AUTH HASHING-KEY, DISCLOSING ITS SIGNATURE WILL COMPROMISE YOUR LNURL-AUTH IDENTITY AND MAY LEAD TO LOSS OF FUNDS!';
interface LnurlAuthProps {
navigation: any;
SettingsStore: SettingsStore;
}
interface LnurlAuthState {
domain: string;
action: string;
k1: string;
linkingKeyPub: string;
signedMessageDER: string;
preparingSignature: boolean;
authenticating: boolean;
signatureSuccess: boolean;
lnurlAuthSuccess: boolean;
errorMsgAuth: string;
lndHubLnAuthMode: string;
chooseAuthMode: boolean;
}
@inject('SettingsStore')
@observer
export default class LnurlAuth extends React.Component<
LnurlAuthProps,
LnurlAuthState
> {
constructor(props: LnurlAuthProps) {
super(props);
try {
this.state = this.stateFromProps(props);
} catch (err) {
this.state = {
domain: '',
action: '',
k1: '',
linkingKeyPub: '',
signedMessageDER: '',
preparingSignature: false,
authenticating: false,
signatureSuccess: false,
lnurlAuthSuccess: false,
errorMsgAuth: '',
lndHubLnAuthMode: 'Alby',
chooseAuthMode: false
};
Alert.alert(
localeString('views.LnurlPay.LnurlPay.invalidParams'),
err.message,
[{ text: localeString('general.ok'), onPress: () => void 0 }],
{ cancelable: false }
);
}
}
stateFromProps(props: LnurlAuthProps) {
const { navigation } = props;
const lnurl = navigation.getParam('lnurlParams');
return {
domain: lnurl.domain,
action: lnurl.action,
k1: lnurl.k1,
linkingKeyPub: '',
signedMessageDER: '',
preparingSignature: false,
authenticating: false,
signatureSuccess: false,
lnurlAuthSuccess: false,
errorMsgAuth: 'Error',
lndHubLnAuthMode: 'Alby',
chooseAuthMode: false
};
}
async triggerSign() {
this.setState({ preparingSignature: true });
const body = LNURLAUTH_CANONICAL_PHRASE;
BackendUtils.lnurlAuth(body)
.then((signature: any) => {
// got the signed message, now build linkingkey
// from https://github.com/hsjoberg/blixt-wallet/blob/931c625666633915412bf7d8947ef6c2c5ce92b3/src/state/LNURL.ts
// 1. The following canonical phrase is defined: [...].
// 2. LN WALLET obtains an RFC6979 deterministic signature of sha256(utf8ToBytes(canonical phrase)) using secp256k1 with node private key.
// 3. LN WALLET defines hashingKey as PrivateKey(sha256(obtained signature)).
// // 4. SERVICE domain name is extracted from auth LNURL and then service-specific linkingPrivKey is defined as PrivateKey(hmacSha256(hashingKey, service domain name)).
const linkingKeyPriv = new sha256HMAC(signature.signature)
.update(Base64Utils.stringToUint8Array(this.state.domain))
.digest();
const linkingKeyPair = ec.keyFromPrivate(linkingKeyPriv, true);
const pubPoint = linkingKeyPair.getPublic();
// Need to compress the key
const linkingKeyPub = pubPoint.encodeCompressed('hex');
const signedMessage = ec.sign(
Base64Utils.hexToUint8Array(this.state.k1),
linkingKeyPriv,
{ canonical: true }
);
const signedMessageDER = signedMessage.toDER();
this.setState({
linkingKeyPub,
signedMessageDER:
Base64Utils.bytesToHexString(signedMessageDER),
preparingSignature: false,
signatureSuccess: true
});
})
.catch((error: any) => {
// handle error
this.setState({
preparingSignature: false,
errorMsgAuth: error.toString()
});
});
}
componentDidMount() {
const { implementation } = this.props.SettingsStore;
if (implementation === 'lndhub') {
this.props.SettingsStore.updateSettings({
lndHubLnAuthMode: this.state.lndHubLnAuthMode
});
this.setState({ chooseAuthMode: true });
} else {
this.triggerSign();
}
}
sendValues() {
this.setState({ authenticating: true });
const { navigation } = this.props;
const { domain } = this.state;
const lnurl = navigation.getParam('lnurlParams');
const u = url.parse(lnurl.callback);
const qs = querystring.parse(u.query);
qs.key = this.state.linkingKeyPub;
qs.sig = this.state.signedMessageDER;
u.search = querystring.stringify(qs);
u.query = querystring.stringify(qs);
ReactNativeBlobUtil.fetch('get', url.format(u))
.then((response: any) => {
try {
const data = response.json();
return data;
} catch (err) {
this.setState({
signatureSuccess: false,
authenticating: false,
errorMsgAuth: response.text()
});
return { status: 'ERROR', reason: response.text() };
}
})
.catch((err: any) => ({
status: 'ERROR',
reason: err.message
}))
.then((data: any) => {
if (data.status === 'ERROR') {
this.setState({
authenticating: false,
signatureSuccess: false,
errorMsgAuth: data.reason
});
Alert.alert(
`[error] ${domain} says:`,
data.reason,
[
{
text: localeString('general.ok'),
onPress: () => void 0
}
],
{ cancelable: false }
);
return;
} else {
this.setState({
authenticating: false,
signatureSuccess: false,
lnurlAuthSuccess: true
});
}
});
}
render() {
const { navigation, SettingsStore } = this.props;
const {
domain,
preparingSignature,
signatureSuccess,
authenticating,
lnurlAuthSuccess,
errorMsgAuth,
chooseAuthMode
} = this.state;
const LndHubAuthMode = () => (
<DropdownSetting
title={localeString('views.LnurlAuth.lndHubAuthMode')}
selectedValue={this.state.lndHubLnAuthMode}
onValueChange={async (value: string) => {
this.setState({
lndHubLnAuthMode: value
});
await SettingsStore.updateSettings({
lndHubLnAuthMode: value
});
this.triggerSign();
}}
values={LNDHUB_AUTH_MODES}
/>
);
return (
<Screen>
<Header
leftComponent="Back"
centerComponent={{
text: localeString('views.LnurlAuth.title'),
style: {
color: themeColor('text'),
fontFamily: 'Lato-Regular'
}
}}
navigation={navigation}
/>
<View style={styles.content}>
<Text
style={{
padding: 20,
fontSize: 22,
color: themeColor('text'),
fontFamily: 'Lato-Bold',
textAlign: 'center'
}}
>
{domain}
</Text>
</View>
{this.state.chooseAuthMode && (
<View style={styles.content}>
<View style={styles.dropdown}>
<LndHubAuthMode />
</View>
</View>
)}
<View style={styles.content}>
<View style={styles.button}>
<Button
title={localeString('views.LnurlAuth.login')}
icon={{
name: 'vpn-key',
size: 25,
color: 'white'
}}
onPress={async () => {
if (chooseAuthMode && !signatureSuccess) {
this.setState({ chooseAuthMode: false });
await this.triggerSign();
this.sendValues();
} else {
this.sendValues();
}
}}
style={styles.button}
disabled={
(!signatureSuccess && !chooseAuthMode) ||
authenticating
}
buttonStyle={{
backgroundColor: 'orange',
borderRadius: 30
}}
/>
</View>
<View style={styles.content}>
{(preparingSignature || authenticating) && (
<LightningIndicator />
)}
{lnurlAuthSuccess && (
<SuccessMessage
message={localeString(
'views.LnurlAuth.loginSuccess'
)}
/>
)}
{!preparingSignature &&
!signatureSuccess &&
!chooseAuthMode &&
!authenticating &&
!lnurlAuthSuccess && (
<ErrorMessage
message={
errorMsgAuth ||
localeString('general.error')
}
/>
)}
</View>
</View>
</Screen>
);
}
}
const styles = StyleSheet.create({
content: {
paddingLeft: 20,
paddingRight: 20
},
button: {
paddingTop: 15,
paddingBottom: 15
},
dropdown: {
paddingLeft: 20,
paddingRight: 20
}
});