This repository was archived by the owner on Sep 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
182 lines (158 loc) · 5.48 KB
/
index.js
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* Optimizely Express Middleware
*
* Copyright 2019, 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.
*/
'use strict'
const OptimizelySdk = require('@optimizely/optimizely-sdk');
const { DatafileManager } = require('@optimizely/js-sdk-datafile-manager');
const crypto = require('crypto');
const rp = require('request-promise');
/**
* optimizely
*
* Middelware which initializes and installs the Optimizely SDK onto an express request object
*
* @param {Object} options
* @param {Object} options.logLevel log level for the default logger
*
* @returns {Function} to handle the express request
*/
function initialize(options) {
let {
sdkKey,
datafile,
logLevel,
datafileOptions,
} = options;
const defaultLogger = require('@optimizely/optimizely-sdk').logging;
const manager = new DatafileManager({
sdkKey,
...options,
...datafileOptions,
});
function updateDatafile() {
datafile = manager.get()
datafile._lastUpdated = new Date();
console.log('[Optimizely] Datafile Updated!');
}
manager.on('update', updateDatafile);
manager.onReady().then(updateDatafile);
manager.start();
return {
/**
* Optimizely Middleware
* Provides an Optimizely client instance of the SDK available
* on routes
*
* @param {Object} req express request object
* @param {Object} res express response object
* @param {Function} next express routing next function
*/
middleware(req, res, next) {
const optimizelyClient = OptimizelySdk.createInstance({
datafile: datafile,
logger: defaultLogger.createLogger({
logLevel: logLevel
}),
...options,
sdkKey: undefined, // Ensure the SDK doesn't try to fetch the datafile on its own
datafileOptions: {
autoUpdate: false, // Ensure the SDK doesn't also try to auto-update on its own
},
});
req.optimizely = {
datafile: datafile || {},
client: optimizelyClient,
}
next();
},
/**
* Optimizely Webhook Route
* Route to accept webhook notifications from Optimizely
*
* @param {Object} req express request object
* @param {Object} res express response object
* @param {Function} next express routing next function
*/
async webhookRequest(req, res, next) {
const WEBHOOK_SECRET = process.env.OPTIMIZELY_WEBHOOK_SECRET
const webhook_payload = req.body
const hmac = crypto.createHmac('sha1', WEBHOOK_SECRET)
const webhookDigest = hmac.update(webhook_payload).digest('hex')
const computedSignature = `sha1=${webhookDigest}`
const requestSignature = req.header('X-Hub-Signature')
if (!crypto.timingSafeEqual(Buffer.from(computedSignature, 'utf8'), Buffer.from(requestSignature, 'utf8'))) {
console.log(`[Optimizely] Signatures did not match! Do not trust webhook request")`)
res.status(500)
return
}
console.log(`
[Optimizely] Optimizely webhook request received!
Signatures match! Webhook verified as coming from Optimizely
Download Optimizely datafile and re-instantiate the SDK Client
For the latest changes to take affect
`);
const datafileString = await rp(`https://cdn.optimizely.com/datafiles/${sdkKey}.json`)
datafile = JSON.parse(datafileString);
res.sendStatus(200)
},
/**
* datafileRoute
*
* Provides a route that exposes the contents of the datafile currently loaded in your application
*
* @param {Object} req express request object
* @param {Object} res express response object
* @param {Function} next express routing next function
*/
datafileRoute(req, res, next) {
const datafile = (req && req.optimizely && req.optimizely.datafile) || {}
res.setHeader('Content-Type', 'application/json');
res.status(200).send(JSON.stringify(datafile, null, ' '));
},
/**
* isRouteEnabled (EXPERIMENTAL-FEATURE)
*
* Provides a method which can be used to block a route in express on whether the feature is enabled or not
*
* @param {String} featureKey for the specific feature in question
* @param {Function} onRouteDisabled function called when the feature is disabled
* @param {Error} featureKey for the specific feature in question
*
* @returns {Function}
*/
isRouteEnabled(featureKey, onRouteDisabled) {
return function (req, res, next) {
// TODO: Improve design of user Id
const userId = req.userId || 'test123'
const optimizelyClient = req && req.optimizely && req.optimizely.client
if (optimizelyClient) {
// TODO: Pass in attributes
const enabled = optimizelyClient.isFeatureEnabled(featureKey, userId);
if (enabled) {
// Feature is enabled move on to next route
next();
return
}
}
onRouteDisabled(req, res, next);
}
}
}
}
module.exports = {
initialize,
}