|
| 1 | +import Foundation |
| 2 | +import OpenFeature |
| 3 | +import OFREP |
| 4 | + |
| 5 | +class DoubleHook: Hook { |
| 6 | + typealias HookValue = Double |
| 7 | + let dataCollectorMngr: DataCollectorManager |
| 8 | + |
| 9 | + init(dataCollectorMngr: DataCollectorManager) { |
| 10 | + self.dataCollectorMngr = dataCollectorMngr |
| 11 | + } |
| 12 | + |
| 13 | + func before<HookValue>(ctx: HookContext<HookValue>, hints: [String: Any]) { |
| 14 | + return |
| 15 | + } |
| 16 | + |
| 17 | + func after<HookValue>( |
| 18 | + ctx: HookContext<HookValue>, |
| 19 | + details: FlagEvaluationDetails<HookValue>, |
| 20 | + hints: [String: Any]) { |
| 21 | + let contextKind = "user" |
| 22 | + let userKey = ctx.ctx?.getTargetingKey() ?? "" |
| 23 | + let key = ctx.flagKey |
| 24 | + guard let value = details.value as? Double else { |
| 25 | + NSLog("Default value is not of type Double") |
| 26 | + return |
| 27 | + } |
| 28 | + |
| 29 | + let event = FeatureEvent( |
| 30 | + kind: "feature", |
| 31 | + contextKind: contextKind, |
| 32 | + userKey: userKey, |
| 33 | + creationDate: Int64(Date().timeIntervalSince1970), |
| 34 | + key: key, |
| 35 | + variation: details.variant ?? "SdkDefault", |
| 36 | + value: JSONValue.double(value), |
| 37 | + default: false, |
| 38 | + source: "PROVIDER_CACHE" |
| 39 | + ) |
| 40 | + self.dataCollectorMngr.appendFeatureEvent(event: event) |
| 41 | + } |
| 42 | + |
| 43 | + func error<HookValue>( |
| 44 | + ctx: HookContext<HookValue>, |
| 45 | + error: Error, |
| 46 | + hints: [String: Any]) { |
| 47 | + let contextKind = "user" |
| 48 | + let userKey = ctx.ctx?.getTargetingKey() ?? "" |
| 49 | + let key = ctx.flagKey |
| 50 | + |
| 51 | + guard let value = ctx.defaultValue as? Double else { |
| 52 | + NSLog("Default value is not of type Double") |
| 53 | + return |
| 54 | + } |
| 55 | + |
| 56 | + let event = FeatureEvent( |
| 57 | + kind: "feature", |
| 58 | + contextKind: contextKind, |
| 59 | + userKey: userKey, |
| 60 | + creationDate: Int64(Date().timeIntervalSince1970), |
| 61 | + key: key, |
| 62 | + variation: "SdkDefault", |
| 63 | + value: JSONValue.double(value), |
| 64 | + default: true, |
| 65 | + source: "PROVIDER_CACHE" |
| 66 | + ) |
| 67 | + self.dataCollectorMngr.appendFeatureEvent(event: event) |
| 68 | + } |
| 69 | + |
| 70 | + func finallyAfter<HookValue>(ctx: HookContext<HookValue>, hints: [String: Any]) { |
| 71 | + return |
| 72 | + } |
| 73 | +} |
0 commit comments