Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix tests + formatting
  • Loading branch information
LouiseHsu committed Feb 7, 2024
commit 751b034c43d26e0aff06220a1960aa5952c594bb
Original file line number Diff line number Diff line change
Expand Up @@ -71,19 +71,20 @@ NS_ASSUME_NONNULL_BEGIN

+ (nullable SKErrorMessage *)convertSKErrorToPigeon:(NSError *)error;

+ (nullable SKProductsResponseMessage*)convertProductsResponseToPigeon:(nullable SKProductsResponse *)payment;
+ (nullable SKProductsResponseMessage *)convertProductsResponseToPigeon:
(nullable SKProductsResponse *)payment;

+ (nullable SKProductMessage*)convertProductToPigeon:(nullable SKProduct *)product
+ (nullable SKProductMessage *)convertProductToPigeon:(nullable SKProduct *)product
API_AVAILABLE(ios(12.2));

+ (nullable SKProductDiscountMessage*)convertProductDiscountToPigeon:(nullable SKProductDiscount *)productDiscount
API_AVAILABLE(ios(12.2));
+ (nullable SKProductDiscountMessage *)convertProductDiscountToPigeon:
(nullable SKProductDiscount *)productDiscount API_AVAILABLE(ios(12.2));

+ (nullable SKPriceLocaleMessage*)convertNSLocaleToPigeon:(nullable NSLocale *)locale
+ (nullable SKPriceLocaleMessage *)convertNSLocaleToPigeon:(nullable NSLocale *)locale
API_AVAILABLE(ios(12.2));

+ (nullable SKProductSubscriptionPeriodMessage*)convertSKProductSubscriptionPeriodToPigeon:(nullable SKProductSubscriptionPeriod *)period
API_AVAILABLE(ios(12.2));
+ (nullable SKProductSubscriptionPeriodMessage *)convertSKProductSubscriptionPeriodToPigeon:
(nullable SKProductSubscriptionPeriod *)period API_AVAILABLE(ios(12.2));
@end

NS_ASSUME_NONNULL_END
Original file line number Diff line number Diff line change
Expand Up @@ -376,9 +376,8 @@ + (nullable SKStorefrontMessage *)convertStorefrontToPigeon:(nullable SKStorefro
return msg;
}


+ (nullable SKProductSubscriptionPeriodMessage*)convertSKProductSubscriptionPeriodToPigeon:(nullable SKProductSubscriptionPeriod *)period
API_AVAILABLE(ios(12.2)) {
+ (nullable SKProductSubscriptionPeriodMessage *)convertSKProductSubscriptionPeriodToPigeon:
(nullable SKProductSubscriptionPeriod *)period API_AVAILABLE(ios(12.2)) {
if (!period) {
return nil;
}
Expand All @@ -399,13 +398,14 @@ + (nullable SKProductSubscriptionPeriodMessage*)convertSKProductSubscriptionPeri
break;
}

SKProductSubscriptionPeriodMessage *msg = [SKProductSubscriptionPeriodMessage makeWithNumberOfUnits:period.numberOfUnits unit:unit];
SKProductSubscriptionPeriodMessage *msg =
[SKProductSubscriptionPeriodMessage makeWithNumberOfUnits:period.numberOfUnits unit:unit];

return msg;
}

