mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47: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>
172 lines
No EOL
6 KiB
Dart
172 lines
No EOL
6 KiB
Dart
import 'package:cake_wallet/ionia/ionia_merchant.dart';
|
|
import 'package:cake_wallet/ionia/ionia_order.dart';
|
|
import 'package:cake_wallet/ionia/ionia_virtual_card.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
|
import 'package:cake_wallet/ionia/ionia_api.dart';
|
|
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
|
import 'package:cake_wallet/ionia/ionia_category.dart';
|
|
|
|
class IoniaService {
|
|
IoniaService(this.secureStorage, this.ioniaApi);
|
|
|
|
static const ioniaEmailStorageKey = 'ionia_email';
|
|
static const ioniaUsernameStorageKey = 'ionia_username';
|
|
static const ioniaPasswordStorageKey = 'ionia_password';
|
|
|
|
static String get clientId => secrets.ioniaClientId;
|
|
|
|
final FlutterSecureStorage secureStorage;
|
|
final IoniaApi ioniaApi;
|
|
|
|
// Create user
|
|
|
|
Future<void> createUser(String email) async {
|
|
final username = await ioniaApi.createUser(email, clientId: clientId);
|
|
await secureStorage.write(key: ioniaEmailStorageKey, value: email);
|
|
await secureStorage.write(key: ioniaUsernameStorageKey, value: username);
|
|
}
|
|
|
|
// Verify email
|
|
|
|
Future<void> verifyEmail(String code) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final email = await secureStorage.read(key: ioniaEmailStorageKey);
|
|
final credentials = await ioniaApi.verifyEmail(email: email, username: username, code: code, clientId: clientId);
|
|
await secureStorage.write(key: ioniaPasswordStorageKey, value: credentials.password);
|
|
await secureStorage.write(key: ioniaUsernameStorageKey, value: credentials.username);
|
|
}
|
|
|
|
// Sign In
|
|
|
|
Future<void> signIn(String email) async {
|
|
final username = await ioniaApi.signIn(email, clientId: clientId);
|
|
await secureStorage.write(key: ioniaEmailStorageKey, value: email);
|
|
await secureStorage.write(key: ioniaUsernameStorageKey, value: username);
|
|
}
|
|
|
|
Future<String> getUserEmail() async {
|
|
return secureStorage.read(key: ioniaEmailStorageKey);
|
|
}
|
|
|
|
// Check is user logined
|
|
|
|
Future<bool> isLogined() async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey) ?? '';
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey) ?? '';
|
|
return username.isNotEmpty && password.isNotEmpty;
|
|
}
|
|
|
|
// Logout
|
|
|
|
Future<void> logout() async {
|
|
await secureStorage.delete(key: ioniaUsernameStorageKey);
|
|
await secureStorage.delete(key: ioniaPasswordStorageKey);
|
|
}
|
|
|
|
// Create virtual card
|
|
|
|
Future<IoniaVirtualCard> createCard() async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.createCard(username: username, password: password, clientId: clientId);
|
|
}
|
|
|
|
// Get virtual card
|
|
|
|
Future<IoniaVirtualCard> getCard() async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getCards(username: username, password: password, clientId: clientId);
|
|
}
|
|
|
|
// Get Merchants
|
|
|
|
Future<List<IoniaMerchant>> getMerchants() async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getMerchants(username: username, password: password, clientId: clientId);
|
|
}
|
|
|
|
// Get Merchants By Filter
|
|
|
|
Future<List<IoniaMerchant>> getMerchantsByFilter({
|
|
String search,
|
|
List<IoniaCategory> categories,
|
|
int merchantFilterType = 0}) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getMerchantsByFilter(
|
|
username: username,
|
|
password: password,
|
|
clientId: clientId,
|
|
search: search,
|
|
categories: categories,
|
|
merchantFilterType: merchantFilterType);
|
|
}
|
|
|
|
// Purchase Gift Card
|
|
|
|
Future<IoniaOrder> purchaseGiftCard({
|
|
@required String merchId,
|
|
@required double amount,
|
|
@required String currency}) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.purchaseGiftCard(
|
|
merchId: merchId,
|
|
amount: amount,
|
|
currency: currency,
|
|
username: username,
|
|
password: password,
|
|
clientId: clientId);
|
|
}
|
|
|
|
// Get Current User Gift Card Summaries
|
|
|
|
Future<List<IoniaGiftCard>> getCurrentUserGiftCardSummaries() async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getCurrentUserGiftCardSummaries(username: username, password: password, clientId: clientId);
|
|
}
|
|
|
|
// Charge Gift Card
|
|
|
|
Future<void> chargeGiftCard({
|
|
@required int giftCardId,
|
|
@required double amount}) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
await ioniaApi.chargeGiftCard(
|
|
username: username,
|
|
password: password,
|
|
clientId: clientId,
|
|
giftCardId: giftCardId,
|
|
amount: amount);
|
|
}
|
|
|
|
// Redeem
|
|
|
|
Future<void> redeem(IoniaGiftCard giftCard) async {
|
|
await chargeGiftCard(giftCardId: giftCard.id, amount: giftCard.remainingAmount);
|
|
}
|
|
|
|
// Get Gift Card
|
|
|
|
Future<IoniaGiftCard> getGiftCard({@required int id}) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getGiftCard(username: username, password: password, clientId: clientId,id: id);
|
|
}
|
|
|
|
// Payment Status
|
|
|
|
Future<int> getPaymentStatus({
|
|
@required String orderId,
|
|
@required String paymentId}) async {
|
|
final username = await secureStorage.read(key: ioniaUsernameStorageKey);
|
|
final password = await secureStorage.read(key: ioniaPasswordStorageKey);
|
|
return ioniaApi.getPaymentStatus(username: username, password: password, clientId: clientId, orderId: orderId, paymentId: paymentId);
|
|
}
|
|
} |