-
Notifications
You must be signed in to change notification settings - Fork 273
Expand file tree
/
Copy pathflutter_inapp_purchase.dart
More file actions
2274 lines (2072 loc) · 81.7 KB
/
flutter_inapp_purchase.dart
File metadata and controls
2274 lines (2072 loc) · 81.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import 'dart:async';
import 'dart:convert';
import 'package:flutter/foundation.dart';
import 'package:flutter/services.dart';
import 'package:platform/platform.dart';
import 'enums.dart';
import 'types.dart' as gentype;
import 'builders.dart';
import 'helpers.dart';
import 'utils.dart';
import 'errors.dart' as errors;
export 'types.dart' hide PurchaseError;
export 'builders.dart';
export 'utils.dart';
export 'helpers.dart' hide PurchaseResult, ConnectionResult;
export 'extensions/purchase_helpers.dart';
export 'enums.dart' hide IapPlatform, PurchaseState;
export 'errors.dart'
show
getCurrentPlatform,
PurchaseError,
ErrorCodeUtils,
PurchaseResult,
ConnectionResult,
getUserFriendlyErrorMessage;
typedef PurchaseError = errors.PurchaseError;
typedef SubscriptionOfferAndroid = gentype.AndroidSubscriptionOfferInput;
class FlutterInappPurchase with RequestPurchaseBuilderApi {
// Singleton instance
static FlutterInappPurchase? _instance;
/// Get the singleton instance
static FlutterInappPurchase get instance {
_instance ??= FlutterInappPurchase();
return _instance!;
}
// Instance-level stream controllers
StreamController<gentype.Purchase?>? _purchaseController;
Stream<gentype.Purchase?> get purchaseUpdated {
_purchaseController ??= StreamController<gentype.Purchase?>.broadcast();
return _purchaseController!.stream;
}
StreamController<PurchaseResult?>? _purchaseErrorController;
Stream<PurchaseResult?> get purchaseError {
_purchaseErrorController ??= StreamController<PurchaseResult?>.broadcast();
return _purchaseErrorController!.stream;
}
StreamController<ConnectionResult>? _connectionController;
Stream<ConnectionResult> get connectionUpdated {
_connectionController ??= StreamController<ConnectionResult>.broadcast();
return _connectionController!.stream;
}
StreamController<String?>? _purchasePromotedController;
Stream<String?> get purchasePromoted {
_purchasePromotedController ??= StreamController<String?>.broadcast();
return _purchasePromotedController!.stream;
}
final Map<String, bool> _acknowledgedAndroidPurchaseTokens = <String, bool>{};
/// Defining the [MethodChannel] for Flutter_Inapp_Purchase
final MethodChannel _channel = const MethodChannel('flutter_inapp');
MethodChannel get channel => _channel;
Platform get _platform => _pf;
// Public getters used by platform mixins
bool get isIOS => _platform.isIOS || _platform.isMacOS;
bool get isAndroid => _platform.isAndroid;
String get operatingSystem => _platform.operatingSystem;
final Platform _pf;
FlutterInappPurchase({Platform? platform})
: _pf = platform ?? const LocalPlatform();
@visibleForTesting
FlutterInappPurchase.private(Platform platform) : _pf = platform;
// Purchase event streams
final StreamController<gentype.Purchase> _purchaseUpdatedListener =
StreamController<gentype.Purchase>.broadcast();
final StreamController<PurchaseError> _purchaseErrorListener =
StreamController<PurchaseError>.broadcast();
final StreamController<gentype.UserChoiceBillingDetails>
_userChoiceBillingAndroidListener =
StreamController<gentype.UserChoiceBillingDetails>.broadcast();
final StreamController<gentype.DeveloperProvidedBillingDetailsAndroid>
_developerProvidedBillingAndroidListener = StreamController<
gentype.DeveloperProvidedBillingDetailsAndroid>.broadcast();
/// Purchase updated event stream
Stream<gentype.Purchase> get purchaseUpdatedListener =>
_purchaseUpdatedListener.stream;
/// Purchase error event stream
Stream<PurchaseError> get purchaseErrorListener =>
_purchaseErrorListener.stream;
/// User choice billing Android event stream
Stream<gentype.UserChoiceBillingDetails> get userChoiceBillingAndroid =>
_userChoiceBillingAndroidListener.stream;
/// Developer provided billing Android event stream (8.3.0+)
/// Fires when user selects developer-provided billing option in external payments flow.
Stream<gentype.DeveloperProvidedBillingDetailsAndroid>
get developerProvidedBillingAndroid =>
_developerProvidedBillingAndroidListener.stream;
bool _isInitialized = false;
Future<void> _setPurchaseListener() async {
_purchaseController ??= StreamController.broadcast();
_purchaseErrorController ??= StreamController.broadcast();
_connectionController ??= StreamController.broadcast();
_purchasePromotedController ??= StreamController.broadcast();
_channel.setMethodCallHandler((MethodCall call) async {
switch (call.method) {
case 'purchase-updated':
try {
Map<String, dynamic> result =
jsonDecode(call.arguments as String) as Map<String, dynamic>;
// Convert directly to Purchase without intermediate PurchasedItem
final purchase = convertToPurchase(
result,
originalJson: result,
platformIsAndroid: _platform.isAndroid,
platformIsIOS: _platform.isIOS || _platform.isMacOS,
acknowledgedAndroidPurchaseTokens:
_acknowledgedAndroidPurchaseTokens,
);
_purchaseController!.add(purchase);
_purchaseUpdatedListener.add(purchase);
} catch (e, stackTrace) {
debugPrint(
'[flutter_inapp_purchase] ERROR in purchase-updated: $e',
);
debugPrint('[flutter_inapp_purchase] Stack trace: $stackTrace');
}
break;
case 'purchase-error':
debugPrint(
'[flutter_inapp_purchase] Processing purchase-error event',
);
Map<String, dynamic> result =
jsonDecode(call.arguments as String) as Map<String, dynamic>;
final purchaseResult = PurchaseResult.fromJSON(result);
_purchaseErrorController!.add(purchaseResult);
// Also emit to Open IAP compatible stream
final error = convertToPurchaseError(
purchaseResult,
platform: _platform.isIOS || _platform.isMacOS
? gentype.IapPlatform.IOS
: gentype.IapPlatform.Android,
);
debugPrint(
'[flutter_inapp_purchase] Emitting error to purchaseErrorListener: $error',
);
_purchaseErrorListener.add(error);
break;
case 'connection-updated':
Map<String, dynamic> result =
jsonDecode(call.arguments as String) as Map<String, dynamic>;
_connectionController!.add(
ConnectionResult.fromJSON(Map<String, dynamic>.from(result)),
);
break;
case 'iap-promoted-product':
String? productId = call.arguments as String?;
_purchasePromotedController!.add(productId);
break;
case 'user-choice-billing-android':
try {
Map<String, dynamic> result =
jsonDecode(call.arguments as String) as Map<String, dynamic>;
final details = gentype.UserChoiceBillingDetails.fromJson(result);
_userChoiceBillingAndroidListener.add(details);
} catch (e, stackTrace) {
debugPrint(
'[flutter_inapp_purchase] ERROR in user-choice-billing-android: $e',
);
debugPrint('[flutter_inapp_purchase] Stack trace: $stackTrace');
}
break;
case 'developer-provided-billing-android':
try {
Map<String, dynamic> result =
jsonDecode(call.arguments as String) as Map<String, dynamic>;
final details =
gentype.DeveloperProvidedBillingDetailsAndroid.fromJson(result);
_developerProvidedBillingAndroidListener.add(details);
} catch (e, stackTrace) {
debugPrint(
'[flutter_inapp_purchase] ERROR in developer-provided-billing-android: $e',
);
debugPrint('[flutter_inapp_purchase] Stack trace: $stackTrace');
}
break;
default:
throw ArgumentError('Unknown method ${call.method}');
}
return Future.value(null);
});
}
/// Initialize connection (flutter IAP compatible)
gentype.MutationInitConnectionHandler get initConnection => ({
gentype.AlternativeBillingModeAndroid? alternativeBillingModeAndroid,
gentype.BillingProgramAndroid? enableBillingProgramAndroid,
}) async {
if (_isInitialized) {
return true;
}
try {
await _setPurchaseListener();
// Build config map for alternative billing and billing program
Map<String, dynamic>? config;
if (alternativeBillingModeAndroid != null ||
enableBillingProgramAndroid != null) {
config = {};
if (alternativeBillingModeAndroid != null) {
config['alternativeBillingModeAndroid'] =
alternativeBillingModeAndroid.toJson();
}
if (enableBillingProgramAndroid != null) {
config['enableBillingProgramAndroid'] =
enableBillingProgramAndroid.toJson();
}
}
await _channel.invokeMethod('initConnection', config);
_isInitialized = true;
return true;
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'initialize IAP connection',
);
} catch (error) {
throw PurchaseError(
code: gentype.ErrorCode.NotPrepared,
message: 'Failed to initialize IAP connection: ${error.toString()}',
);
}
};
/// End connection (flutter IAP compatible)
gentype.MutationEndConnectionHandler get endConnection => () async {
if (!_isInitialized) {
return false;
}
try {
// For flutter IAP compatibility, call endConnection directly
await _channel.invokeMethod('endConnection');
_isInitialized = false;
return true;
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'end IAP connection',
);
} catch (error) {
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to end IAP connection: ${error.toString()}',
);
}
};
/// Request purchase (flutter IAP compatible)
@override
gentype.MutationRequestPurchaseHandler get requestPurchase => (params) async {
if (!_isInitialized) {
throw PurchaseError(
code: gentype.ErrorCode.NotPrepared,
message: 'IAP connection not initialized',
);
}
// Determine type based on factory constructor used
final type = params.toJson()['type'] as String;
final productType = type == 'in-app'
? gentype.ProductQueryType.InApp
: gentype.ProductQueryType.Subs;
if (productType == gentype.ProductQueryType.All) {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message:
'requestPurchase only supports IN_APP or SUBS request types',
);
}
final nativeType = resolveProductType(productType);
try {
if (_platform.isIOS || _platform.isMacOS) {
// Extract props from the JSON representation
final json = params.toJson();
final requestKey =
type == 'in-app' ? 'requestPurchase' : 'requestSubscription';
final requestData = json[requestKey] as Map<String, dynamic>?;
if (requestData == null) {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message:
'Missing request data. JSON: ${json.toString().substring(0, 200)}',
);
}
final iosData = requestData['ios'] as Map<String, dynamic>?;
if (iosData == null) {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message:
'Missing iOS purchase parameters. Request data keys: ${requestData.keys.join(", ")}',
);
}
final iosProps = type == 'in-app'
? gentype.RequestPurchaseIosProps.fromJson(iosData)
: gentype.RequestSubscriptionIosProps.fromJson(iosData);
final payload = buildIosPurchasePayload(nativeType, iosProps);
if (payload == null) {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message: 'Missing iOS purchase parameters',
);
}
await _channel.invokeMethod('requestPurchase', payload);
return null;
}
if (_platform.isAndroid) {
// Extract props from the JSON representation
final json = params.toJson();
final requestKey =
type == 'in-app' ? 'requestPurchase' : 'requestSubscription';
final requestData = json[requestKey] as Map<String, dynamic>?;
// Support both 'google' (new) and 'android' (deprecated) fields
final androidData = (requestData?['google'] ??
requestData?['android']) as Map<String, dynamic>?;
if (androidData == null) {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message: 'Missing Android purchase parameters',
);
}
// Parse Android props based on type
final androidProps = type == 'inapp'
? gentype.RequestPurchaseAndroidProps.fromJson(androidData)
: gentype.RequestSubscriptionAndroidProps.fromJson(androidData);
// Handle both RequestPurchaseAndroidProps and RequestSubscriptionAndroidProps
final List<String> skus;
final bool? isOfferPersonalized;
final String? obfuscatedAccount;
final String? obfuscatedProfile;
final String? purchaseToken;
final int? replacementMode;
final String? offerToken;
final List<gentype.AndroidSubscriptionOfferInput>?
subscriptionOffers;
final gentype.DeveloperBillingOptionParamsAndroid?
developerBillingOption;
if (androidProps is gentype.RequestPurchaseAndroidProps) {
skus = androidProps.skus;
isOfferPersonalized = androidProps.isOfferPersonalized;
obfuscatedAccount = androidProps.obfuscatedAccountId;
obfuscatedProfile = androidProps.obfuscatedProfileId;
purchaseToken = null;
replacementMode = null;
offerToken = androidProps.offerToken;
subscriptionOffers = null;
developerBillingOption = androidProps.developerBillingOption;
} else if (androidProps
is gentype.RequestSubscriptionAndroidProps) {
skus = androidProps.skus;
isOfferPersonalized = androidProps.isOfferPersonalized;
obfuscatedAccount = androidProps.obfuscatedAccountId;
obfuscatedProfile = androidProps.obfuscatedProfileId;
purchaseToken = androidProps.purchaseToken;
replacementMode = androidProps.replacementMode;
offerToken = null; // Subscriptions don't use offerToken
subscriptionOffers = androidProps.subscriptionOffers;
developerBillingOption = androidProps.developerBillingOption;
} else {
throw PurchaseError(
code: gentype.ErrorCode.DeveloperError,
message: 'Invalid Android purchase parameters type',
);
}
if (skus.isEmpty) {
throw PurchaseError(
code: gentype.ErrorCode.EmptySkuList,
message: 'Android purchase requires at least one SKU',
);
}
final payload = <String, dynamic>{
'type': nativeType,
'skus': skus,
'productId': skus.first,
'isOfferPersonalized': isOfferPersonalized ?? false,
};
// Use simplified field names (without Android suffix) per OpenIAP 1.3.15+
if (obfuscatedAccount != null) {
payload['obfuscatedAccountId'] = obfuscatedAccount;
}
if (obfuscatedProfile != null) {
payload['obfuscatedProfileId'] = obfuscatedProfile;
}
if (purchaseToken != null) {
payload['purchaseToken'] = purchaseToken;
}
if (replacementMode != null) {
payload['replacementMode'] = replacementMode;
}
// offerToken for one-time purchase discounts (Android 7.0+)
if (offerToken != null) {
payload['offerToken'] = offerToken;
}
if (subscriptionOffers != null && subscriptionOffers.isNotEmpty) {
payload['subscriptionOffers'] =
subscriptionOffers.map((offer) => offer.toJson()).toList();
}
// Add useAlternativeBilling from the RequestPurchaseProps
// Include it even if null or false to ensure proper mode switching
final useAlternativeBilling =
json['useAlternativeBilling'] as bool?;
payload['useAlternativeBilling'] = useAlternativeBilling;
// Add developerBillingOption for External Payments (8.3.0+)
if (developerBillingOption != null) {
payload['developerBillingOption'] =
developerBillingOption.toJson();
}
await _channel.invokeMethod('requestPurchase', payload);
return null;
}
throw PurchaseError(
code: gentype.ErrorCode.IapNotAvailable,
message: 'requestPurchase is not supported on this platform',
);
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'request purchase',
);
} catch (error) {
if (error is PurchaseError) rethrow;
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to request purchase: ${error.toString()}',
);
}
};
/// DSL-like request subscription method with builder pattern
// requestSubscriptionWithBuilder removed in 6.6.0 (use requestPurchaseWithBuilder)
/// Get all available purchases (OpenIAP standard)
/// Returns non-consumed purchases that are still pending acknowledgment or consumption
///
/// [options] - Optional configuration for the method behavior
/// - onlyIncludeActiveItemsIOS: Whether to only include active items (default: true)
/// Set to false to include expired subscriptions
/// - includeSuspendedAndroid: Include suspended subscriptions (Android 8.1+, default: false)
/// Suspended subscriptions have isSuspendedAndroid=true and should NOT be granted entitlements.
gentype.QueryGetAvailablePurchasesHandler get getAvailablePurchases => ({
bool? alsoPublishToEventListenerIOS,
bool? includeSuspendedAndroid,
bool? onlyIncludeActiveItemsIOS,
}) async {
if (!_isInitialized) {
throw PurchaseError(
code: gentype.ErrorCode.NotPrepared,
message: 'IAP connection not initialized',
);
}
try {
final normalizedOptions = gentype.PurchaseOptions(
alsoPublishToEventListenerIOS:
alsoPublishToEventListenerIOS ?? false,
includeSuspendedAndroid: includeSuspendedAndroid ?? false,
onlyIncludeActiveItemsIOS: onlyIncludeActiveItemsIOS ?? true,
);
bool hasResolvableIdentifier(gentype.Purchase purchase) {
final token = purchase.purchaseToken;
if (token != null && token.isNotEmpty) {
return true;
}
if (purchase is gentype.PurchaseIOS) {
return purchase.transactionId.isNotEmpty;
}
if (purchase is gentype.PurchaseAndroid) {
return purchase.transactionId?.isNotEmpty ?? false;
}
return purchase.id.isNotEmpty;
}
Future<List<gentype.Purchase>> resolvePurchases() async {
List<gentype.Purchase> raw = const <gentype.Purchase>[];
if (_platform.isIOS || _platform.isMacOS) {
final args = <String, dynamic>{
'alsoPublishToEventListenerIOS':
normalizedOptions.alsoPublishToEventListenerIOS ?? false,
'onlyIncludeActiveItemsIOS':
normalizedOptions.onlyIncludeActiveItemsIOS ?? true,
};
final dynamic result = await _channel.invokeMethod(
'getAvailableItems',
args,
);
raw = extractPurchases(
result,
platformIsAndroid: false,
platformIsIOS: true,
acknowledgedAndroidPurchaseTokens:
_acknowledgedAndroidPurchaseTokens,
);
} else if (_platform.isAndroid) {
final args = <String, dynamic>{
'includeSuspendedAndroid':
normalizedOptions.includeSuspendedAndroid ?? false,
};
final dynamic result = await _channel.invokeMethod(
'getAvailableItems',
args,
);
raw = extractPurchases(
result,
platformIsAndroid: true,
platformIsIOS: false,
acknowledgedAndroidPurchaseTokens:
_acknowledgedAndroidPurchaseTokens,
);
}
return raw
.where((purchase) => purchase.productId.isNotEmpty)
.where(hasResolvableIdentifier)
.toList(growable: false);
}
return await resolvePurchases();
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'get available purchases',
);
} catch (error) {
if (error is PurchaseError) rethrow;
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to get available purchases: ${error.toString()}',
);
}
};
/// Get the current storefront country code (unified method)
gentype.QueryGetStorefrontHandler get getStorefront => () async {
if (!isIOS && !_platform.isAndroid) {
return '';
}
try {
final String? storefront = await channel.invokeMethod<String>(
'getStorefront',
);
return storefront ?? '';
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'get storefront',
);
} catch (error) {
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to get storefront: ${error.toString()}',
);
}
};
/// iOS specific: Get storefront
gentype.QueryGetStorefrontIOSHandler get getStorefrontIOS => () async {
if (!_platform.isIOS || _platform.isMacOS) {
throw PurchaseError(
code: gentype.ErrorCode.IapNotAvailable,
message: 'Storefront is only available on iOS',
);
}
try {
final result = await channel.invokeMethod<Map<dynamic, dynamic>>(
'getStorefrontIOS',
);
if (result != null && result['countryCode'] != null) {
return result['countryCode'] as String;
}
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to get storefront country code',
);
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'get storefront',
);
} catch (error) {
if (error is PurchaseError) rethrow;
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to get storefront: ${error.toString()}',
);
}
};
gentype.MutationSyncIOSHandler get syncIOS => () async {
if (!_platform.isIOS || _platform.isMacOS) {
debugPrint('syncIOS is only supported on iOS');
return false;
}
try {
await _channel.invokeMethod('endConnection');
await _channel.invokeMethod('initConnection');
return true;
} catch (error) {
debugPrint('Error syncing iOS purchases: $error');
rethrow;
}
};
gentype.QueryIsEligibleForIntroOfferIOSHandler
get isEligibleForIntroOfferIOS => (groupId) async {
if (!_platform.isIOS || _platform.isMacOS) {
return false;
}
try {
final result = await _channel.invokeMethod<bool>(
'isEligibleForIntroOfferIOS',
{'productId': groupId},
);
return result ?? false;
} catch (error) {
debugPrint('Error checking intro offer eligibility: $error');
return false;
}
};
gentype.QuerySubscriptionStatusIOSHandler get subscriptionStatusIOS =>
(sku) async {
if (!_platform.isIOS || _platform.isMacOS) {
return <gentype.SubscriptionStatusIOS>[];
}
try {
final dynamic result = await _channel.invokeMethod(
'getSubscriptionStatus',
{'sku': sku},
);
if (result == null) {
return <gentype.SubscriptionStatusIOS>[];
}
List<dynamic> asList;
if (result is String) {
asList = json.decode(result) as List<dynamic>;
} else if (result is List) {
asList = result;
} else if (result is Map) {
asList = [result];
} else {
return <gentype.SubscriptionStatusIOS>[];
}
final statuses = <gentype.SubscriptionStatusIOS>[];
for (final entry in asList) {
if (entry is Map) {
final normalized = entry.map<String, dynamic>(
(key, value) => MapEntry(key.toString(), value),
);
statuses.add(gentype.SubscriptionStatusIOS.fromJson(normalized));
}
}
return statuses;
} catch (error) {
debugPrint('Error getting subscription status: $error');
return <gentype.SubscriptionStatusIOS>[];
}
};
gentype.MutationClearTransactionIOSHandler get clearTransactionIOS =>
() async {
if (!_platform.isIOS || _platform.isMacOS) {
return false;
}
try {
await _channel.invokeMethod('clearTransactionIOS');
return true;
} catch (error) {
debugPrint('Error clearing pending transactions: $error');
return false;
}
};
gentype.QueryGetPromotedProductIOSHandler get getPromotedProductIOS =>
() async {
if (!_platform.isIOS || _platform.isMacOS) {
return null;
}
try {
final dynamic result = await _channel.invokeMethod(
'getPromotedProductIOS',
);
if (result == null) {
return null;
}
if (result is Map) {
return gentype.ProductIOS.fromJson(
result.map<String, dynamic>(
(key, value) => MapEntry(key.toString(), value),
),
);
}
if (result is String) {
return null;
}
return null;
} catch (error) {
debugPrint('Error getting promoted product: $error');
return null;
}
};
/// Request purchase on promoted product (iOS only)
///
/// @deprecated Use `purchasePromoted` stream to receive the product ID when a
/// user taps a promoted product in the App Store, then call `requestPurchase()`
/// with the received SKU directly. In StoreKit 2, promoted products can be
/// purchased via the standard `requestPurchase()` flow.
///
/// Example:
/// ```dart
/// iap.purchasePromoted.listen((productId) async {
/// if (productId != null) {
/// await iap.requestPurchaseWithBuilder(
/// build: (builder) {
/// builder.ios.sku = productId;
/// builder.type = ProductQueryType.InApp;
/// },
/// );
/// }
/// });
/// ```
@Deprecated(
'Use purchasePromoted stream + requestPurchase() instead. '
'In StoreKit 2, promoted products are purchased via standard flow.',
)
gentype.MutationRequestPurchaseOnPromotedProductIOSHandler
get requestPurchaseOnPromotedProductIOS => () async {
if (!_platform.isIOS || _platform.isMacOS) {
return false;
}
try {
await _channel
.invokeMethod('requestPurchaseOnPromotedProductIOS');
return true;
} catch (error) {
debugPrint('Error requesting promoted product purchase: $error');
return false;
}
};
gentype.QueryGetAppTransactionIOSHandler get getAppTransactionIOS =>
() async {
if (!_platform.isIOS || _platform.isMacOS) {
return null;
}
try {
final result = await _channel.invokeMethod<Map<dynamic, dynamic>>(
'getAppTransaction',
);
if (result == null) {
return null;
}
final map = result.map<String, dynamic>(
(key, value) => MapEntry(key.toString(), value),
);
return gentype.AppTransaction.fromJson(map);
} catch (error) {
debugPrint('Error getting app transaction: $error');
return null;
}
};
/// iOS specific: Present code redemption sheet
gentype.MutationPresentCodeRedemptionSheetIOSHandler
get presentCodeRedemptionSheetIOS => () async {
if (!_platform.isIOS || _platform.isMacOS) {
throw PlatformException(
code: 'platform',
message:
'presentCodeRedemptionSheetIOS is only supported on iOS',
);
}
try {
await channel.invokeMethod('presentCodeRedemptionSheetIOS');
return true;
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'present code redemption sheet',
);
} catch (error) {
if (error is PurchaseError) rethrow;
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to present code redemption sheet: '
'${error.toString()}',
);
}
};
/// iOS specific: Show manage subscriptions
gentype.MutationShowManageSubscriptionsIOSHandler
get showManageSubscriptionsIOS => () async {
if (!_platform.isIOS || _platform.isMacOS) {
throw PlatformException(
code: 'platform',
message: 'showManageSubscriptionsIOS is only supported on iOS',
);
}
try {
await channel.invokeMethod('showManageSubscriptionsIOS');
return const <gentype.PurchaseIOS>[];
} on PlatformException catch (error) {
throw _purchaseErrorFromPlatformException(
error,
'show manage subscriptions',
);
} catch (error) {
if (error is PurchaseError) rethrow;
throw PurchaseError(
code: gentype.ErrorCode.ServiceError,
message: 'Failed to show manage subscriptions: '
'${error.toString()}',
);
}
};
// Original API methods (with deprecation annotations where needed)
gentype.QueryGetPendingTransactionsIOSHandler get getPendingTransactionsIOS =>
() async {
if (_platform.isIOS || _platform.isMacOS) {
final dynamic result = await _channel.invokeMethod(
'getPendingTransactionsIOS',
);
final purchases = extractPurchases(
result,
platformIsAndroid: _platform.isAndroid,
platformIsIOS: _platform.isIOS || _platform.isMacOS,
acknowledgedAndroidPurchaseTokens:
_acknowledgedAndroidPurchaseTokens,
);
return purchases.whereType<gentype.PurchaseIOS>().toList(
growable: false,
);
}
return const <gentype.PurchaseIOS>[];
};
gentype.MutationAcknowledgePurchaseAndroidHandler
get acknowledgePurchaseAndroid => (purchaseToken) async {
if (!_platform.isAndroid) {
throw PurchaseError(
code: gentype.ErrorCode.IapNotAvailable,
message:
'acknowledgePurchaseAndroid is only available on Android',
);
}
try {
final dynamic response = await _channel.invokeMethod(
'acknowledgePurchaseAndroid',
{'purchaseToken': purchaseToken},
);
parseAndLogAndroidResponse(
response,
successLog:
'[FlutterInappPurchase] Android: Purchase acknowledged successfully',
failureLog:
'[FlutterInappPurchase] Android: Failed to parse acknowledge response',
);
if (response is bool) {
return response;
}
if (response is String) {
final parsed = json.decode(response) as Map<String, dynamic>;
final code = parsed['responseCode'] as int? ?? 0;
final success = parsed['success'] as bool? ?? false;
return code == 0 || success;
}
if (response is Map) {
final parsed = response.map<String, dynamic>(
(key, value) => MapEntry(key.toString(), value),
);
final code = parsed['responseCode'] as int? ?? 0;
final success = parsed['success'] as bool? ?? false;
return code == 0 || success;
}
return true;
} catch (error) {
debugPrint('Error acknowledging purchase: $error');
return false;
}
};
gentype.MutationConsumePurchaseAndroidHandler get consumePurchaseAndroid =>
(purchaseToken) async {
if (!_platform.isAndroid) {
throw PurchaseError(
code: gentype.ErrorCode.IapNotAvailable,
message: 'consumePurchaseAndroid is only available on Android',
);
}
try {
final dynamic response = await _channel.invokeMethod(
'consumePurchaseAndroid',
{'purchaseToken': purchaseToken},
);
if (response is Map) {
final map = response.map<String, dynamic>(
(key, value) => MapEntry(key.toString(), value),
);
return map['success'] as bool? ?? true;
}
if (response is bool) {
return response;
}