mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
297 lines
9.1 KiB
Plaintext
297 lines
9.1 KiB
Plaintext
// Copyright (c) 2017 Amaplex Software, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/mac/in_app_purchase_product.h"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "base/functional/bind.h"
|
|
#include "base/strings/sys_string_conversions.h"
|
|
#include "content/public/browser/browser_task_traits.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#import <StoreKit/StoreKit.h>
|
|
|
|
// ============================================================================
|
|
// InAppPurchaseProduct
|
|
// ============================================================================
|
|
|
|
// --------------------------------- Interface --------------------------------
|
|
|
|
@interface InAppPurchaseProduct : NSObject <SKProductsRequestDelegate> {
|
|
@private
|
|
in_app_purchase::InAppPurchaseProductsCallback callback_;
|
|
InAppPurchaseProduct __strong* self_;
|
|
}
|
|
|
|
- (id)initWithCallback:(in_app_purchase::InAppPurchaseProductsCallback)callback;
|
|
|
|
@end
|
|
|
|
// ------------------------------- Implementation -----------------------------
|
|
|
|
@implementation InAppPurchaseProduct
|
|
|
|
/**
|
|
* Init with a callback.
|
|
*
|
|
* @param callback - The callback that will be called to return the products.
|
|
*/
|
|
- (id)initWithCallback:
|
|
(in_app_purchase::InAppPurchaseProductsCallback)callback {
|
|
if ((self = [super init])) {
|
|
callback_ = std::move(callback);
|
|
self_ = self;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
/**
|
|
* Return products.
|
|
*
|
|
* @param productIDs - The products' id to fetch.
|
|
*/
|
|
- (void)getProducts:(NSSet*)productIDs {
|
|
SKProductsRequest* productsRequest;
|
|
productsRequest =
|
|
[[SKProductsRequest alloc] initWithProductIdentifiers:productIDs];
|
|
|
|
productsRequest.delegate = self;
|
|
[productsRequest start];
|
|
}
|
|
|
|
/**
|
|
* @see SKProductsRequestDelegate
|
|
*/
|
|
- (void)productsRequest:(SKProductsRequest*)request
|
|
didReceiveResponse:(SKProductsResponse*)response {
|
|
// Get the products.
|
|
NSArray* products = response.products;
|
|
|
|
// Convert the products.
|
|
std::vector<in_app_purchase::Product> converted;
|
|
converted.reserve([products count]);
|
|
|
|
for (SKProduct* product in products) {
|
|
converted.push_back([self skProductToStruct:product]);
|
|
}
|
|
|
|
// Send the callback to the browser thread.
|
|
content::GetUIThreadTaskRunner({})->PostTask(
|
|
FROM_HERE, base::BindOnce(std::move(callback_), converted));
|
|
self_ = nil;
|
|
}
|
|
|
|
/**
|
|
* Format local price.
|
|
*
|
|
* @param price - The price to format.
|
|
* @param priceLocal - The local format.
|
|
*/
|
|
- (NSString*)formatPrice:(NSDecimalNumber*)price
|
|
withLocal:(NSLocale*)priceLocal {
|
|
NSNumberFormatter* numberFormatter = [[NSNumberFormatter alloc] init];
|
|
|
|
[numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
|
|
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
|
|
[numberFormatter setLocale:priceLocal];
|
|
|
|
return [numberFormatter stringFromNumber:price];
|
|
}
|
|
|
|
/**
|
|
* Convert a SKProductSubscriptionPeriod object to a ProductSubscriptionPeriod
|
|
* structure.
|
|
*
|
|
* @param productProductSubscriptionPeriod - The SKProductSubscriptionPeriod
|
|
* object to convert.
|
|
*/
|
|
- (in_app_purchase::ProductSubscriptionPeriod)
|
|
skProductSubscriptionPeriodToStruct:
|
|
(SKProductSubscriptionPeriod*)productSubscriptionPeriod {
|
|
in_app_purchase::ProductSubscriptionPeriod productSubscriptionPeriodStruct;
|
|
|
|
productSubscriptionPeriodStruct.numberOfUnits =
|
|
(int)productSubscriptionPeriod.numberOfUnits;
|
|
|
|
if (productSubscriptionPeriod.unit == SKProductPeriodUnitDay) {
|
|
productSubscriptionPeriodStruct.unit = "day";
|
|
} else if (productSubscriptionPeriod.unit == SKProductPeriodUnitWeek) {
|
|
productSubscriptionPeriodStruct.unit = "week";
|
|
} else if (productSubscriptionPeriod.unit == SKProductPeriodUnitMonth) {
|
|
productSubscriptionPeriodStruct.unit = "month";
|
|
} else if (productSubscriptionPeriod.unit == SKProductPeriodUnitYear) {
|
|
productSubscriptionPeriodStruct.unit = "year";
|
|
}
|
|
|
|
return productSubscriptionPeriodStruct;
|
|
}
|
|
|
|
/**
|
|
* Convert a SKProductDiscount object to a ProductDiscount structure.
|
|
*
|
|
* @param productDiscount - The SKProductDiscount object to convert.
|
|
*/
|
|
- (in_app_purchase::ProductDiscount)skProductDiscountToStruct:
|
|
(SKProductDiscount*)productDiscount {
|
|
in_app_purchase::ProductDiscount productDiscountStruct;
|
|
|
|
if (productDiscount.paymentMode == SKProductDiscountPaymentModePayAsYouGo) {
|
|
productDiscountStruct.paymentMode = "payAsYouGo";
|
|
} else if (productDiscount.paymentMode ==
|
|
SKProductDiscountPaymentModePayUpFront) {
|
|
productDiscountStruct.paymentMode = "payUpFront";
|
|
} else if (productDiscount.paymentMode ==
|
|
SKProductDiscountPaymentModeFreeTrial) {
|
|
productDiscountStruct.paymentMode = "freeTrial";
|
|
}
|
|
|
|
productDiscountStruct.numberOfPeriods = (int)productDiscount.numberOfPeriods;
|
|
|
|
if (productDiscount.priceLocale != nil) {
|
|
productDiscountStruct.priceLocale =
|
|
[[self formatPrice:productDiscount.price
|
|
withLocal:productDiscount.priceLocale] UTF8String];
|
|
}
|
|
|
|
if (productDiscount.subscriptionPeriod != nil) {
|
|
productDiscountStruct.subscriptionPeriod = [self
|
|
skProductSubscriptionPeriodToStruct:productDiscount.subscriptionPeriod];
|
|
}
|
|
|
|
productDiscountStruct.type = (int)productDiscount.type;
|
|
if (productDiscount.identifier != nil) {
|
|
productDiscountStruct.identifier = [productDiscount.identifier UTF8String];
|
|
}
|
|
productDiscountStruct.price = [productDiscount.price doubleValue];
|
|
|
|
return productDiscountStruct;
|
|
}
|
|
|
|
/**
|
|
* Convert a skProduct object to Product structure.
|
|
*
|
|
* @param product - The SKProduct object to convert.
|
|
*/
|
|
- (in_app_purchase::Product)skProductToStruct:(SKProduct*)product {
|
|
in_app_purchase::Product productStruct;
|
|
|
|
// Product Identifier
|
|
if (product.productIdentifier != nil) {
|
|
productStruct.productIdentifier = [product.productIdentifier UTF8String];
|
|
}
|
|
|
|
// Product Attributes
|
|
if (product.localizedDescription != nil) {
|
|
productStruct.localizedDescription =
|
|
[product.localizedDescription UTF8String];
|
|
}
|
|
if (product.localizedTitle != nil) {
|
|
productStruct.localizedTitle = [product.localizedTitle UTF8String];
|
|
}
|
|
|
|
// Pricing Information
|
|
if (product.price != nil) {
|
|
productStruct.price = [product.price doubleValue];
|
|
|
|
if (product.priceLocale != nil) {
|
|
productStruct.formattedPrice =
|
|
[[self formatPrice:product.price
|
|
withLocal:product.priceLocale] UTF8String];
|
|
|
|
// Currency Information
|
|
if (product.priceLocale.currencyCode != nil) {
|
|
productStruct.currencyCode =
|
|
[product.priceLocale.currencyCode UTF8String];
|
|
}
|
|
}
|
|
}
|
|
|
|
if (product.introductoryPrice != nil) {
|
|
productStruct.introductoryPrice =
|
|
[self skProductDiscountToStruct:product.introductoryPrice];
|
|
}
|
|
if (product.subscriptionPeriod != nil) {
|
|
productStruct.subscriptionPeriod =
|
|
[self skProductSubscriptionPeriodToStruct:product.subscriptionPeriod];
|
|
}
|
|
|
|
if (product.subscriptionGroupIdentifier != nil) {
|
|
productStruct.subscriptionGroupIdentifier =
|
|
[product.subscriptionGroupIdentifier UTF8String];
|
|
}
|
|
|
|
if (product.discounts != nil) {
|
|
productStruct.discounts.reserve([product.discounts count]);
|
|
|
|
for (SKProductDiscount* discount in product.discounts) {
|
|
productStruct.discounts.push_back(
|
|
[self skProductDiscountToStruct:discount]);
|
|
}
|
|
}
|
|
|
|
// Downloadable Content Information
|
|
productStruct.isDownloadable = [product isDownloadable];
|
|
|
|
if (product.downloadContentVersion != nil) {
|
|
productStruct.downloadContentVersion =
|
|
[product.downloadContentVersion UTF8String];
|
|
}
|
|
|
|
if (product.downloadContentLengths != nil) {
|
|
productStruct.downloadContentLengths.reserve(
|
|
[product.downloadContentLengths count]);
|
|
|
|
for (NSNumber* contentLength in product.downloadContentLengths) {
|
|
productStruct.downloadContentLengths.push_back(
|
|
[contentLength longLongValue]);
|
|
}
|
|
}
|
|
|
|
return productStruct;
|
|
}
|
|
|
|
@end
|
|
|
|
// ============================================================================
|
|
// C++ in_app_purchase
|
|
// ============================================================================
|
|
|
|
namespace in_app_purchase {
|
|
|
|
ProductSubscriptionPeriod::ProductSubscriptionPeriod(
|
|
const ProductSubscriptionPeriod&) = default;
|
|
ProductSubscriptionPeriod::ProductSubscriptionPeriod() = default;
|
|
ProductSubscriptionPeriod::~ProductSubscriptionPeriod() = default;
|
|
|
|
ProductDiscount::ProductDiscount(const ProductDiscount&) = default;
|
|
ProductDiscount::ProductDiscount() = default;
|
|
ProductDiscount::~ProductDiscount() = default;
|
|
|
|
Product::Product() = default;
|
|
Product::Product(const Product&) = default;
|
|
Product::~Product() = default;
|
|
|
|
void GetProducts(const std::vector<std::string>& productIDs,
|
|
InAppPurchaseProductsCallback callback) {
|
|
auto* iapProduct =
|
|
[[InAppPurchaseProduct alloc] initWithCallback:std::move(callback)];
|
|
|
|
// Convert the products' id to NSSet.
|
|
NSMutableSet* productsIDSet =
|
|
[NSMutableSet setWithCapacity:productIDs.size()];
|
|
|
|
for (auto& productID : productIDs) {
|
|
[productsIDSet addObject:base::SysUTF8ToNSString(productID)];
|
|
}
|
|
|
|
// Fetch the products.
|
|
[iapProduct getProducts:productsIDSet];
|
|
}
|
|
|
|
} // namespace in_app_purchase
|