mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 04:19:50 +00:00
* tor wip * Enable tor on iOS * Prevent app lag when node is exceptionally slow (usually over tor) * fix: logic in daemonBlockchainHeight refresh fix: storing tor state * Pin ledger_flutter_plus dependency to fix builds * bump arti version * wip * add single httpclient * route everything I was able to catch trough the built-in tor node * Enable proxy for http.Client [run tests] * add tor proxy support to cw_evm, cw_tron and cw_polygon [run tests] * remove log pollution, cleanup [skip slack] * fix tests not working in latest main [skip slack] [run tests] * remove cw_wownero import * fix build issues * migrate all remaining calls to use ProxyWrapper add a CI action to enforce using ProxyWrapper instead of http/http.dart to prevent leaks * fix tor background sync (will work on test builds after #2142 is merged and this PR is rebased on top) * wip [skip ci] * relicense to GPLv3 add socks5 license, build fixes * use ProxyWrapper instead of http in robinhood * Revert "relicense to GPLv3" * feat(cw_bitcoin): support socks proxy and CakeTor * fix(tor): migrate OCP and EVM over to ProxyWrapper() * chore: cleanup fix: show tor loading screen when app is starting * fix: tor switch properly dismisses fullscreen loading dialog fix: connectToNode after tor startup on app start * fix(tor): status check for xmr/wow/zano * fix(tor): onramper request fix * fix(api): ServicesResponse is now being cached and doesn't fetch data everytime DashboardViewModel is being rebuilt fix(tor): do not fallback to clearnet when tor failed. fix(tor): do not leak connections during app startup chore: refactor bootstrap() function to be separated into bootstrapOffline and bootstrapOnline fix(cw_bitcoin): migrate payjoin to use ProxyWrapper * [skip ci] remove print * address comments from review * fix: derusting tor implementation Instead of rust-based Arti I've moved back to the OG C++ tor implementation. This fixed all issues we had with Tor. - onion services now work - all requests are going through without random errors - we don't have to navigate a maze of multiple forks of multiple packages - fully working `torrc` config file (probably will be needed for Tari). - logging for Tor client - and so on. feat: network logging tab feat: use built-in proxy on Tails - this should resolve all issues for Tails users (needs testing though) * fix conflicts with main bump https to fix build issue relax store() call * fix(cw_wownero): tor connection fix(tor): connection issues * fix(cw_evm): add missing chainId fix(cw_core): solana rpc fix * feat: mark tor as experimental fix: drop anonpay onion authority fix: drop fiatapi onion authority fix: drop trocador onion authority fix: disable networkimage when tor is enabled fix: handle cakepay errors gracefully * fix re-formatting [skip ci] * changes from review * Delete android/.kotlin/sessions/kotlin-compiler-2468481326039681181.salive * fix missing imports * Update pubspec_base.yaml --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com>
286 lines
8.6 KiB
Dart
286 lines
8.6 KiB
Dart
import 'package:cake_wallet/core/secure_storage.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cw_core/utils/print_verbose.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/balance.dart';
|
|
import 'package:cw_core/transaction_info.dart';
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'dart:async';
|
|
|
|
part 'yat_store.g.dart';
|
|
|
|
class YatLink {
|
|
static const partnerId = ''; // 'CW';
|
|
static const baseDevUrl = ''; // 'https://yat.fyi';
|
|
static const baseReleaseUrl = ''; // 'https://y.at';
|
|
static const signInSuffix = ''; // '/partner/$partnerId/link-email';
|
|
static const createSuffix = ''; // '/create';
|
|
static const managePath = ''; // '/partner/$partnerId/manage';
|
|
static const queryParameter = ''; // '?address_json=';
|
|
static const apiDevUrl = ''; // 'https://a.yat.fyi';
|
|
static const apiReleaseUrl = ''; // 'https://a.y.at';
|
|
static const requestDevUrl = ''; // 'https://a.yat.fyi/emoji_id/';
|
|
static const requestReleaseUrl = ''; //'https://a.y.at/emoji_id/';
|
|
static const startFlowUrl = ''; // 'https://www.y03btrk.com/4RQSJ/6JHXF/';
|
|
static const isDevMode = true;
|
|
static const tags = <String, List<String>>{"XMR" : ['0x1001', '0x1002'],
|
|
"BTC" : ['0x1003'], "LTC" : ['0x1019']};
|
|
|
|
static String get apiUrl => YatLink.isDevMode
|
|
? YatLink.apiDevUrl
|
|
: YatLink.apiReleaseUrl;
|
|
|
|
static String get emojiIdUrl => apiUrl + '/emoji_id/';
|
|
|
|
static String get baseUrl => YatLink.isDevMode
|
|
? YatLink.baseDevUrl
|
|
: YatLink.baseReleaseUrl;
|
|
}
|
|
|
|
Future<List<String>> fetchYatAddress(String emojiId, String ticker) async {
|
|
throw Exception();
|
|
//final url = YatLink.emojiIdUrl + emojiId + '/payment';
|
|
//final response = await get(url);
|
|
|
|
//if (response.statusCode != 200) {
|
|
// throw YatException(text: response.body.toString());
|
|
//}
|
|
|
|
//final addresses = <String>[];
|
|
//final currency = ticker.toUpperCase();
|
|
//final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
//final result = responseJSON['result'] as Map<dynamic, dynamic>;
|
|
//result.forEach((dynamic key, dynamic value) {
|
|
// final tag = key as String ?? '';
|
|
// final record = value as Map<String, dynamic>;
|
|
|
|
// if (YatLink.tags[currency]?.contains(tag) ?? false) {
|
|
// final address = record['address'] as String;
|
|
// if (address?.isNotEmpty ?? false) {
|
|
// addresses.add(address);
|
|
// }
|
|
// }
|
|
//});
|
|
|
|
//return addresses;
|
|
return [];
|
|
}
|
|
|
|
Future<String> fetchYatAccessToken(String refreshToken) async {
|
|
throw Exception();
|
|
//try {
|
|
// final url = YatLink.apiUrl + '/auth/token/refresh';
|
|
// final bodyJson = json.encode({'refresh_token': refreshToken});
|
|
// final response = await post(
|
|
// url,
|
|
// headers: <String, String>{
|
|
// 'Content-Type': 'application/json',
|
|
// 'Accept': '*/*'
|
|
// },
|
|
// body: bodyJson);
|
|
|
|
// if (response.statusCode != 200) {
|
|
// throw YatException(text: response.body.toString());
|
|
// }
|
|
|
|
// final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
// return responseJSON['access_token'] as String;
|
|
//}catch(_) {
|
|
// return '';
|
|
//}
|
|
return '';
|
|
}
|
|
|
|
Future<String> fetchYatApiKey(String accessKey) async {
|
|
throw Exception();
|
|
//try {
|
|
// final url = YatLink.apiUrl + '/api_keys';
|
|
// final bodyJson = json.encode({'name': 'CW'});
|
|
// final response = await post(
|
|
// url,
|
|
// headers: <String, String>{
|
|
// 'Authorization': 'Bearer $accessKey',
|
|
// 'Content-Type': 'application/json',
|
|
// 'Accept': '*/*'
|
|
// },
|
|
// body: bodyJson);
|
|
|
|
// if (response.statusCode != 200) {
|
|
// throw YatException(text: response.body.toString());
|
|
// }
|
|
|
|
// final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
// return responseJSON['api_key'] as String;
|
|
//}catch(_) {
|
|
// return '';
|
|
//}
|
|
return '';
|
|
}
|
|
|
|
Future<void> updateEmojiIdAddress(String emojiId, String address, String apiKey, WalletType type) async {
|
|
throw Exception();
|
|
//final url = YatLink.emojiIdUrl + emojiId;
|
|
//final cur = walletTypeToCryptoCurrency(type);
|
|
//final curFormatted = cur.toString().toUpperCase();
|
|
//var tag = '';
|
|
|
|
//if (type == WalletType.monero && !address.startsWith('4')) {
|
|
// tag = YatLink.tags[curFormatted].last;
|
|
//} else {
|
|
// tag = YatLink.tags[curFormatted].first;
|
|
//}
|
|
|
|
//final bodyJson = json.encode({
|
|
// 'insert': [{
|
|
// 'data': address,
|
|
// 'tag': tag
|
|
// }]
|
|
//});
|
|
//final response = await patch(
|
|
// url,
|
|
// headers: <String, String>{
|
|
// 'x-api-key': apiKey,
|
|
// 'Content-Type': 'application/json',
|
|
// 'Accept': '*/*'
|
|
// },
|
|
// body: bodyJson);
|
|
|
|
//if (response.statusCode != 200) {
|
|
// throw YatException(text: response.body.toString());
|
|
//}
|
|
}
|
|
|
|
Future<String> visualisationForEmojiId(String emojiId) async {
|
|
throw Exception();
|
|
//final url = YatLink.emojiIdUrl + emojiId + '/json/VisualizerFileLocations';
|
|
//final response = await get(url);
|
|
//final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
|
//final data = responseJSON['data'] as Map<String, dynamic>;
|
|
//final result = data['gif'] as String ?? '';
|
|
//return result;
|
|
return '';
|
|
}
|
|
|
|
class YatStore = YatStoreBase with _$YatStore;
|
|
|
|
abstract class YatStoreBase with Store {
|
|
YatStoreBase({
|
|
required this.appStore,
|
|
required this.secureStorage})
|
|
: _wallet = appStore.wallet,
|
|
emoji = appStore.wallet?.walletInfo?.yatEmojiId ?? '',
|
|
refreshToken = '',
|
|
accessToken = '',
|
|
apiKey = '',
|
|
emojiIncommingSC = StreamController<String>.broadcast() {
|
|
//reaction((_) => appStore.wallet, _onWalletChange);
|
|
//reaction((_) => emoji, (String _) => _onEmojiChange());
|
|
//reaction((_) => refreshToken, (String _) => _onRefreshTokenChange());
|
|
}
|
|
|
|
static const yatRefreshTokenKeyBase = 'yat_refresh_token';
|
|
static const yatAccessTokenKeyBase = 'yat_access_token';
|
|
static const yatApiKeyBase = 'yat_api_key';
|
|
|
|
static String yatRefreshTokenKey(String name) => '${yatRefreshTokenKeyBase}_$name';
|
|
static String yatAccessTokenKey(String name) => '${yatAccessTokenKeyBase}_$name';
|
|
static String yatApiKey(String name) => '${yatApiKeyBase}_$name';
|
|
|
|
AppStore appStore;
|
|
|
|
SecureStorage secureStorage;
|
|
|
|
@observable
|
|
String emoji;
|
|
|
|
@observable
|
|
String refreshToken;
|
|
|
|
@observable
|
|
String accessToken;
|
|
|
|
@observable
|
|
String apiKey;
|
|
|
|
StreamController<String> emojiIncommingSC;
|
|
|
|
Stream<String> get emojiIncommingStream => emojiIncommingSC.stream;
|
|
|
|
@observable
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>, TransactionInfo>?
|
|
_wallet;
|
|
|
|
Future<void> init() async {
|
|
if (_wallet == null) {
|
|
return;
|
|
}
|
|
|
|
refreshToken = await secureStorage.read(key: yatRefreshTokenKey(_wallet!.walletInfo.name)) ?? '';
|
|
accessToken = await secureStorage.read(key: yatAccessTokenKey(_wallet!.walletInfo.name)) ?? '';
|
|
apiKey = await secureStorage.read(key: yatApiKey(_wallet!.walletInfo.name)) ?? '';
|
|
}
|
|
|
|
@action
|
|
void _onWalletChange(
|
|
WalletBase<Balance, TransactionHistoryBase<TransactionInfo>,
|
|
TransactionInfo>
|
|
wallet) {
|
|
this._wallet = wallet;
|
|
emoji = wallet?.walletInfo?.yatEmojiId ?? '';
|
|
init();
|
|
}
|
|
|
|
@action
|
|
void _onEmojiChange() {
|
|
try {
|
|
final walletInfo = _wallet?.walletInfo;
|
|
|
|
if (walletInfo == null) {
|
|
return;
|
|
}
|
|
|
|
walletInfo!.yatEid = emoji;
|
|
|
|
if (walletInfo!.isInBox) {
|
|
walletInfo!.save();
|
|
}
|
|
} catch (e) {
|
|
printV(e.toString());
|
|
}
|
|
}
|
|
|
|
@action
|
|
Future<void> _onRefreshTokenChange() async {
|
|
throw Exception();
|
|
|
|
//try {
|
|
// await secureStorage.write(key: yatRefreshTokenKey(_wallet.walletInfo.name), value: refreshToken);
|
|
// accessToken = await fetchYatAccessToken(refreshToken);
|
|
// await secureStorage.write(key: yatAccessTokenKey(_wallet.walletInfo.name), value: accessToken);
|
|
// apiKey = await fetchYatApiKey(accessToken);
|
|
// await secureStorage.write(key: yatApiKey(_wallet.walletInfo.name), value: accessToken);
|
|
//} catch (e) {
|
|
// printV(e.toString());
|
|
//}
|
|
}
|
|
|
|
String defineQueryParameters() {
|
|
throw Exception();
|
|
//final result = <String, String>{};
|
|
//final tags = YatLink.tags[_wallet.currency.toString().toUpperCase()];
|
|
//String tag = tags.first;
|
|
|
|
//if (_wallet.type == WalletType.monero
|
|
// && _wallet.walletAddresses.address.startsWith('4')) {
|
|
// tag = tags.last;
|
|
//}
|
|
//result[tag] = '${_wallet.walletAddresses.address}|${_wallet.name}';
|
|
//final addressJson = json.encode([result]);
|
|
//final addressJsonBytes = utf8.encode(addressJson);
|
|
|
|
//return base64.encode(addressJsonBytes);
|
|
return '';
|
|
}
|
|
}
|