passepartout-apple/Passepartout/App/InApp/ProductManager.swift

324 lines
9.7 KiB
Swift
Raw Normal View History

//
// ProductManager.swift
// Passepartout
//
// Created by Davide De Rosa on 4/6/19.
2022-02-04 11:44:30 +00:00
// Copyright (c) 2022 Davide De Rosa. All rights reserved.
//
// https://github.com/passepartoutvpn
//
// This file is part of Passepartout.
//
// Passepartout is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Passepartout is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Passepartout. If not, see <http://www.gnu.org/licenses/>.
//
import Foundation
2022-06-23 21:31:01 +00:00
import PassepartoutLibrary
import StoreKit
import Kvitto
2022-04-12 13:09:14 +00:00
enum ProductError: Error {
case uneligible
2021-01-07 22:37:32 +00:00
case beta
}
2022-04-12 13:09:14 +00:00
class ProductManager: NSObject, ObservableObject {
enum AppType: Int {
case freemium = 0
case beta = 1
2022-04-12 13:09:14 +00:00
case fullVersion = 2
}
let appType: AppType
let buildProducts: BuildProducts
2022-04-12 13:09:14 +00:00
@Published private(set) var isRefreshingProducts = false
2022-04-12 13:09:14 +00:00
@Published private(set) var products: [SKProduct]
//
private let inApp: InApp<LocalProduct>
private var purchasedAppBuild: Int?
private var purchasedFeatures: Set<LocalProduct>
private var purchaseDates: [LocalProduct: Date]
private var cancelledPurchases: Set<LocalProduct>
private var cancelledPurchasesSnapshot: Set<LocalProduct>
private var refreshRequest: SKReceiptRefreshRequest?
init(appType: AppType, buildProducts: BuildProducts) {
self.appType = appType
self.buildProducts = buildProducts
2022-04-12 13:09:14 +00:00
products = []
inApp = InApp()
purchasedAppBuild = nil
purchasedFeatures = []
purchaseDates = [:]
cancelledPurchases = []
cancelledPurchasesSnapshot = []
super.init()
reloadReceipt()
SKPaymentQueue.default().add(self)
2022-04-12 13:09:14 +00:00
refreshProducts()
}
deinit {
SKPaymentQueue.default().remove(self)
}
func canMakePayments() -> Bool {
SKPaymentQueue.canMakePayments()
}
2022-04-12 13:09:14 +00:00
func refreshProducts() {
let ids = LocalProduct.all
guard !ids.isEmpty else {
return
}
guard products.isEmpty else {
pp_log.debug("In-app products already available, not refreshing")
return
}
2022-04-12 13:09:14 +00:00
isRefreshingProducts = true
inApp.requestProducts(withIdentifiers: ids, completionHandler: { _ in
pp_log.debug("In-app products: \(self.inApp.products.map { $0.productIdentifier })")
2022-04-12 13:09:14 +00:00
self.products = self.inApp.products
self.isRefreshingProducts = false
}, failureHandler: {
2022-04-12 13:09:14 +00:00
pp_log.warning("Unable to list products: \($0)")
self.isRefreshingProducts = false
})
}
2022-04-12 13:09:14 +00:00
func product(withIdentifier identifier: LocalProduct) -> SKProduct? {
2022-09-04 18:09:31 +00:00
inApp.product(withIdentifier: identifier)
}
2022-04-12 13:09:14 +00:00
func featureProducts(including: [LocalProduct]) -> [SKProduct] {
2022-09-04 18:09:31 +00:00
inApp.products.filter {
guard let p = LocalProduct(rawValue: $0.productIdentifier) else {
return false
}
guard including.contains(p) else {
return false
}
guard p.isFeature else {
return false
}
return true
}
}
2022-04-12 13:09:14 +00:00
func featureProducts(excluding: [LocalProduct]) -> [SKProduct] {
2022-09-04 18:09:31 +00:00
inApp.products.filter {
guard let p = LocalProduct(rawValue: $0.productIdentifier) else {
return false
}
guard !excluding.contains(p) else {
return false
}
guard p.isFeature else {
return false
}
return true
}
}
2022-04-12 13:09:14 +00:00
func purchase(_ product: SKProduct, completionHandler: @escaping (Result<InAppPurchaseResult, Error>) -> Void) {
inApp.purchase(product: product) { result in
if case .success = result {
self.reloadReceipt()
}
DispatchQueue.main.async {
completionHandler(result)
}
}
}
2022-04-12 13:09:14 +00:00
func restorePurchases(completionHandler: @escaping (Error?) -> Void) {
inApp.restorePurchases { (finished, _, error) in
guard finished else {
return
}
DispatchQueue.main.async {
completionHandler(error)
}
}
}
// MARK: In-app eligibility
2021-02-07 09:43:54 +00:00
private func isCurrentPlatformVersion() -> Bool {
2022-05-16 09:18:49 +00:00
purchasedFeatures.contains(isMac ? .fullVersion_macOS : .fullVersion_iOS)
2021-02-07 09:43:54 +00:00
}
private func isFullVersion() -> Bool {
if appType == .fullVersion {
return true
}
2021-02-07 09:43:54 +00:00
if isCurrentPlatformVersion() {
return true
}
return purchasedFeatures.contains(.fullVersion)
}
2022-04-12 13:09:14 +00:00
func isEligible(forFeature feature: LocalProduct) -> Bool {
if let purchasedAppBuild = purchasedAppBuild {
if feature == .networkSettings && buildProducts.hasProduct(.networkSettings, atBuild: purchasedAppBuild) {
return true
}
}
2022-05-16 09:18:49 +00:00
if isMac {
return isFullVersion()
} else {
return isFullVersion() || purchasedFeatures.contains(feature)
}
}
2022-04-12 13:09:14 +00:00
func isEligible(forProvider providerName: ProviderName) -> Bool {
2022-10-04 20:24:06 +00:00
guard providerName != .oeck else {
return true
}
return isEligible(forFeature: providerName.product)
}
2022-04-12 13:09:14 +00:00
func isEligibleForFeedback() -> Bool {
2022-09-04 18:09:31 +00:00
appType == .beta || !purchasedFeatures.isEmpty
}
2022-04-12 13:09:14 +00:00
func hasPurchased(_ product: LocalProduct) -> Bool {
2022-09-04 18:09:31 +00:00
purchasedFeatures.contains(product)
}
2022-04-12 13:09:14 +00:00
func isCancelledPurchase(_ product: LocalProduct) -> Bool {
2022-09-04 18:09:31 +00:00
cancelledPurchases.contains(product)
}
2022-04-12 13:09:14 +00:00
func purchaseDate(forProduct product: LocalProduct) -> Date? {
2022-09-04 18:09:31 +00:00
purchaseDates[product]
}
2022-04-12 13:09:14 +00:00
func reloadReceipt(andNotify: Bool = true) {
guard let url = Bundle.main.appStoreReceiptURL else {
2022-04-12 13:09:14 +00:00
pp_log.warning("No App Store receipt found!")
return
}
guard let receipt = Receipt(contentsOfURL: url) else {
2022-04-12 13:09:14 +00:00
pp_log.error("Could not parse App Store receipt!")
return
}
if let originalAppVersion = receipt.originalAppVersion, let buildNumber = Int(originalAppVersion) {
purchasedAppBuild = buildNumber
}
purchasedFeatures.removeAll()
cancelledPurchases.removeAll()
if let buildNumber = purchasedAppBuild {
2022-04-12 13:09:14 +00:00
pp_log.debug("Original purchased build: \(buildNumber)")
// assume some purchases by build number
buildProducts.products(atBuild: buildNumber).forEach {
purchasedFeatures.insert($0)
}
}
if let iapReceipts = receipt.inAppPurchaseReceipts {
purchaseDates.removeAll()
2022-04-12 13:09:14 +00:00
pp_log.debug("In-app receipts:")
iapReceipts.forEach {
guard let pid = $0.productIdentifier, let product = LocalProduct(rawValue: pid) else {
return
}
if let cancellationDate = $0.cancellationDate {
2022-04-12 13:09:14 +00:00
pp_log.debug("\t\(pid) [cancelled on: \(cancellationDate)]")
cancelledPurchases.insert(product)
return
}
if let purchaseDate = $0.originalPurchaseDate {
2022-04-12 13:09:14 +00:00
pp_log.debug("\t\(pid) [purchased on: \(purchaseDate)]")
purchaseDates[product] = purchaseDate
}
purchasedFeatures.insert(product)
}
}
2022-04-12 13:09:14 +00:00
pp_log.info("Purchased features: \(purchasedFeatures)")
if andNotify {
objectWillChange.send()
}
}
}
extension ProductManager: SKPaymentTransactionObserver {
2022-04-12 13:09:14 +00:00
func paymentQueue(_ queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) {
DispatchQueue.main.async { [weak self] in
self?.reloadReceipt()
}
}
}
extension ProductManager {
func snapshotRefunds() {
cancelledPurchasesSnapshot = cancelledPurchases
}
func hasNewRefunds() -> Bool {
reloadReceipt(andNotify: false)
guard cancelledPurchases != cancelledPurchasesSnapshot else {
pp_log.debug("No purchase was refunded")
return false
}
let isEligibleForFullVersion = isFullVersion()
let hasCancelledFullVersion: Bool
let hasCancelledTrustedNetworks: Bool
2022-05-16 09:18:49 +00:00
if isMac {
hasCancelledFullVersion = !isEligibleForFullVersion && (isCancelledPurchase(.fullVersion) || isCancelledPurchase(.fullVersion_macOS))
hasCancelledTrustedNetworks = false
} else {
hasCancelledFullVersion = !isEligibleForFullVersion && (isCancelledPurchase(.fullVersion) || isCancelledPurchase(.fullVersion_iOS))
hasCancelledTrustedNetworks = !isEligibleForFullVersion && isCancelledPurchase(.trustedNetworks)
}
// review features and potentially revert them if they were used (Siri is handled in AppDelegate)
2022-04-12 13:09:14 +00:00
return hasCancelledFullVersion || hasCancelledTrustedNetworks
}
}
2022-05-16 09:18:49 +00:00
extension ProductManager {
private var isMac: Bool {
#if targetEnvironment(macCatalyst)
true
#else
false
#endif
}
}