-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathcmab_service.ts
More file actions
156 lines (131 loc) · 4.72 KB
/
cmab_service.ts
File metadata and controls
156 lines (131 loc) · 4.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
* Copyright 2025, 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
*
* https://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 { LoggerFacade } from "../../../logging/logger";
import { IOptimizelyUserContext } from "../../../optimizely_user_context";
import { ProjectConfig } from "../../../project_config/project_config"
import { OptimizelyDecideOption, UserAttributes } from "../../../shared_types"
import { Cache } from "../../../utils/cache/cache";
import { CmabClient } from "./cmab_client";
import { v4 as uuidV4 } from 'uuid';
import murmurhash from "murmurhash";
import { DecideOptionsMap } from "..";
export type CmabDecision = {
variationId: string,
cmabUuid: string,
}
export interface CmabService {
/**
* Get variation id for the user
* @param {IOptimizelyUserContext} userContext
* @param {string} ruleId
* @param {OptimizelyDecideOption[]} options
* @return {Promise<CmabDecision>}
*/
getDecision(
projectConfig: ProjectConfig,
userContext: IOptimizelyUserContext,
ruleId: string,
options: DecideOptionsMap,
): Promise<CmabDecision>
}
export type CmabCacheValue = {
attributesHash: string,
variationId: string,
cmabUuid: string,
}
export type CmabServiceOptions = {
logger?: LoggerFacade;
cmabCache: Cache<CmabCacheValue>;
cmabClient: CmabClient;
}
export class DefaultCmabService implements CmabService {
private cmabCache: Cache<CmabCacheValue>;
private cmabClient: CmabClient;
private logger?: LoggerFacade;
constructor(options: CmabServiceOptions) {
this.cmabCache = options.cmabCache;
this.cmabClient = options.cmabClient;
this.logger = options.logger;
}
async getDecision(
projectConfig: ProjectConfig,
userContext: IOptimizelyUserContext,
ruleId: string,
options: DecideOptionsMap,
): Promise<CmabDecision> {
const filteredAttributes = this.filterAttributes(projectConfig, userContext, ruleId);
if (options[OptimizelyDecideOption.IGNORE_CMAB_CACHE]) {
return this.fetchDecision(ruleId, userContext.getUserId(), filteredAttributes);
}
if (options[OptimizelyDecideOption.RESET_CMAB_CACHE]) {
this.cmabCache.clear();
}
const cacheKey = this.getCacheKey(userContext.getUserId(), ruleId);
if (options[OptimizelyDecideOption.INVALIDATE_USER_CMAB_CACHE]) {
this.cmabCache.remove(cacheKey);
}
const cachedValue = await this.cmabCache.get(cacheKey);
const attributesJson = JSON.stringify(filteredAttributes, Object.keys(filteredAttributes).sort());
const attributesHash = String(murmurhash.v3(attributesJson));
if (cachedValue) {
if (cachedValue.attributesHash === attributesHash) {
return { variationId: cachedValue.variationId, cmabUuid: cachedValue.cmabUuid };
} else {
this.cmabCache.remove(cacheKey);
}
}
const variation = await this.fetchDecision(ruleId, userContext.getUserId(), filteredAttributes);
this.cmabCache.set(cacheKey, {
attributesHash,
variationId: variation.variationId,
cmabUuid: variation.cmabUuid,
});
return variation;
}
private async fetchDecision(
ruleId: string,
userId: string,
attributes: UserAttributes,
): Promise<CmabDecision> {
const cmabUuid = uuidV4();
const variationId = await this.cmabClient.fetchDecision(ruleId, userId, attributes, cmabUuid);
return { variationId, cmabUuid };
}
private filterAttributes(
projectConfig: ProjectConfig,
userContext: IOptimizelyUserContext,
ruleId: string
): UserAttributes {
const filteredAttributes: UserAttributes = {};
const userAttributes = userContext.getAttributes();
const experiment = projectConfig.experimentIdMap[ruleId];
if (!experiment || !experiment.cmab) {
return filteredAttributes;
}
const cmabAttributeIds = experiment.cmab.attributeIds;
cmabAttributeIds.forEach((aid) => {
const attribute = projectConfig.attributeIdMap[aid];
if (userAttributes.hasOwnProperty(attribute.key)) {
filteredAttributes[attribute.key] = userAttributes[attribute.key];
}
});
return filteredAttributes;
}
private getCacheKey(userId: string, ruleId: string): string {
const len = userId.length;
return `${len}-${userId}-${ruleId}`;
}
}