mirror of
https://github.com/confirmedcode/Lockdown-iOS.git
synced 2025-12-21 12:14:02 +01:00
122 lines
2.9 KiB
Swift
122 lines
2.9 KiB
Swift
//
|
|
// Models.swift
|
|
// Lockdown
|
|
//
|
|
// Created by Johnny Lin on 7/31/19.
|
|
// Copyright © 2019 Confirmed Inc. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
struct IP: Codable {
|
|
let ip: String
|
|
}
|
|
|
|
struct SpeedTestBucket: Codable {
|
|
let bucket: String
|
|
}
|
|
|
|
struct GetKey: Codable {
|
|
let id: String
|
|
let b64: String
|
|
}
|
|
|
|
struct SubscriptionEvent: Codable {
|
|
let message: String
|
|
}
|
|
|
|
public struct Subscription: Codable {
|
|
let planType: PlanType
|
|
let receiptId: String
|
|
let expirationDate: String
|
|
let expirationDateString: String
|
|
let expirationDateMs: Int
|
|
let cancellationDate: String?
|
|
let cancellationDateString: String?
|
|
let cancellationDateMs: Int?
|
|
|
|
struct PlanType: RawRepresentable, RawValueCodable, Hashable {
|
|
let rawValue: String
|
|
init(rawValue: String) {
|
|
self.rawValue = rawValue
|
|
}
|
|
|
|
static let monthly = PlanType(rawValue: "ios-monthly")
|
|
static let annual = PlanType(rawValue: "ios-annual")
|
|
static let proMonthly = PlanType(rawValue: "all-monthly")
|
|
static let proAnnual = PlanType(rawValue: "all-annual")
|
|
static let proAnnualLTO = PlanType(rawValue: "all-annual")
|
|
}
|
|
|
|
var correspondingProductGroup: AppStoreProductGroup {
|
|
switch planType {
|
|
case .monthly, .annual:
|
|
return .firewallAndVpn
|
|
case .proMonthly, .proAnnual, .proAnnualLTO:
|
|
return .pro
|
|
default:
|
|
return .firewallAndVpn
|
|
}
|
|
}
|
|
|
|
public var hasVPN: Bool { [.firewallAndVpn, .pro].contains(correspondingProductGroup) }
|
|
|
|
var correspondingPeriodUnit: SubscriptionOfferPeriodUnit {
|
|
switch planType {
|
|
case .monthly, .proMonthly:
|
|
return .month
|
|
case .annual, .proAnnual, .proAnnualLTO:
|
|
return .year
|
|
default:
|
|
return .year
|
|
}
|
|
}
|
|
|
|
func isSubscription(in group: AppStoreProductGroup, of period: SubscriptionOfferPeriodUnit) -> Bool {
|
|
return group == correspondingProductGroup && period == correspondingPeriodUnit
|
|
}
|
|
}
|
|
|
|
struct SignIn: Codable {
|
|
let code: Int
|
|
let message: String
|
|
}
|
|
|
|
struct Signup: Codable {
|
|
let code: Int
|
|
let message: String
|
|
}
|
|
|
|
struct ApiError: Codable, Error {
|
|
let code: Int
|
|
let message: String
|
|
}
|
|
|
|
// MARK: - Helpers
|
|
|
|
public enum RawValueCodableError: Error {
|
|
case wrongRawValue
|
|
}
|
|
|
|
public protocol RawValueCodable: RawRepresentable, Codable {
|
|
}
|
|
|
|
public extension RawValueCodable where RawValue: Codable {
|
|
init(from decoder: Decoder) throws {
|
|
let container = try decoder.singleValueContainer()
|
|
let rawValue = try container.decode(RawValue.self)
|
|
if let value = Self.init(rawValue: rawValue) {
|
|
self = value
|
|
} else {
|
|
throw RawValueCodableError.wrongRawValue
|
|
}
|
|
}
|
|
|
|
func encode(to encoder: Encoder) throws {
|
|
var container = encoder.singleValueContainer()
|
|
try container.encode(rawValue)
|
|
}
|
|
}
|
|
|