passepartout-apple/Passepartout/Library/Sources/AppLibrary/IAP/KvittoReceiptReader.swift

86 lines
3.0 KiB
Swift
Raw Normal View History

//
2024-09-23 13:02:26 +00:00
// KvittoReceiptReader.swift
// Passepartout
//
// Created by Davide De Rosa on 12/20/23.
2024-01-14 13:34:21 +00:00
// Copyright (c) 2024 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
import Kvitto
2024-09-23 13:02:26 +00:00
import PassepartoutKit
import UtilsLibrary
2024-09-23 13:02:26 +00:00
public final class KvittoReceiptReader: AppReceiptReader {
public init() {
}
public func receipt(for userLevel: AppUserLevel) -> InAppReceipt? {
guard let url = Bundle.main.appStoreReceiptURL else {
2024-09-23 13:02:26 +00:00
pp_log(.app, .error, "No App Store receipt found!")
return nil
}
let receipt = Receipt(contentsOfURL: url)
let fallbackReceipt: Receipt? = {
// in TestFlight, attempt fallback to existing release receipt
2024-09-23 13:02:26 +00:00
if userLevel == .beta {
guard let receipt else {
let releaseUrl = url.deletingLastPathComponent().appendingPathComponent("receipt")
guard releaseUrl != url else {
#if !os(macOS) && !targetEnvironment(simulator)
assertionFailure("How can release URL be equal to sandbox URL in TestFlight?")
2024-09-23 13:02:26 +00:00
#endif
return nil
}
2024-09-23 13:02:26 +00:00
pp_log(.app, .error, "Sandbox receipt not found, falling back to Release receipt")
return Receipt(contentsOfURL: releaseUrl)
}
return receipt
}
return receipt
}()
return fallbackReceipt?.asInAppReceipt
}
}
private extension Receipt {
var asInAppReceipt: InAppReceipt {
var originalBuildNumber: Int?
var purchaseReceipts: [InAppReceipt.PurchaseReceipt]?
if let originalAppVersion, let buildNumber = Int(originalAppVersion) {
originalBuildNumber = buildNumber
}
if let inAppPurchaseReceipts {
purchaseReceipts = inAppPurchaseReceipts
.map {
InAppReceipt.PurchaseReceipt(productIdentifier: $0.productIdentifier,
cancellationDate: $0.cancellationDate,
originalPurchaseDate: $0.originalPurchaseDate)
}
}
return InAppReceipt(originalBuildNumber: originalBuildNumber,
purchaseReceipts: purchaseReceipts)
}
}