mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
418c9563fe
* Initial ionia service * Ionia manage card UI (#374) * design ui for cakepay * Add manage cards page ui * create auth ui for ionia * add authentication logic * implement user create card * Add ionia merchant sevic * Add anypay. Add purschase gift card. * display virtual card (#385) * display virtual card * fix formatting * Remove IoniaMerchantService from IoniaViewModel * Add hex and txKey for monero pending transaction. * Changed monero version and monero repo to cake tech. * Add anypay payment. Add filter by search for ionia, add get purchased items for ionia. * Fix for get transactions for hidden addresses for electrum wallet * Add ionia categories. * Add anypay commited info for payments. * Update UI with new fixes (#400) * Change ionia base url. Add exception throwing for error messaging for some of ionia calls. * CW-102 fix logic for ionia issues (#403) * refactor tips (#406) * refactor tips * refactor ionia tips implementation * Cw 115 implement gift cards list for ionia (#405) * Implement show purchased cards * fix padding * Fixes for getting of purchased gift cards. * Implement gift card details screen (#408) * Implement gift card details screen * Add redeem for ionia gift cards * Fix navigation after ionia opt redirection. * Fix update gift cards list. * Add payment status update for ionia. * Add usage instruction to gift card. * Add copy for ionia gift card info. * Change version for Cake Wallet ios. * Add localisation (#414) * Fixes for fiat amounts for ionia. * CW-128 marketplace screen text changes (#416) * Change text on marketplace * fix build issues * fix build * UI fixes for ionia. * UI fixes for ionia. (#421) * CW-129 ionia welcome screen text changes (#418) * update welcome text * Update localization * Cw 133 (#422) * UI fixes for ionia. * Fixes for display card item on gift cards screen. * Fix signup page (#419) * Changed tips for ionia. * Cw 132 (#425) * UI fixes for ionia. * Changed tips for ionia. * Cw 131 (#426) * UI fixes for ionia. * Changed tips for ionia. * Fixes for IoniaBuyGiftCardDetailPage screen. Renamed 'Manage Cards' to 'Gift Cards'. Hide discount badge label for 0 discount. * Change ionia heading font style (#427) * Fix for AddressResolver in di * Changed build number for Cake Wallet ios. * fix currency format for card details and routing for mark as redeemed (#431) * fix terms and condition overflow in ionia (#430) * fix terms and condition scroll * fix color issues * reuse * refactor widget * Remove IoniaTokenService * Change api for ionia to staging * Update versions for Cake Wallet for android and ios. * Fixes for instructions. Remove diplay error on payment status screen. * Change build versions for Cake Wallet * Add ionia sign in. * Update for discounts and statuses for ionia merch. * Fixes for qr/barcode on ionia gift card screen. * Fixed formatting for display ionia discounts. * Fix merchant.discount.toStringAsFixed issue * Add savingsPercentage to ionia merch discount. * Change build number for Cake Wallet ios and android. * Disable ionia for haven (#440) Co-authored-by: Godwin Asuquo <41484542+godilite@users.noreply.github.com>
234 lines
7.7 KiB
Dart
234 lines
7.7 KiB
Dart
import 'dart:ffi';
|
|
import 'package:cw_monero/api/convert_utf8_to_string.dart';
|
|
import 'package:cw_monero/api/monero_output.dart';
|
|
import 'package:cw_monero/api/structs/ut8_box.dart';
|
|
import 'package:ffi/ffi.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:cw_monero/api/signatures.dart';
|
|
import 'package:cw_monero/api/types.dart';
|
|
import 'package:cw_monero/api/monero_api.dart';
|
|
import 'package:cw_monero/api/structs/transaction_info_row.dart';
|
|
import 'package:cw_monero/api/structs/pending_transaction.dart';
|
|
import 'package:cw_monero/api/exceptions/creation_transaction_exception.dart';
|
|
|
|
final transactionsRefreshNative = moneroApi
|
|
.lookup<NativeFunction<transactions_refresh>>('transactions_refresh')
|
|
.asFunction<TransactionsRefresh>();
|
|
|
|
final transactionsCountNative = moneroApi
|
|
.lookup<NativeFunction<transactions_count>>('transactions_count')
|
|
.asFunction<TransactionsCount>();
|
|
|
|
final transactionsGetAllNative = moneroApi
|
|
.lookup<NativeFunction<transactions_get_all>>('transactions_get_all')
|
|
.asFunction<TransactionsGetAll>();
|
|
|
|
final transactionCreateNative = moneroApi
|
|
.lookup<NativeFunction<transaction_create>>('transaction_create')
|
|
.asFunction<TransactionCreate>();
|
|
|
|
final transactionCreateMultDestNative = moneroApi
|
|
.lookup<NativeFunction<transaction_create_mult_dest>>('transaction_create_mult_dest')
|
|
.asFunction<TransactionCreateMultDest>();
|
|
|
|
final transactionCommitNative = moneroApi
|
|
.lookup<NativeFunction<transaction_commit>>('transaction_commit')
|
|
.asFunction<TransactionCommit>();
|
|
|
|
final getTxKeyNative = moneroApi
|
|
.lookup<NativeFunction<get_tx_key>>('get_tx_key')
|
|
.asFunction<GetTxKey>();
|
|
|
|
String getTxKey(String txId) {
|
|
final txIdPointer = Utf8.toUtf8(txId);
|
|
final keyPointer = getTxKeyNative(txIdPointer);
|
|
|
|
free(txIdPointer);
|
|
|
|
if (keyPointer != null) {
|
|
return convertUTF8ToString(pointer: keyPointer);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
void refreshTransactions() => transactionsRefreshNative();
|
|
|
|
int countOfTransactions() => transactionsCountNative();
|
|
|
|
List<TransactionInfoRow> getAllTransations() {
|
|
final size = transactionsCountNative();
|
|
final transactionsPointer = transactionsGetAllNative();
|
|
final transactionsAddresses = transactionsPointer.asTypedList(size);
|
|
|
|
return transactionsAddresses
|
|
.map((addr) => Pointer<TransactionInfoRow>.fromAddress(addr).ref)
|
|
.toList();
|
|
}
|
|
|
|
PendingTransactionDescription createTransactionSync(
|
|
{String address,
|
|
String paymentId,
|
|
String amount,
|
|
int priorityRaw,
|
|
int accountIndex = 0}) {
|
|
final addressPointer = Utf8.toUtf8(address);
|
|
final paymentIdPointer = Utf8.toUtf8(paymentId);
|
|
final amountPointer = amount != null ? Utf8.toUtf8(amount) : nullptr;
|
|
final errorMessagePointer = allocate<Utf8Box>();
|
|
final pendingTransactionRawPointer = allocate<PendingTransactionRaw>();
|
|
final created = transactionCreateNative(
|
|
addressPointer,
|
|
paymentIdPointer,
|
|
amountPointer,
|
|
priorityRaw,
|
|
accountIndex,
|
|
errorMessagePointer,
|
|
pendingTransactionRawPointer) !=
|
|
0;
|
|
|
|
free(addressPointer);
|
|
free(paymentIdPointer);
|
|
|
|
if (amountPointer != nullptr) {
|
|
free(amountPointer);
|
|
}
|
|
|
|
if (!created) {
|
|
final message = errorMessagePointer.ref.getValue();
|
|
free(errorMessagePointer);
|
|
throw CreationTransactionException(message: message);
|
|
}
|
|
|
|
return PendingTransactionDescription(
|
|
amount: pendingTransactionRawPointer.ref.amount,
|
|
fee: pendingTransactionRawPointer.ref.fee,
|
|
hash: pendingTransactionRawPointer.ref.getHash(),
|
|
hex: pendingTransactionRawPointer.ref.getHex(),
|
|
txKey: pendingTransactionRawPointer.ref.getKey(),
|
|
pointerAddress: pendingTransactionRawPointer.address);
|
|
}
|
|
|
|
PendingTransactionDescription createTransactionMultDestSync(
|
|
{List<MoneroOutput> outputs,
|
|
String paymentId,
|
|
int priorityRaw,
|
|
int accountIndex = 0}) {
|
|
final int size = outputs.length;
|
|
final List<Pointer<Utf8>> addressesPointers = outputs.map((output) =>
|
|
Utf8.toUtf8(output.address)).toList();
|
|
final Pointer<Pointer<Utf8>> addressesPointerPointer = allocate(count: size);
|
|
final List<Pointer<Utf8>> amountsPointers = outputs.map((output) =>
|
|
Utf8.toUtf8(output.amount)).toList();
|
|
final Pointer<Pointer<Utf8>> amountsPointerPointer = allocate(count: size);
|
|
|
|
for (int i = 0; i < size; i++) {
|
|
addressesPointerPointer[i] = addressesPointers[i];
|
|
amountsPointerPointer[i] = amountsPointers[i];
|
|
}
|
|
|
|
final paymentIdPointer = Utf8.toUtf8(paymentId);
|
|
final errorMessagePointer = allocate<Utf8Box>();
|
|
final pendingTransactionRawPointer = allocate<PendingTransactionRaw>();
|
|
final created = transactionCreateMultDestNative(
|
|
addressesPointerPointer,
|
|
paymentIdPointer,
|
|
amountsPointerPointer,
|
|
size,
|
|
priorityRaw,
|
|
accountIndex,
|
|
errorMessagePointer,
|
|
pendingTransactionRawPointer) !=
|
|
0;
|
|
|
|
free(addressesPointerPointer);
|
|
free(amountsPointerPointer);
|
|
|
|
addressesPointers.forEach((element) => free(element));
|
|
amountsPointers.forEach((element) => free(element));
|
|
|
|
free(paymentIdPointer);
|
|
|
|
if (!created) {
|
|
final message = errorMessagePointer.ref.getValue();
|
|
free(errorMessagePointer);
|
|
throw CreationTransactionException(message: message);
|
|
}
|
|
|
|
return PendingTransactionDescription(
|
|
amount: pendingTransactionRawPointer.ref.amount,
|
|
fee: pendingTransactionRawPointer.ref.fee,
|
|
hash: pendingTransactionRawPointer.ref.getHash(),
|
|
hex: pendingTransactionRawPointer.ref.getHex(),
|
|
txKey: pendingTransactionRawPointer.ref.getKey(),
|
|
pointerAddress: pendingTransactionRawPointer.address);
|
|
}
|
|
|
|
void commitTransactionFromPointerAddress({int address}) => commitTransaction(
|
|
transactionPointer: Pointer<PendingTransactionRaw>.fromAddress(address));
|
|
|
|
void commitTransaction({Pointer<PendingTransactionRaw> transactionPointer}) {
|
|
final errorMessagePointer = allocate<Utf8Box>();
|
|
final isCommited =
|
|
transactionCommitNative(transactionPointer, errorMessagePointer) != 0;
|
|
|
|
if (!isCommited) {
|
|
final message = errorMessagePointer.ref.getValue();
|
|
free(errorMessagePointer);
|
|
throw CreationTransactionException(message: message);
|
|
}
|
|
}
|
|
|
|
PendingTransactionDescription _createTransactionSync(Map args) {
|
|
final address = args['address'] as String;
|
|
final paymentId = args['paymentId'] as String;
|
|
final amount = args['amount'] as String;
|
|
final priorityRaw = args['priorityRaw'] as int;
|
|
final accountIndex = args['accountIndex'] as int;
|
|
|
|
return createTransactionSync(
|
|
address: address,
|
|
paymentId: paymentId,
|
|
amount: amount,
|
|
priorityRaw: priorityRaw,
|
|
accountIndex: accountIndex);
|
|
}
|
|
|
|
PendingTransactionDescription _createTransactionMultDestSync(Map args) {
|
|
final outputs = args['outputs'] as List<MoneroOutput>;
|
|
final paymentId = args['paymentId'] as String;
|
|
final priorityRaw = args['priorityRaw'] as int;
|
|
final accountIndex = args['accountIndex'] as int;
|
|
|
|
return createTransactionMultDestSync(
|
|
outputs: outputs,
|
|
paymentId: paymentId,
|
|
priorityRaw: priorityRaw,
|
|
accountIndex: accountIndex);
|
|
}
|
|
|
|
Future<PendingTransactionDescription> createTransaction(
|
|
{String address,
|
|
String paymentId = '',
|
|
String amount,
|
|
int priorityRaw,
|
|
int accountIndex = 0}) =>
|
|
compute(_createTransactionSync, {
|
|
'address': address,
|
|
'paymentId': paymentId,
|
|
'amount': amount,
|
|
'priorityRaw': priorityRaw,
|
|
'accountIndex': accountIndex
|
|
});
|
|
|
|
Future<PendingTransactionDescription> createTransactionMultDest(
|
|
{List<MoneroOutput> outputs,
|
|
String paymentId = '',
|
|
int priorityRaw,
|
|
int accountIndex = 0}) =>
|
|
compute(_createTransactionMultDestSync, {
|
|
'outputs': outputs,
|
|
'paymentId': paymentId,
|
|
'priorityRaw': priorityRaw,
|
|
'accountIndex': accountIndex
|
|
});
|