Skip to content

Commit 212ed9e

Browse files
author
simone-coelho
committed
Clean up and documentation
1 parent 4dbca52 commit 212ed9e

5 files changed

+11
-12
lines changed

bundle.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"edgeworker-version": "10249",
2+
"edgeworker-version": "10250",
33
"description": "Optimizely Akamai Agent"
44
}

edgeworker.js

+7-9
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,11 @@ const decisionsKeyName = "decisions";
2929
const userCookieName = "optly_akamai_ew_user"; // Name of cookie that stores user identifier (visitorId) assignment
3030
const optlyUserIdsHeaderName = "optly-user-id";
3131
const userIdentifierKeyName = "user_identifier";
32-
const htmlVariable = "PMUSER_OPTIMIZELY_RESPONSE_HTML";
33-
const agentModeVariable = "PMUSER_ACTIVE_FLAGS_EXPERIMENTS";
34-
const userIdVariable = "PMUSER_USER_ID";
35-
const flagsListVariable = "PMUSER_FLAGS_LIST";
36-
const attributesListVariable_1 = "PMUSER_ATTRIBUTES_LIST_1";
37-
const attributesListVariable_2 = "PMUSER_ATTRIBUTES_LIST_2";
38-
const assignedDecisionsVariable = "PMUSER_ASSIGNED_DECISIONS";
32+
const userIdVariable = "PMUSER_OPTIMIZELY_USER_ID";
33+
const flagsListVariable = "PMUSER_OPTIMIZELY_FLAGS_LIST";
34+
const attributesListVariable_1 = "PMUSER_OPTIMIZELY_ATTR_LIST_1";
35+
const attributesListVariable_2 = "PMUSER_OPTIMIZELY_ATTR_LIST_2";
36+
const assignedDecisionsVariable = "PMUSER_OPTIMIZELY_DECISIONS";
3937
const cookieExpirationSecs = 30 * 24 * 60 * 60;
4038
const cookieExpirationInDays = 30;
4139
const delimeter = "&";
@@ -47,6 +45,7 @@ let defaultConfig = DefaultConfig;
4745
let defaultConfigUpdated = false;
4846
// Account ID
4947
let ACCOUNT_ID = defaultConfig.accountId;
48+
let eventsEndpoint = defaultConfig.optlyEventsEndpoint;
5049

5150
/**
5251
* KV_STORAGE_ENABLED = coniguration will be downloaded from KV store
@@ -286,8 +285,7 @@ async function httpDispatcher(payload) {
286285
"Content-Length": jsonPayload.length,
287286
};
288287
options.body = jsonPayload;
289-
//const url = "https://ew-optly-agent.optimizely.com/v1/events";
290-
const url = "https://ew.logx.optimizely.com/v1/events";
288+
const url = eventsEndpoint;
291289

292290
try {
293291
const response = await httpRequest(url, options);

ew_default_config.json

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"decisions_cookie_expiration": 15,
6868
"datafileSource": "embedded",
6969
"accountId": "8543082612",
70+
"optlyEventsEndpoint": "https://ew.logx.optimizely.com/v1/events",
7071
"autoUpdateActiveExperiments": true,
7172
"activeExperiments": "edge_worker_development_version_2,edge_worker_development,akamai_active_experiments",
7273
"sdkKey": "FFSer7NqrCooeLkyZP39s",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"description": "Edge-Worker implementation of the Optimizely Javascript SDK",
77
"main": "index.js",
88
"config": {
9-
"bundleVersion": "10249",
9+
"bundleVersion": "10250",
1010
"rootPath": "C:\\Users\\scoelho\\Documents\\Amadalis\\_akamai_ew\\dist",
1111
"distributionRelativePath": "dist",
1212
"edgeWorkerId": "6152"

scripts/activate_edgeworker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fs.readFile("./package.json", function(err, content) {
1010
let packageJson = JSON.parse(content);
1111
versionId = packageJson.config.edgeWorkerId;
1212

13-
if (versionId !== "NO_VERSION_FOUND") {
13+
if (versionId && versionId !== "NO_VERSION_FOUND") {
1414
fs.readFile("./bundle.json", function(err, content) {
1515
if (err) throw err;
1616

0 commit comments

Comments
 (0)