+ (nullable SKProductDiscountMessage*)convertProductDiscountToPigeon:(nullable SKProductDiscount *)productDiscount
API_AVAILABLE(ios(12.2)) {
+ (nullable SKProductDiscountMessage *)convertProductDiscountToPigeon:
(nullable SKProductDiscount *)productDiscount API_AVAILABLE(ios(12.2)) {
if (!productDiscount) {
return nil;
}
Expand Down Expand Up @@ -433,64 +433,68 @@ + (nullable SKProductDiscountMessage*)convertProductDiscountToPigeon:(nullable S
break;
}

SKProductDiscountMessage *msg = [SKProductDiscountMessage makeWithPrice:productDiscount.price.description
priceLocale:[self convertNSLocaleToPigeon:productDiscount.priceLocale]
numberOfPeriods:productDiscount.numberOfPeriods
paymentMode:paymentMode
subscriptionPeriod:[self convertSKProductSubscriptionPeriodToPigeon:productDiscount.subscriptionPeriod]
identifier:productDiscount.identifier
type:type];
SKProductDiscountMessage *msg = [SKProductDiscountMessage
makeWithPrice:productDiscount.price.description
priceLocale:[self convertNSLocaleToPigeon:productDiscount.priceLocale]
numberOfPeriods:productDiscount.numberOfPeriods
paymentMode:paymentMode
subscriptionPeriod:[self convertSKProductSubscriptionPeriodToPigeon:productDiscount
.subscriptionPeriod]
identifier:productDiscount.identifier
type:type];

return msg;
}

+ (nullable SKPriceLocaleMessage*)convertNSLocaleToPigeon:(nullable NSLocale *)locale
API_AVAILABLE(ios(12.2)) {
+ (nullable SKPriceLocaleMessage *)convertNSLocaleToPigeon:(nullable NSLocale *)locale
API_AVAILABLE(ios(12.2)) {
if (!locale) {
return nil;
}
SKPriceLocaleMessage *msg = [SKPriceLocaleMessage makeWithCurrencySymbol:locale.currencySymbol
SKPriceLocaleMessage *msg = [SKPriceLocaleMessage makeWithCurrencySymbol:locale.currencySymbol
currencyCode:locale.currencyCode
countryCode:locale.countryCode];

return msg;
}

+ (nullable SKProductMessage*)convertProductToPigeon:(nullable SKProduct *)product
API_AVAILABLE(ios(12.2)) {
+ (nullable SKProductMessage *)convertProductToPigeon:(nullable SKProduct *)product
API_AVAILABLE(ios(12.2)) {
NSArray<SKProductDiscount *> *skProductDiscounts = product.discounts;
NSMutableArray<SKProductDiscountMessage *> *pigeonProductDiscounts = [[NSMutableArray alloc] init];
NSMutableArray<SKProductDiscountMessage *> *pigeonProductDiscounts =
[[NSMutableArray alloc] init];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: you know the size here. It's more efficient to create the array of the proper size.

Suggested change
[[NSMutableArray alloc] init];
[NSMutableArray arrayWithCapacity: skProductDiscounts.count];


for (SKProductDiscount *productDiscount in skProductDiscounts) {
[pigeonProductDiscounts addObject:[self convertProductDiscountToPigeon:productDiscount]];
};

SKProductMessage *msg =
[SKProductMessage makeWithProductIdentifier:product.productIdentifier
localizedTitle:product.localizedTitle
localizedDescription:product.localizedDescription
priceLocale:[self convertNSLocaleToPigeon:product.priceLocale]
subscriptionGroupIdentifier:product.subscriptionGroupIdentifier
price:product.price.description
subscriptionPeriod:[self convertSKProductSubscriptionPeriodToPigeon:product.subscriptionPeriod]
introductoryPrice:[self convertProductDiscountToPigeon:product.introductoryPrice]
discounts:pigeonProductDiscounts];
SKProductMessage *msg = [SKProductMessage
makeWithProductIdentifier:product.productIdentifier
localizedTitle:product.localizedTitle
localizedDescription:product.localizedDescription
priceLocale:[self convertNSLocaleToPigeon:product.priceLocale]
subscriptionGroupIdentifier:product.subscriptionGroupIdentifier
price:product.price.description
subscriptionPeriod:
[self convertSKProductSubscriptionPeriodToPigeon:product.subscriptionPeriod]
introductoryPrice:[self convertProductDiscountToPigeon:product.introductoryPrice]
discounts:pigeonProductDiscounts];

return msg;
}

+ (nullable SKProductsResponseMessage*)convertProductsResponseToPigeon:(nullable SKProductsResponse *)productsResponse
API_AVAILABLE(ios(12.2)) {

+ (nullable SKProductsResponseMessage *)convertProductsResponseToPigeon:
(nullable SKProductsResponse *)productsResponse API_AVAILABLE(ios(12.2)) {
NSArray<SKProduct *> *skProducts = productsResponse.products;
NSMutableArray<SKProductMessage *> *pigeonProducts = [[NSMutableArray alloc] init];
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: same here

Suggested change
NSMutableArray<SKProductMessage *> *pigeonProducts = [[NSMutableArray alloc] init];
NSMutableArray<SKProductMessage *> *pigeonProducts = [NSMutableArray arrayWithCapacity: skProducts.count];


for (SKProduct *product in skProducts) {
[pigeonProducts addObject:[self convertProductToPigeon:product]];
};

SKProductsResponseMessage *msg = [SKProductsResponseMessage makeWithProducts:pigeonProducts
invalidProductIdentifiers:productsResponse.invalidProductIdentifiers];
SKProductsResponseMessage *msg =
[SKProductsResponseMessage makeWithProducts:pigeonProducts
invalidProductIdentifiers:productsResponse.invalidProductIdentifiers];
return msg;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ - (nullable SKStorefrontMessage *)storefrontWithError:(FlutterError *_Nullable *
return [FIAObjectTranslator convertStorefrontToPigeon:storefront];
}

- (void)startProductRequestProductIdentifiers:(NSArray<NSString *> *)productIdentifiers completion:(void (^)(SKProductsResponseMessage *_Nullable, FlutterError *_Nullable))completion {

- (void)startProductRequestProductIdentifiers:(NSArray<NSString *> *)productIdentifiers
completion:(void (^)(SKProductsResponseMessage *_Nullable,
FlutterError *_Nullable))completion {
SKProductsRequest *request =
[self getProductRequestWithIdentifiers:[NSSet setWithArray:productIdentifiers]];
FIAPRequestHandler *handler = [[FIAPRequestHandler alloc] initWithRequest:request];
Expand All @@ -149,14 +150,14 @@ - (void)startProductRequestProductIdentifiers:(NSArray<NSString *> *)productIden
FlutterError *error = nil;
if (startProductRequestError != nil) {
error = [FlutterError errorWithCode:@"storekit_getproductrequest_platform_error"
message:startProductRequestError.localizedDescription
details:startProductRequestError.description];
message:startProductRequestError.localizedDescription
details:startProductRequestError.description];
}
if (!response) {
error = [FlutterError errorWithCode:@"storekit_platform_no_response"
message:@"Failed to get SKProductResponse in startRequest "
@"call. Error occured on iOS platform"
details:productIdentifiers];
message:@"Failed to get SKProductResponse in startRequest "
@"call. Error occured on iOS platform"
details:productIdentifiers];
}
for (SKProduct *product in response.products) {
[self.productsCache setObject:product forKey:product.productIdentifier];
Expand Down Expand Up @@ -224,7 +225,8 @@ - (void)addPaymentPaymentMap:(nonnull NSDictionary *)paymentMap
}
}

- (void)finishTransactionFinishMap:(nonnull NSDictionary<NSString *,NSString *> *)finishMap error:(FlutterError * _Nullable __autoreleasing * _Nonnull)error {
- (void)finishTransactionFinishMap:(nonnull NSDictionary<NSString *, NSString *> *)finishMap
error:(FlutterError *_Nullable __autoreleasing *_Nonnull)error {
NSString *transactionIdentifier = [finishMap objectForKey:@"transactionIdentifier"];
NSString *productIdentifier = [finishMap objectForKey:@"productIdentifier"];

Expand All @@ -243,19 +245,22 @@ - (void)finishTransactionFinishMap:(nonnull NSDictionary<NSString *,NSString *>
[self.paymentQueueHandler finishTransaction:transaction];
} @catch (NSException *e) {
*error = [FlutterError errorWithCode:@"storekit_finish_transaction_exception"
message:e.name
details:e.description];
message:e.name
details:e.description];
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

where is this error used?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all generated pigeon functions have like an extra "error" param, I think it gets passed back to the dart side automatically

return;
}
}
}
}

- (void)restoreTransactionsApplicationUserName:(nullable NSString *)applicationUserName error:(FlutterError * _Nullable __autoreleasing * _Nonnull)error {
- (void)restoreTransactionsApplicationUserName:(nullable NSString *)applicationUserName
error:(FlutterError *_Nullable __autoreleasing *_Nonnull)
error {
[self.paymentQueueHandler restoreTransactions:applicationUserName];
}

- (void)presentCodeRedemptionSheetWithError:(FlutterError * _Nullable __autoreleasing * _Nonnull)error {
- (void)presentCodeRedemptionSheetWithError:
(FlutterError *_Nullable __autoreleasing *_Nonnull)error {
#if TARGET_OS_IOS
[self.paymentQueueHandler presentCodeRedemptionSheet];
#endif
Expand Down
Loading