|
| 1 | +#if os(iOS) || os(tvOS) || os(visionOS) || targetEnvironment(macCatalyst) |
| 2 | +import Foundation |
| 3 | +import UIKit |
| 4 | +import Combine |
| 5 | + |
| 6 | +/** |
| 7 | +Helper class to produce device information context for the Confidence context. |
| 8 | + |
| 9 | +The values appended to the Context come primarily from the Bundle or UiDevice API |
| 10 | + |
| 11 | +AppInfo contains: |
| 12 | +- version: the version name of the app. |
| 13 | +- build: the version code of the app. |
| 14 | +- namespace: the package name of the app. |
| 15 | + |
| 16 | +DeviceInfo contains: |
| 17 | +- manufacturer: the manufacturer of the device. |
| 18 | +- brand: the brand of the device. |
| 19 | +- model: the model of the device. |
| 20 | +- type: the type of the device. |
| 21 | + |
| 22 | +OsInfo contains: |
| 23 | +- name: the name of the OS. |
| 24 | +- version: the version of the OS. |
| 25 | + |
| 26 | +Locale contains: |
| 27 | +- locale: the locale of the device. |
| 28 | +- preferred_languages: the preferred languages of the device. |
| 29 | + |
| 30 | +The context is only updated when the class is initialized and then static. |
| 31 | +*/ |
| 32 | +public class ConfidenceDeviceInfoContextDecorator { |
| 33 | + private let staticContext: ConfidenceValue |
| 34 | + |
| 35 | + public init( |
| 36 | + withDeviceInfo: Bool = false, |
| 37 | + withAppInfo: Bool = false, |
| 38 | + withOsInfo: Bool = false, |
| 39 | + withLocale: Bool = false |
| 40 | + ) { |
| 41 | + var context: [String: ConfidenceValue] = [:] |
| 42 | + |
| 43 | + if withDeviceInfo { |
| 44 | + let device = UIDevice.current |
| 45 | + |
| 46 | + context["device"] = .init(structure: [ |
| 47 | + "manufacturer": .init(string: "Apple"), |
| 48 | + "model": .init(string: Self.getDeviceModelIdentifier()), |
| 49 | + "type": .init(string: device.model) |
| 50 | + ]) |
| 51 | + } |
| 52 | + |
| 53 | + if withAppInfo { |
| 54 | + let currentVersion: String = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" |
| 55 | + let currentBuild: String = Bundle.main.infoDictionary?["CFBundleVersion"] as? String ?? "" |
| 56 | + let bundleId = Bundle.main.bundleIdentifier ?? "" |
| 57 | + |
| 58 | + context["app"] = .init(structure: [ |
| 59 | + "version": .init(string: currentVersion), |
| 60 | + "build": .init(string: currentBuild), |
| 61 | + "namespace": .init(string: bundleId) |
| 62 | + ]) |
| 63 | + } |
| 64 | + |
| 65 | + if withOsInfo { |
| 66 | + let device = UIDevice.current |
| 67 | + |
| 68 | + context["os"] = .init(structure: [ |
| 69 | + "name": .init(string: device.systemName), |
| 70 | + "version": .init(string: device.systemVersion) |
| 71 | + ]) |
| 72 | + } |
| 73 | + |
| 74 | + if withLocale { |
| 75 | + let locale = Locale.current |
| 76 | + let preferredLanguages = Locale.preferredLanguages |
| 77 | + |
| 78 | + // Top level fields |
| 79 | + context["locale"] = .init(string: locale.identifier) // Locale identifier (e.g., "en_US") |
| 80 | + context["preferred_languages"] = .init(list: preferredLanguages.map { lang in |
| 81 | + .init(string: lang) |
| 82 | + }) |
| 83 | + } |
| 84 | + |
| 85 | + self.staticContext = .init(structure: context) |
| 86 | + } |
| 87 | + |
| 88 | + /** |
| 89 | + Returns a context where values are decorated (appended) according to how the ConfidenceDeviceInfoContextDecorator was setup. |
| 90 | + The context values in the parameter context have precedence over the fields appended by this class. |
| 91 | + */ |
| 92 | + public func decorated(context contextToDecorate: [String: ConfidenceValue]) -> [String: ConfidenceValue] { |
| 93 | + var result = self.staticContext.asStructure() ?? [:] |
| 94 | + contextToDecorate.forEach { (key: String, value: ConfidenceValue) in |
| 95 | + result[key] = value |
| 96 | + } |
| 97 | + return result |
| 98 | + } |
| 99 | + |
| 100 | + |
| 101 | + private static func getDeviceModelIdentifier() -> String { |
| 102 | + var systemInfo = utsname() |
| 103 | + uname(&systemInfo) |
| 104 | + let machineMirror = Mirror(reflecting: systemInfo.machine) |
| 105 | + let identifier = machineMirror.children |
| 106 | + .compactMap { element in element.value as? Int8 } |
| 107 | + .filter { $0 != 0 } |
| 108 | + .map { |
| 109 | + Character(UnicodeScalar(UInt8($0))) |
| 110 | + } |
| 111 | + return String(identifier) |
| 112 | + } |
| 113 | +} |
| 114 | +#endif |
0 commit comments