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>
444 lines
No EOL
13 KiB
Dart
444 lines
No EOL
13 KiB
Dart
import 'dart:convert';
|
|
import 'package:cake_wallet/ionia/ionia_merchant.dart';
|
|
import 'package:cake_wallet/ionia/ionia_order.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:cake_wallet/ionia/ionia_user_credentials.dart';
|
|
import 'package:cake_wallet/ionia/ionia_virtual_card.dart';
|
|
import 'package:cake_wallet/ionia/ionia_category.dart';
|
|
import 'package:cake_wallet/ionia/ionia_gift_card.dart';
|
|
|
|
class IoniaApi {
|
|
static const baseUri = 'apistaging.ionia.io';
|
|
static const pathPrefix = 'cake';
|
|
static final createUserUri = Uri.https(baseUri, '/$pathPrefix/CreateUser');
|
|
static final verifyEmailUri = Uri.https(baseUri, '/$pathPrefix/VerifyEmail');
|
|
static final signInUri = Uri.https(baseUri, '/$pathPrefix/SignIn');
|
|
static final createCardUri = Uri.https(baseUri, '/$pathPrefix/CreateCard');
|
|
static final getCardsUri = Uri.https(baseUri, '/$pathPrefix/GetCards');
|
|
static final getMerchantsUrl = Uri.https(baseUri, '/$pathPrefix/GetMerchants');
|
|
static final getMerchantsByFilterUrl = Uri.https(baseUri, '/$pathPrefix/GetMerchantsByFilter');
|
|
static final getPurchaseMerchantsUrl = Uri.https(baseUri, '/$pathPrefix/PurchaseGiftCard');
|
|
static final getCurrentUserGiftCardSummariesUrl = Uri.https(baseUri, '/$pathPrefix/GetCurrentUserGiftCardSummaries');
|
|
static final changeGiftCardUrl = Uri.https(baseUri, '/$pathPrefix/ChargeGiftCard');
|
|
static final getGiftCardUrl = Uri.https(baseUri, '/$pathPrefix/GetGiftCard');
|
|
static final getPaymentStatusUrl = Uri.https(baseUri, '/$pathPrefix/PaymentStatus');
|
|
|
|
// Create user
|
|
|
|
Future<String> createUser(String email, {@required String clientId}) async {
|
|
final headers = <String, String>{'clientId': clientId};
|
|
final query = <String, String>{'emailAddress': email};
|
|
final uri = createUserUri.replace(queryParameters: query);
|
|
final response = await put(uri, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
// throw exception
|
|
return null;
|
|
}
|
|
|
|
final bodyJson = json.decode(response.body) as Map<String, Object>;
|
|
final data = bodyJson['Data'] as Map<String, Object>;
|
|
final isSuccessful = bodyJson['Successful'] as bool;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(data['ErrorMessage'] as String);
|
|
}
|
|
|
|
return data['username'] as String;
|
|
}
|
|
|
|
// Verify email
|
|
|
|
Future<IoniaUserCredentials> verifyEmail({
|
|
@required String username,
|
|
@required String email,
|
|
@required String code,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'EmailAddress': email};
|
|
final query = <String, String>{'verificationCode': code};
|
|
final uri = verifyEmailUri.replace(queryParameters: query);
|
|
final response = await put(uri, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
// throw exception
|
|
return null;
|
|
}
|
|
|
|
final bodyJson = json.decode(response.body) as Map<String, Object>;
|
|
final data = bodyJson['Data'] as Map<String, Object>;
|
|
final isSuccessful = bodyJson['Successful'] as bool;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(bodyJson['ErrorMessage'] as String);
|
|
}
|
|
|
|
final password = data['password'] as String;
|
|
username = data['username'] as String;
|
|
return IoniaUserCredentials(username, password);
|
|
}
|
|
|
|
// Sign In
|
|
|
|
Future<String> signIn(String email, {@required String clientId}) async {
|
|
final headers = <String, String>{'clientId': clientId};
|
|
final query = <String, String>{'emailAddress': email};
|
|
final uri = signInUri.replace(queryParameters: query);
|
|
final response = await put(uri, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
// throw exception
|
|
return null;
|
|
}
|
|
|
|
final bodyJson = json.decode(response.body) as Map<String, Object>;
|
|
final data = bodyJson['Data'] as Map<String, Object>;
|
|
final isSuccessful = bodyJson['Successful'] as bool;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(data['ErrorMessage'] as String);
|
|
}
|
|
|
|
return data['username'] as String;
|
|
}
|
|
|
|
// Get virtual card
|
|
|
|
Future<IoniaVirtualCard> getCards({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password};
|
|
final response = await post(getCardsUri, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
// throw exception
|
|
return null;
|
|
}
|
|
|
|
final bodyJson = json.decode(response.body) as Map<String, Object>;
|
|
final data = bodyJson['Data'] as Map<String, Object>;
|
|
final isSuccessful = bodyJson['Successful'] as bool;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(data['message'] as String);
|
|
}
|
|
|
|
final virtualCard = data['VirtualCard'] as Map<String, Object>;
|
|
return IoniaVirtualCard.fromMap(virtualCard);
|
|
}
|
|
|
|
// Create virtual card
|
|
|
|
Future<IoniaVirtualCard> createCard({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password};
|
|
final response = await post(createCardUri, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
// throw exception
|
|
return null;
|
|
}
|
|
|
|
final bodyJson = json.decode(response.body) as Map<String, Object>;
|
|
final data = bodyJson['Data'] as Map<String, Object>;
|
|
final isSuccessful = bodyJson['Successful'] as bool;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(data['message'] as String);
|
|
}
|
|
|
|
return IoniaVirtualCard.fromMap(data);
|
|
}
|
|
|
|
// Get Merchants
|
|
|
|
Future<List<IoniaMerchant>> getMerchants({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password};
|
|
final response = await post(getMerchantsUrl, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
return [];
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
return [];
|
|
}
|
|
|
|
final data = decodedBody['Data'] as List<dynamic>;
|
|
return data.map((dynamic e) {
|
|
try {
|
|
final element = e as Map<String, dynamic>;
|
|
return IoniaMerchant.fromJsonMap(element);
|
|
} catch(_) {
|
|
return null;
|
|
}
|
|
}).where((e) => e != null)
|
|
.toList();
|
|
}
|
|
|
|
// Get Merchants By Filter
|
|
|
|
Future<List<IoniaMerchant>> getMerchantsByFilter({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId,
|
|
String search,
|
|
List<IoniaCategory> categories,
|
|
int merchantFilterType = 0}) async {
|
|
// MerchantFilterType: {All = 0, Nearby = 1, Popular = 2, Online = 3, MyFaves = 4, Search = 5}
|
|
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password,
|
|
'Content-Type': 'application/json'};
|
|
final body = <String, dynamic>{'MerchantFilterType': merchantFilterType};
|
|
|
|
if (search != null) {
|
|
body['SearchCriteria'] = search;
|
|
}
|
|
|
|
if (categories != null) {
|
|
body['Categories'] = categories
|
|
.map((e) => e.ids)
|
|
.expand((e) => e)
|
|
.toList();
|
|
}
|
|
|
|
final response = await post(getMerchantsByFilterUrl, headers: headers, body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
return [];
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
return [];
|
|
}
|
|
|
|
final data = decodedBody['Data'] as List<dynamic>;
|
|
return data.map((dynamic e) {
|
|
try {
|
|
final element = e['Merchant'] as Map<String, dynamic>;
|
|
return IoniaMerchant.fromJsonMap(element);
|
|
} catch(_) {
|
|
return null;
|
|
}
|
|
}).where((e) => e != null)
|
|
.toList();
|
|
}
|
|
|
|
// Purchase Gift Card
|
|
|
|
Future<IoniaOrder> purchaseGiftCard({
|
|
@required String merchId,
|
|
@required double amount,
|
|
@required String currency,
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password,
|
|
'Content-Type': 'application/json'};
|
|
final body = <String, dynamic>{
|
|
'Amount': amount,
|
|
'Currency': currency,
|
|
'MerchantId': merchId};
|
|
final response = await post(getPurchaseMerchantsUrl, headers: headers, body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
throw Exception('Unexpected response');
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
throw Exception(decodedBody['ErrorMessage'] as String);
|
|
}
|
|
|
|
final data = decodedBody['Data'] as Map<String, dynamic>;
|
|
return IoniaOrder.fromMap(data);
|
|
}
|
|
|
|
// Get Current User Gift Card Summaries
|
|
|
|
Future<List<IoniaGiftCard>> getCurrentUserGiftCardSummaries({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password};
|
|
final response = await post(getCurrentUserGiftCardSummariesUrl, headers: headers);
|
|
|
|
if (response.statusCode != 200) {
|
|
return [];
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
return [];
|
|
}
|
|
|
|
final data = decodedBody['Data'] as List<dynamic>;
|
|
return data.map((dynamic e) {
|
|
try {
|
|
final element = e as Map<String, dynamic>;
|
|
return IoniaGiftCard.fromJsonMap(element);
|
|
} catch(e) {
|
|
return null;
|
|
}
|
|
}).where((e) => e != null)
|
|
.toList();
|
|
}
|
|
|
|
// Charge Gift Card
|
|
|
|
Future<void> chargeGiftCard({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId,
|
|
@required int giftCardId,
|
|
@required double amount}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password,
|
|
'Content-Type': 'application/json'};
|
|
final body = <String, dynamic>{
|
|
'Id': giftCardId,
|
|
'Amount': amount};
|
|
final response = await post(
|
|
changeGiftCardUrl,
|
|
headers: headers,
|
|
body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
throw Exception('Failed to update Gift Card with ID ${giftCardId};Incorrect response status: ${response.statusCode};');
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
final data = decodedBody['Data'] as Map<String, dynamic>;
|
|
final msg = data['Message'] as String ?? '';
|
|
|
|
if (msg.isNotEmpty) {
|
|
throw Exception(msg);
|
|
}
|
|
|
|
throw Exception('Failed to update Gift Card with ID ${giftCardId};');
|
|
}
|
|
}
|
|
|
|
// Get Gift Card
|
|
|
|
Future<IoniaGiftCard> getGiftCard({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId,
|
|
@required int id}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password,
|
|
'Content-Type': 'application/json'};
|
|
final body = <String, dynamic>{'Id': id};
|
|
final response = await post(
|
|
getGiftCardUrl,
|
|
headers: headers,
|
|
body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
throw Exception('Failed to get Gift Card with ID ${id};Incorrect response status: ${response.statusCode};');
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
final msg = decodedBody['ErrorMessage'] as String ?? '';
|
|
|
|
if (msg.isNotEmpty) {
|
|
throw Exception(msg);
|
|
}
|
|
|
|
throw Exception('Failed to get Gift Card with ID ${id};');
|
|
}
|
|
|
|
final data = decodedBody['Data'] as Map<String, dynamic>;
|
|
return IoniaGiftCard.fromJsonMap(data);
|
|
}
|
|
|
|
// Payment Status
|
|
|
|
Future<int> getPaymentStatus({
|
|
@required String username,
|
|
@required String password,
|
|
@required String clientId,
|
|
@required String orderId,
|
|
@required String paymentId}) async {
|
|
final headers = <String, String>{
|
|
'clientId': clientId,
|
|
'username': username,
|
|
'password': password,
|
|
'Content-Type': 'application/json'};
|
|
final body = <String, dynamic>{
|
|
'order_id': orderId,
|
|
'paymentId': paymentId};
|
|
final response = await post(
|
|
getPaymentStatusUrl,
|
|
headers: headers,
|
|
body: json.encode(body));
|
|
|
|
if (response.statusCode != 200) {
|
|
throw Exception('Failed to get Payment Status for order_id ${orderId} paymentId ${paymentId};Incorrect response status: ${response.statusCode};');
|
|
}
|
|
|
|
final decodedBody = json.decode(response.body) as Map<String, dynamic>;
|
|
final isSuccessful = decodedBody['Successful'] as bool ?? false;
|
|
|
|
if (!isSuccessful) {
|
|
final msg = decodedBody['ErrorMessage'] as String ?? '';
|
|
|
|
if (msg.isNotEmpty) {
|
|
throw Exception(msg);
|
|
}
|
|
|
|
throw Exception('Failed to get Payment Status for order_id ${orderId} paymentId ${paymentId}');
|
|
}
|
|
|
|
final data = decodedBody['Data'] as Map<String, dynamic>;
|
|
return data['gift_card_id'] as int;
|
|
}
|
|
} |