-
Notifications
You must be signed in to change notification settings - Fork 1.7k
[rc-swift] Personalization #14284
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
[rc-swift] Personalization #14284
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| // Copyright 2024 Google LLC | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
|
|
||
| import Foundation | ||
|
|
||
| // TODO: AnalyticInterop refactor | ||
| // import FirebaseAnalyticsInterop | ||
|
|
||
| private let kAnalyticsOriginPersonalization = "fp" | ||
| private let kExternalEvent = "personalization_assignment" | ||
| private let kExternalRcParameterParam = "arm_key" | ||
| private let kExternalArmValueParam = "arm_value" | ||
| private let kPersonalizationId = "personalizationId" | ||
| private let kExternalPersonalizationIdParam = "personalization_id" | ||
| private let kArmIndex = "armIndex" | ||
| private let kExternalArmIndexParam = "arm_index" | ||
| private let kGroup = "group" | ||
| private let kExternalGroupParam = "group" | ||
|
|
||
| private let kInternalEvent = "_fpc" | ||
| private let kChoiceId = "choiceId" | ||
| private let kInternalChoiceIdParam = "_fpid" | ||
|
|
||
| @objc(RCNPersonalization) | ||
| public class Personalization: NSObject { | ||
| /// Analytics connector. | ||
| var analytics: FIRAnalyticsInterop? | ||
|
|
||
| private var loggedChoiceIds = [String: String]() | ||
|
|
||
| /// Designated initializer. | ||
| @objc public init(analytics: FIRAnalyticsInterop?) { | ||
| self.analytics = analytics | ||
| super.init() | ||
| } | ||
|
|
||
| /// Called when an arm is pulled from Remote Config. If the arm is personalized, log information | ||
| /// to | ||
| /// Google Analytics in another thread. | ||
| @objc public func logArmActive(rcParameter: String, config: [String: Any]) { | ||
| guard let ids = | ||
| config[ConfigConstants.fetchResponseKeyPersonalizationMetadata] as? [String: Any], | ||
| let values = config[ConfigConstants.fetchResponseKeyEntries] as? [String: RemoteConfigValue], | ||
| let value = values[rcParameter] else { | ||
| return | ||
| } | ||
ncooke3 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| guard let metadata = ids[rcParameter] as? [String: AnyHashable], | ||
| let choiceId = metadata[kChoiceId] as? String else { | ||
| return | ||
| } | ||
|
|
||
| // Listeners like logArmActive() are dispatched to a serial queue, so loggedChoiceIds should | ||
| // contain any previously logged RC parameter / choice ID pairs. | ||
| if loggedChoiceIds[rcParameter] == choiceId { | ||
| return | ||
| } | ||
| loggedChoiceIds[rcParameter] = choiceId | ||
|
|
||
| analytics?.logEvent( | ||
| withOrigin: kAnalyticsOriginPersonalization, | ||
| name: kExternalEvent, | ||
| parameters: [ | ||
| kExternalRcParameterParam: rcParameter, | ||
| kExternalArmValueParam: value.stringValue, | ||
| kExternalPersonalizationIdParam: metadata[kPersonalizationId] ?? "", | ||
| // Provide default value if nil | ||
| kExternalArmIndexParam: metadata[kArmIndex] ?? "", // Provide default value if nil | ||
| kExternalGroupParam: metadata[kGroup] ?? "", // Provide default value if nil | ||
| ] | ||
| ) | ||
|
|
||
| analytics?.logEvent(withOrigin: kAnalyticsOriginPersonalization, | ||
| name: kInternalEvent, | ||
| parameters: [kInternalChoiceIdParam: choiceId]) | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.