Created
February 24, 2018 11:08
-
-
Save nicusX/9a54fedd5ebb04d511d84c483fe54b61 to your computer and use it in GitHub Desktop.
Lambda@Edge A/B testing - single function solution
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
'use strict'; | |
const sourceCoookie = 'X-Source'; | |
const sourceMain = 'main'; | |
const sourceExperiment = 'experiment'; | |
const experimentTraffic = 0.5; | |
const experimentBucketEndpoint = 'my-experiment.s3.amazonaws.com'; | |
const experimentBucketRegion = 'eu-west-1'; | |
// Origin Request handler | |
exports.handler = (event, context, callback) => { | |
const request = event.Records[0].cf.request; | |
const headers = request.headers; | |
// Look for source cookie | |
const source = getSource(headers); | |
// If Source is undecided roll dice and send directly a Redirect with the Set-Cookie and Cache-Control=no-store | |
if ( !source ) { | |
const newSource = ( Math.random() < experimentTraffic ) ? sourceExperiment : sourceMain; | |
console.log('Dice rolled. Source:', newSource); | |
// Send a redirect with Set-Cookie header and Cache-control no-store | |
const response = { | |
status: 302, | |
headers: { | |
'cache-control': [{ | |
key: 'Cache-Control', | |
value: 'no-store' | |
}], | |
'set-cookie': [{ | |
key: 'Set-Cookie', | |
value: `${sourceCoookie}=${newSource}; Path=/` | |
}], | |
'location': [{ | |
key: 'Location', | |
value: request.uri | |
}] | |
} | |
} | |
// Send the redirect response | |
callback(null, response); | |
return; | |
} | |
// If Source is Experiment, change Origin and Host header | |
if ( source === sourceExperiment ) { | |
console.log('Setting Origin to experiment bucket'); | |
// Specify Origin | |
request.origin = { | |
s3: { | |
authMethod: 'origin-access-identity', | |
domainName: experimentBucketEndpoint, | |
path: '', | |
region: experimentBucketRegion | |
} | |
}; | |
// Also set Host header to prevent “The request signature we calculated does not match the signature you provided” error | |
headers['host'] = [{key: 'host', value: experimentBucketEndpoint }]; | |
} | |
// No need to change anything if Source was Main or undefined | |
callback(null, request); | |
}; | |
// Decide source based on source cookie. | |
const getSource = function(headers) { | |
const sourceMainCookie = `${sourceCoookie}=${sourceMain}`; | |
const sourceExperimenCookie = `${sourceCoookie}=${sourceExperiment}`; | |
// Remember a single cookie header entry may contains multiple cookies | |
if (headers.cookie) { | |
// ...ugly but simple enough for now | |
for (let i = 0; i < headers.cookie.length; i++) { | |
if (headers.cookie[i].value.indexOf(sourceExperimenCookie) >= 0) { | |
console.log('Experiment Source cookie found'); | |
return sourceExperiment; | |
} | |
if (headers.cookie[i].value.indexOf(sourceMainCookie) >= 0) { | |
console.log('Main Source cookie found'); | |
return sourceMain; | |
} | |
} | |
} | |
console.log('No Source cookie found (Origin undecided)'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment