mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
226 lines
7.6 KiB
TypeScript
226 lines
7.6 KiB
TypeScript
import { Alert, Linking, Platform } from 'react-native';
|
|
import DocumentPicker from 'react-native-document-picker';
|
|
import RNFS from 'react-native-fs';
|
|
import { launchImageLibrary } from 'react-native-image-picker';
|
|
import Share from 'react-native-share';
|
|
import { request, PERMISSIONS } from 'react-native-permissions';
|
|
import presentAlert from '../components/Alert';
|
|
import loc from '../loc';
|
|
import { isDesktop } from './environment';
|
|
import { readFile } from './react-native-bw-file-access';
|
|
import RNQRGenerator from 'rn-qr-generator';
|
|
|
|
const _sanitizeFileName = (fileName: string) => {
|
|
// Remove any path delimiters and non-alphanumeric characters except for -, _, and .
|
|
return fileName.replace(/[^a-zA-Z0-9\-_.]/g, '');
|
|
};
|
|
|
|
const _shareOpen = async (filePath: string, showShareDialog: boolean = false) => {
|
|
return await Share.open({
|
|
url: 'file://' + filePath,
|
|
saveToFiles: isDesktop || !showShareDialog,
|
|
// @ts-ignore: Website claims this propertie exists, but TS cant find it. Send anyways.
|
|
useInternalStorage: Platform.OS === 'android',
|
|
failOnCancel: false,
|
|
})
|
|
.catch(error => {
|
|
console.log(error);
|
|
// If user cancels sharing, we dont want to show an error. for some reason we get 'CANCELLED' string as error
|
|
if (error.message !== 'CANCELLED') {
|
|
presentAlert({ message: error.message });
|
|
}
|
|
})
|
|
.finally(() => {
|
|
RNFS.unlink(filePath);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Writes a file to fs, and triggers an OS sharing dialog, so user can decide where to put this file (share to cloud
|
|
* or perhabs messaging app). Provided filename should be just a file name, NOT a path
|
|
*/
|
|
|
|
export const writeFileAndExport = async function (fileName: string, contents: string, showShareDialog: boolean = true) {
|
|
const sanitizedFileName = _sanitizeFileName(fileName);
|
|
if (Platform.OS === 'ios') {
|
|
const filePath = RNFS.TemporaryDirectoryPath + `/${sanitizedFileName}`;
|
|
await RNFS.writeFile(filePath, contents);
|
|
await _shareOpen(filePath, showShareDialog);
|
|
} else if (Platform.OS === 'android') {
|
|
const isAndroidVersion33OrAbove = Platform.Version >= 33;
|
|
const permissionType = isAndroidVersion33OrAbove ? PERMISSIONS.ANDROID.READ_MEDIA_IMAGES : PERMISSIONS.ANDROID.READ_EXTERNAL_STORAGE;
|
|
request(permissionType).then(async result => {
|
|
if (result === 'granted') {
|
|
const filePath = RNFS.ExternalDirectoryPath + `/${sanitizedFileName}`;
|
|
try {
|
|
await RNFS.writeFile(filePath, contents);
|
|
if (showShareDialog) {
|
|
await _shareOpen(filePath);
|
|
} else {
|
|
presentAlert({ message: loc.formatString(loc.send.file_saved_at_path, { filePath }) });
|
|
}
|
|
} catch (e: any) {
|
|
presentAlert({ message: e.message });
|
|
}
|
|
} else {
|
|
Alert.alert(loc.send.permission_storage_title, loc.send.permission_storage_denied_message, [
|
|
{
|
|
text: loc.send.open_settings,
|
|
onPress: () => {
|
|
Linking.openSettings();
|
|
},
|
|
style: 'default',
|
|
},
|
|
{ text: loc._.cancel, onPress: () => {}, style: 'cancel' },
|
|
]);
|
|
}
|
|
});
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Opens & reads *.psbt files, and returns base64 psbt. FALSE if something went wrong (wont throw).
|
|
*/
|
|
export const openSignedTransaction = async function (): Promise<string | false> {
|
|
try {
|
|
const res = await DocumentPicker.pickSingle({
|
|
type:
|
|
Platform.OS === 'ios'
|
|
? ['io.bluewallet.psbt', 'io.bluewallet.psbt.txn', DocumentPicker.types.json]
|
|
: [DocumentPicker.types.allFiles],
|
|
});
|
|
|
|
return await _readPsbtFileIntoBase64(res.uri);
|
|
} catch (err) {
|
|
if (!DocumentPicker.isCancel(err)) {
|
|
presentAlert({ message: loc.send.details_no_signed_tx });
|
|
}
|
|
}
|
|
|
|
return false;
|
|
};
|
|
|
|
const _readPsbtFileIntoBase64 = async function (uri: string): Promise<string> {
|
|
const base64 = await RNFS.readFile(uri, 'base64');
|
|
const stringData = Buffer.from(base64, 'base64').toString(); // decode from base64
|
|
if (stringData.startsWith('psbt')) {
|
|
// file was binary, but outer code expects base64 psbt, so we return base64 we got from rn-fs;
|
|
// most likely produced by Electrum-desktop
|
|
return base64;
|
|
} else {
|
|
// file was a text file, having base64 psbt in there. so we basically have double base64encoded string
|
|
// thats why we are returning string that was decoded once;
|
|
// most likely produced by Coldcard
|
|
return stringData;
|
|
}
|
|
};
|
|
|
|
export const showImagePickerAndReadImage = (): Promise<string | undefined> => {
|
|
return new Promise((resolve, reject) =>
|
|
launchImageLibrary(
|
|
{
|
|
mediaType: 'photo',
|
|
maxHeight: 800,
|
|
maxWidth: 600,
|
|
selectionLimit: 1,
|
|
},
|
|
response => {
|
|
if (!response.didCancel) {
|
|
const asset = response.assets?.[0] ?? {};
|
|
if (asset.uri) {
|
|
RNQRGenerator.detect({
|
|
uri: decodeURI(asset.uri.toString()),
|
|
})
|
|
.then(result => {
|
|
if (result) {
|
|
resolve(result.values[0]);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
reject(new Error(loc.send.qr_error_no_qrcode));
|
|
});
|
|
}
|
|
}
|
|
},
|
|
),
|
|
);
|
|
};
|
|
|
|
export const showFilePickerAndReadFile = async function (): Promise<{ data: string | false; uri: string | false }> {
|
|
try {
|
|
const res = await DocumentPicker.pickSingle({
|
|
copyTo: 'cachesDirectory',
|
|
type:
|
|
Platform.OS === 'ios'
|
|
? [
|
|
'io.bluewallet.psbt',
|
|
'io.bluewallet.psbt.txn',
|
|
'io.bluewallet.backup',
|
|
DocumentPicker.types.plainText,
|
|
DocumentPicker.types.json,
|
|
DocumentPicker.types.images,
|
|
]
|
|
: [DocumentPicker.types.allFiles],
|
|
});
|
|
|
|
if (!res.fileCopyUri) {
|
|
presentAlert({ message: 'Picking and caching a file failed' });
|
|
return { data: false, uri: false };
|
|
}
|
|
|
|
const fileCopyUri = decodeURI(res.fileCopyUri);
|
|
|
|
let file;
|
|
if (res.fileCopyUri.toLowerCase().endsWith('.psbt')) {
|
|
// this is either binary file from ElectrumDesktop OR string file with base64 string in there
|
|
file = await _readPsbtFileIntoBase64(fileCopyUri);
|
|
return { data: file, uri: decodeURI(res.fileCopyUri) };
|
|
}
|
|
|
|
if (res.type === DocumentPicker.types.images || res.type?.startsWith('image/')) {
|
|
return new Promise(resolve => {
|
|
if (!res.fileCopyUri) {
|
|
// to make ts happy, should not need this check here
|
|
presentAlert({ message: 'Picking and caching a file failed' });
|
|
resolve({ data: false, uri: false });
|
|
return;
|
|
}
|
|
const uri2 = res.fileCopyUri.replace('file://', '');
|
|
|
|
RNQRGenerator.detect({
|
|
uri: decodeURI(uri2),
|
|
})
|
|
.then(result => {
|
|
if (result) {
|
|
resolve({ data: result.values[0], uri: fileCopyUri });
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error(error);
|
|
resolve({ data: false, uri: false });
|
|
});
|
|
});
|
|
}
|
|
|
|
file = await RNFS.readFile(fileCopyUri);
|
|
return { data: file, uri: fileCopyUri };
|
|
} catch (err: any) {
|
|
if (!DocumentPicker.isCancel(err)) {
|
|
presentAlert({ message: err.message });
|
|
}
|
|
return { data: false, uri: false };
|
|
}
|
|
};
|
|
|
|
export const readFileOutsideSandbox = (filePath: string) => {
|
|
if (Platform.OS === 'ios') {
|
|
return readFile(filePath);
|
|
} else if (Platform.OS === 'android') {
|
|
return RNFS.readFile(filePath);
|
|
} else {
|
|
presentAlert({ message: 'Not implemented for this platform' });
|
|
throw new Error('Not implemented for this platform');
|
|
}
|
|
};
|