-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new Apis to support the decide feature. Introduced a new OptimizelyUserContext class through create_user_context class api. This creates an optimizely instance with memoized user context and exposes the following APIs 1. set_attribute 2. decide 3. decide_all 4. decide_for_keys 5. track_event
- Loading branch information
1 parent
be63510
commit 67b9f83
Showing
17 changed files
with
2,564 additions
and
614 deletions.
There are no files selected for viewing
This file contains 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 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,12 @@ | ||
# Copyright 2021, Optimizely | ||
# 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. |
This file contains 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,20 @@ | ||
# Copyright 2021, Optimizely | ||
# 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. | ||
|
||
|
||
class OptimizelyDecideOption(object): | ||
DISABLE_DECISION_EVENT = 'DISABLE_DECISION_EVENT' | ||
ENABLED_FLAGS_ONLY = 'ENABLED_FLAGS_ONLY' | ||
IGNORE_USER_PROFILE_SERVICE = 'IGNORE_USER_PROFILE_SERVICE' | ||
INCLUDE_REASONS = 'INCLUDE_REASONS' | ||
EXCLUDE_VARIABLES = 'EXCLUDE_VARIABLES' |
This file contains 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,35 @@ | ||
# Copyright 2021, Optimizely | ||
# 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. | ||
|
||
|
||
class OptimizelyDecision(object): | ||
def __init__(self, variation_key=None, enabled=None, | ||
variables=None, rule_key=None, flag_key=None, user_context=None, reasons=None): | ||
self.variation_key = variation_key | ||
self.enabled = enabled or False | ||
self.variables = variables or {} | ||
self.rule_key = rule_key | ||
self.flag_key = flag_key | ||
self.user_context = user_context | ||
self.reasons = reasons or [] | ||
|
||
def as_json(self): | ||
return { | ||
'variation_key': self.variation_key, | ||
'enabled': self.enabled, | ||
'variables': self.variables, | ||
'rule_key': self.rule_key, | ||
'flag_key': self.flag_key, | ||
'user_context': self.user_context.as_json(), | ||
'reasons': self.reasons | ||
} |
This file contains 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,18 @@ | ||
# Copyright 2021, Optimizely | ||
# 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. | ||
|
||
|
||
class OptimizelyDecisionMessage(object): | ||
SDK_NOT_READY = 'Optimizely SDK not configured properly yet.' | ||
FLAG_KEY_INVALID = 'No flag was found for key "{}".' | ||
VARIABLE_VALUE_INVALID = 'Variable value for key "{}" is invalid or wrong type.' |
Oops, something went wrong.