// 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/api/electron_api_in_app_purchase.h" #include #include #include #include "shell/common/gin_helper/dictionary.h" #include "shell/common/gin_helper/object_template_builder.h" #include "shell/common/gin_helper/promise.h" #include "shell/common/node_includes.h" namespace gin { template <> struct Converter { static v8::Local ToV8( v8::Isolate* isolate, const in_app_purchase::PaymentDiscount& paymentDiscount) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("identifier", paymentDiscount.identifier); dict.Set("keyIdentifier", paymentDiscount.keyIdentifier); dict.Set("nonce", paymentDiscount.nonce); dict.Set("signature", paymentDiscount.signature); dict.Set("timestamp", paymentDiscount.timestamp); return dict.GetHandle(); } }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const in_app_purchase::Payment& payment) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("productIdentifier", payment.productIdentifier); dict.Set("quantity", payment.quantity); dict.Set("applicationUsername", payment.applicationUsername); if (payment.paymentDiscount.has_value()) { dict.Set("paymentDiscount", payment.paymentDiscount.value()); } return dict.GetHandle(); } }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const in_app_purchase::Transaction& val) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("transactionIdentifier", val.transactionIdentifier); dict.Set("transactionDate", val.transactionDate); dict.Set("originalTransactionIdentifier", val.originalTransactionIdentifier); dict.Set("transactionState", val.transactionState); dict.Set("errorCode", val.errorCode); dict.Set("errorMessage", val.errorMessage); dict.Set("payment", val.payment); return dict.GetHandle(); } }; template <> struct Converter { static v8::Local ToV8( v8::Isolate* isolate, const in_app_purchase::ProductSubscriptionPeriod& productSubscriptionPeriod) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("numberOfUnits", productSubscriptionPeriod.numberOfUnits); dict.Set("unit", productSubscriptionPeriod.unit); return dict.GetHandle(); } }; template <> struct Converter { static v8::Local ToV8( v8::Isolate* isolate, const in_app_purchase::ProductDiscount& productDiscount) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("identifier", productDiscount.identifier); dict.Set("type", productDiscount.type); dict.Set("price", productDiscount.price); dict.Set("priceLocale", productDiscount.priceLocale); dict.Set("paymentMode", productDiscount.paymentMode); dict.Set("numberOfPeriods", productDiscount.numberOfPeriods); if (productDiscount.subscriptionPeriod.has_value()) { dict.Set("subscriptionPeriod", productDiscount.subscriptionPeriod.value()); } return dict.GetHandle(); } }; template <> struct Converter { static v8::Local ToV8(v8::Isolate* isolate, const in_app_purchase::Product& val) { auto dict = gin_helper::Dictionary::CreateEmpty(isolate); dict.Set("productIdentifier", val.productIdentifier); dict.Set("localizedDescription", val.localizedDescription); dict.Set("localizedTitle", val.localizedTitle); // Pricing Information dict.Set("price", val.price); dict.Set("formattedPrice", val.formattedPrice); dict.Set("currencyCode", val.currencyCode); if (val.introductoryPrice.has_value()) { dict.Set("introductoryPrice", val.introductoryPrice.value()); } dict.Set("discounts", val.discounts); dict.Set("subscriptionGroupIdentifier", val.subscriptionGroupIdentifier); if (val.subscriptionPeriod.has_value()) { dict.Set("subscriptionPeriod", val.subscriptionPeriod.value()); } // Downloadable Content Information dict.Set("isDownloadable", val.isDownloadable); dict.Set("downloadContentVersion", val.downloadContentVersion); dict.Set("downloadContentLengths", val.downloadContentLengths); return dict.GetHandle(); } }; } // namespace gin namespace electron::api { gin::WrapperInfo InAppPurchase::kWrapperInfo = {gin::kEmbedderNativeGin}; #if BUILDFLAG(IS_MAC) // static gin::Handle InAppPurchase::Create(v8::Isolate* isolate) { return gin::CreateHandle(isolate, new InAppPurchase()); } gin::ObjectTemplateBuilder InAppPurchase::GetObjectTemplateBuilder( v8::Isolate* isolate) { return gin_helper::EventEmitterMixin::GetObjectTemplateBuilder( isolate) .SetMethod("canMakePayments", &in_app_purchase::CanMakePayments) .SetMethod("restoreCompletedTransactions", &in_app_purchase::RestoreCompletedTransactions) .SetMethod("getReceiptURL", &in_app_purchase::GetReceiptURL) .SetMethod("purchaseProduct", &InAppPurchase::PurchaseProduct) .SetMethod("finishAllTransactions", &in_app_purchase::FinishAllTransactions) .SetMethod("finishTransactionByDate", &in_app_purchase::FinishTransactionByDate) .SetMethod("getProducts", &InAppPurchase::GetProducts); } const char* InAppPurchase::GetTypeName() { return "InAppPurchase"; } InAppPurchase::InAppPurchase() = default; InAppPurchase::~InAppPurchase() = default; v8::Local InAppPurchase::PurchaseProduct( const std::string& product_id, gin::Arguments* args) { v8::Isolate* isolate = args->isolate(); gin_helper::Promise promise(isolate); v8::Local handle = promise.GetHandle(); int quantity = 1; args->GetNext(&quantity); std::string username = ""; args->GetNext(&username); in_app_purchase::PurchaseProduct( product_id, quantity, username, base::BindOnce(gin_helper::Promise::ResolvePromise, std::move(promise))); return handle; } v8::Local InAppPurchase::GetProducts( const std::vector& productIDs, gin::Arguments* args) { v8::Isolate* isolate = args->isolate(); gin_helper::Promise> promise(isolate); v8::Local handle = promise.GetHandle(); in_app_purchase::GetProducts( productIDs, base::BindOnce(gin_helper::Promise< std::vector>::ResolvePromise, std::move(promise))); return handle; } void InAppPurchase::OnTransactionsUpdated( const std::vector& transactions) { Emit("transactions-updated", transactions); } #endif } // namespace electron::api namespace { using electron::api::InAppPurchase; void Initialize(v8::Local exports, v8::Local unused, v8::Local context, void* priv) { #if BUILDFLAG(IS_MAC) v8::Isolate* isolate = context->GetIsolate(); gin_helper::Dictionary dict(isolate, exports); dict.Set("inAppPurchase", InAppPurchase::Create(isolate)); #endif } } // namespace NODE_LINKED_BINDING_CONTEXT_AWARE(electron_browser_in_app_purchase, Initialize)