BlueWallet/screen/send/psbtWithHardwareWallet.js

352 lines
11 KiB
JavaScript
Raw Normal View History

2021-02-28 06:13:37 +01:00
import Clipboard from '@react-native-clipboard/clipboard';
2024-05-31 19:22:22 +02:00
import { useIsFocused, useRoute } from '@react-navigation/native';
import * as bitcoin from 'bitcoinjs-lib';
2024-05-20 11:54:13 +02:00
import React, { useEffect, useRef, useState } from 'react';
import { ActivityIndicator, Linking, Platform, ScrollView, StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native';
2020-12-25 17:09:53 +01:00
import DocumentPicker from 'react-native-document-picker';
import RNFS from 'react-native-fs';
2024-05-20 11:54:13 +02:00
import * as BlueElectrum from '../../blue_modules/BlueElectrum';
import triggerHapticFeedback, { HapticFeedbackTypes } from '../../blue_modules/hapticFeedback';
import Notifications from '../../blue_modules/notifications';
2024-05-20 11:54:13 +02:00
import { BlueCard, BlueSpacing20, BlueText } from '../../BlueComponents';
import presentAlert from '../../components/Alert';
import CopyToClipboardButton from '../../components/CopyToClipboardButton';
import { DynamicQRCode } from '../../components/DynamicQRCode';
2024-05-20 11:54:13 +02:00
import SaveFileButton from '../../components/SaveFileButton';
import { SecondButton } from '../../components/SecondButton';
import { useTheme } from '../../components/themes';
2024-10-01 03:59:40 +02:00
import { scanQrHelper } from '../../helpers/scan-qr';
2024-06-04 03:54:32 +02:00
import { useBiometrics, unlockWithBiometrics } from '../../hooks/useBiometrics';
2024-05-20 11:54:13 +02:00
import loc from '../../loc';
2024-05-31 19:22:22 +02:00
import { useStorage } from '../../hooks/context/useStorage';
import { useExtendedNavigation } from '../../hooks/useExtendedNavigation';
import { useSettings } from '../../hooks/context/useSettings';
const PsbtWithHardwareWallet = () => {
const { txMetadata, fetchAndSaveWalletTransactions, wallets } = useStorage();
const { isElectrumDisabled } = useSettings();
2024-06-04 03:54:32 +02:00
const { isBiometricUseCapableAndEnabled } = useBiometrics();
2024-05-31 19:22:22 +02:00
const navigation = useExtendedNavigation();
const route = useRoute();
2024-10-03 04:55:01 +02:00
const { walletID, memo, psbt, deepLinkPSBT, launchedBy } = route.params;
2024-10-03 02:25:54 +02:00
const wallet = wallets.find(w => w.getID() === walletID);
2024-10-03 04:55:01 +02:00
const routeParamsPSBT = useRef(route.params.psbt);
const routeParamsTXHex = route.params.txhex;
const { colors } = useTheme();
const [isLoading, setIsLoading] = useState(false);
const [txHex, setTxHex] = useState(route.params.txhex);
const openScannerButton = useRef();
2021-09-11 19:46:01 +02:00
const dynamicQRCode = useRef();
2021-09-11 19:57:43 +02:00
const isFocused = useIsFocused();
2019-09-27 16:49:56 +02:00
const stylesHook = StyleSheet.create({
2024-04-12 00:40:52 +02:00
scrollViewContent: {
backgroundColor: colors.elevated,
},
rootPadding: {
backgroundColor: colors.elevated,
},
hexWrap: {
backgroundColor: colors.elevated,
},
hexLabel: {
color: colors.foregroundColor,
},
hexInput: {
borderColor: colors.formBorder,
backgroundColor: colors.inputBackgroundColor,
color: colors.foregroundColor,
},
hexText: {
color: colors.foregroundColor,
},
});
2019-09-27 16:49:56 +02:00
const _combinePSBT = receivedPSBT => {
2024-10-03 02:25:54 +02:00
return wallet.combinePsbt(psbt, receivedPSBT);
};
const onBarScanned = ret => {
2024-10-03 04:55:01 +02:00
if (ret && !ret.data) ret = { data: ret };
if (ret.data.toUpperCase().startsWith('UR')) {
presentAlert({ message: 'BC-UR not decoded. This should never happen' });
}
2020-02-24 22:45:14 +01:00
if (ret.data.indexOf('+') === -1 && ret.data.indexOf('=') === -1 && ret.data.indexOf('=') === -1) {
// this looks like NOT base64, so maybe its transaction's hex
2024-10-03 04:55:01 +02:00
setTxHex(ret.data);
2020-02-24 22:45:14 +01:00
return;
}
try {
const Tx = _combinePSBT(ret.data);
2024-10-03 04:55:01 +02:00
setTxHex(Tx.toHex());
2021-09-09 13:00:11 +02:00
if (launchedBy) {
2024-10-03 04:55:01 +02:00
// we must navigate back to the screen who requested psbt (instead of broadcasting it ourselves)
// most likely for LN channel opening
navigation.navigate({ name: launchedBy, params: { psbt }, merge: true });
2024-10-03 04:55:01 +02:00
// ^^^ we just use `psbt` variable sinse it was finalized in the above _combinePSBT()
// (passed by reference)
2021-09-09 13:00:11 +02:00
}
} catch (Err) {
presentAlert({ message: Err.message });
}
2019-09-27 16:49:56 +02:00
};
2021-09-11 19:57:43 +02:00
useEffect(() => {
if (isFocused) {
dynamicQRCode.current?.startAutoMove();
} else {
dynamicQRCode.current?.stopAutoMove();
}
}, [isFocused]);
useEffect(() => {
2024-10-03 04:55:01 +02:00
if (!psbt && !route.params.txhex) {
presentAlert({ message: loc.send.no_tx_signing_in_progress });
}
2020-01-03 05:02:41 +01:00
if (deepLinkPSBT) {
const newPsbt = bitcoin.Psbt.fromBase64(deepLinkPSBT);
2020-01-03 05:02:41 +01:00
try {
2024-10-03 04:55:01 +02:00
const Tx = wallet.combinePsbt(routeParamsPSBT.current, newPsbt);
setTxHex(Tx.toHex());
2020-01-03 05:02:41 +01:00
} catch (Err) {
presentAlert({ message: Err });
2020-01-03 05:02:41 +01:00
}
2024-10-03 04:55:01 +02:00
} else if (routeParamsTXHex) {
setTxHex(routeParamsTXHex);
2020-01-03 05:02:41 +01:00
}
2024-10-03 04:55:01 +02:00
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [deepLinkPSBT, routeParamsTXHex]);
2020-01-03 05:02:41 +01:00
const broadcast = async () => {
setIsLoading(true);
2024-05-18 00:34:39 +02:00
const isBiometricsEnabled = await isBiometricUseCapableAndEnabled();
2021-01-20 03:13:01 +01:00
if (isBiometricsEnabled) {
2024-05-18 00:34:39 +02:00
if (!(await unlockWithBiometrics())) {
2021-01-20 03:13:01 +01:00
setIsLoading(false);
return;
}
}
try {
await BlueElectrum.ping();
await BlueElectrum.waitTillConnected();
2024-10-03 04:55:01 +02:00
const result = await wallet.broadcastTx(txHex);
if (result) {
setIsLoading(false);
2024-10-03 04:55:01 +02:00
const txDecoded = bitcoin.Transaction.fromHex(txHex);
const txid = txDecoded.getId();
Notifications.majorTomToGroundControl([], [], [txid]);
if (memo) {
txMetadata[txid] = { memo };
2019-09-27 16:49:56 +02:00
}
navigation.navigate('Success', { amount: undefined });
await new Promise(resolve => setTimeout(resolve, 3000)); // sleep to make sure network propagates
2024-10-03 02:25:54 +02:00
fetchAndSaveWalletTransactions(wallet.getID());
} else {
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
setIsLoading(false);
presentAlert({ message: loc.errors.broadcast });
2019-09-27 16:49:56 +02:00
}
} catch (error) {
triggerHapticFeedback(HapticFeedbackTypes.NotificationError);
setIsLoading(false);
presentAlert({ message: error.message });
}
};
2019-09-27 16:49:56 +02:00
2020-11-20 02:19:04 +01:00
const handleOnVerifyPressed = () => {
2024-10-03 04:55:01 +02:00
Linking.openURL('https://coinb.in/?verify=' + txHex);
2020-11-20 02:19:04 +01:00
};
2019-09-27 16:49:56 +02:00
2020-11-20 14:01:49 +01:00
const copyHexToClipboard = () => {
2024-10-03 04:55:01 +02:00
Clipboard.setString(txHex);
2020-11-20 14:01:49 +01:00
};
const _renderBroadcastHex = () => {
2019-09-27 16:49:56 +02:00
return (
<View style={[styles.rootPadding, stylesHook.rootPadding]}>
<BlueCard style={[styles.hexWrap, stylesHook.hexWrap]}>
<BlueText style={[styles.hexLabel, stylesHook.hexLabel]}>{loc.send.create_this_is_hex}</BlueText>
2024-10-03 04:55:01 +02:00
<TextInput style={[styles.hexInput, stylesHook.hexInput]} height={112} multiline editable value={txHex} />
2019-09-27 16:49:56 +02:00
<TouchableOpacity accessibilityRole="button" style={styles.hexTouch} onPress={copyHexToClipboard}>
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_copy}</Text>
2019-09-27 16:49:56 +02:00
</TouchableOpacity>
<TouchableOpacity accessibilityRole="button" style={styles.hexTouch} onPress={handleOnVerifyPressed}>
<Text style={[styles.hexText, stylesHook.hexText]}>{loc.send.create_verify}</Text>
2019-09-27 16:49:56 +02:00
</TouchableOpacity>
<BlueSpacing20 />
2021-08-24 06:33:32 +02:00
<SecondButton
disabled={isElectrumDisabled}
onPress={broadcast}
title={loc.send.confirm_sendNow}
testID="PsbtWithHardwareWalletBroadcastTransactionButton"
/>
2019-09-27 16:49:56 +02:00
</BlueCard>
</View>
);
};
2019-09-27 16:49:56 +02:00
2024-03-24 23:27:58 +01:00
const saveFileButtonBeforeOnPress = () => {
2021-09-11 19:46:01 +02:00
dynamicQRCode.current?.stopAutoMove();
2024-03-24 23:27:58 +01:00
};
const saveFileButtonAfterOnPress = () => {
dynamicQRCode.current?.startAutoMove();
2020-01-01 04:31:04 +01:00
};
const openSignedTransaction = async () => {
2020-01-01 04:31:04 +01:00
try {
2021-12-27 22:17:02 +01:00
const res = await DocumentPicker.pickSingle({
type:
Platform.OS === 'ios'
? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn', DocumentPicker.types.json]
: [DocumentPicker.types.allFiles],
2020-02-24 22:45:14 +01:00
});
2020-01-03 05:02:41 +01:00
const file = await RNFS.readFile(res.uri);
if (file) {
onBarScanned({ data: file });
2020-01-01 04:31:04 +01:00
} else {
throw new Error();
}
} catch (err) {
if (!DocumentPicker.isCancel(err)) {
presentAlert({ message: loc.send.details_no_signed_tx });
2020-01-01 04:31:04 +01:00
}
}
};
2024-10-01 19:26:57 +02:00
const openScanner = async () => {
2024-10-03 04:55:01 +02:00
const data = await scanQrHelper(route.name, true);
if (data) {
onBarScanned(data);
}
};
2024-10-03 04:55:01 +02:00
if (txHex) return _renderBroadcastHex();
2019-09-27 16:49:56 +02:00
2024-04-12 00:40:52 +02:00
const renderView = isLoading ? (
<ActivityIndicator />
) : (
2024-04-12 00:40:52 +02:00
<View style={styles.container}>
<BlueCard>
<BlueText testID="TextHelperForPSBT">{loc.send.psbt_this_is_psbt}</BlueText>
<BlueSpacing20 />
<Text testID="PSBTHex" style={styles.hidden}>
{psbt.toHex()}
</Text>
<DynamicQRCode value={psbt.toHex()} ref={dynamicQRCode} />
<BlueSpacing20 />
<SecondButton
testID="PsbtTxScanButton"
icon={{
name: 'qrcode',
type: 'font-awesome',
color: colors.secondButtonTextColor,
}}
onPress={openScanner}
ref={openScannerButton}
title={loc.send.psbt_tx_scan}
/>
<BlueSpacing20 />
<SecondButton
icon={{
name: 'login',
type: 'entypo',
color: colors.secondButtonTextColor,
}}
onPress={openSignedTransaction}
title={loc.send.psbt_tx_open}
/>
<BlueSpacing20 />
<SaveFileButton
fileName={`${Date.now()}.psbt`}
fileContent={typeof psbt === 'string' ? psbt : psbt.toBase64()}
style={styles.exportButton}
beforeOnPress={saveFileButtonBeforeOnPress}
afterOnPress={saveFileButtonAfterOnPress}
>
<SecondButton
icon={{
name: 'share-alternative',
type: 'entypo',
color: colors.secondButtonTextColor,
}}
title={loc.send.psbt_tx_export}
/>
</SaveFileButton>
<BlueSpacing20 />
<View style={styles.copyToClipboard}>
<CopyToClipboardButton stringToCopy={typeof psbt === 'string' ? psbt : psbt.toBase64()} displayText={loc.send.psbt_clipboard} />
</View>
2024-04-12 00:40:52 +02:00
</BlueCard>
</View>
);
return (
<ScrollView
centerContent
style={stylesHook.scrollViewContent}
automaticallyAdjustContentInsets
contentInsetAdjustmentBehavior="automatic"
contentContainerStyle={[styles.scrollViewContent, stylesHook.scrollViewContent]}
testID="PsbtWithHardwareScrollView"
>
{renderView}
</ScrollView>
);
2019-09-27 16:49:56 +02:00
};
2020-07-15 19:32:59 +02:00
export default PsbtWithHardwareWallet;
const styles = StyleSheet.create({
scrollViewContent: {
flexGrow: 1,
justifyContent: 'space-between',
},
container: {
flexDirection: 'row',
justifyContent: 'center',
paddingTop: 16,
paddingBottom: 16,
},
rootPadding: {
flex: 1,
paddingTop: 20,
},
hexWrap: {
alignItems: 'center',
flex: 1,
},
hexLabel: {
fontWeight: '500',
},
hexInput: {
borderRadius: 4,
marginTop: 20,
fontWeight: '500',
fontSize: 14,
paddingHorizontal: 16,
paddingBottom: 16,
paddingTop: 16,
},
hexTouch: {
marginVertical: 24,
},
hexText: {
fontSize: 15,
fontWeight: '500',
alignSelf: 'center',
},
copyToClipboard: {
2024-04-12 00:40:52 +02:00
marginVertical: 16,
justifyContent: 'center',
alignItems: 'center',
},
2020-11-22 08:07:27 +01:00
hidden: {
width: 0,
height: 0,
},
});