mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-18 15:25:33 -04:00
fix AMP pixel (hopefully)
This commit is contained in:
@@ -1,23 +1,35 @@
|
||||
const request = require("request");
|
||||
|
||||
exports.handler = function (event, context, callback) {
|
||||
// if triggered as an image without JS (i.e. from AMP pages) set `?noscript=true`
|
||||
const noScript = event.queryStringParameters["noscript"] === "true";
|
||||
|
||||
// https://docs.simpleanalytics.com/without-javascript
|
||||
const endpointPath = noScript ? "noscript.gif" : "simple.gif";
|
||||
const endpointUrl = "https://queue.simpleanalyticscdn.com/" + endpointPath;
|
||||
|
||||
// pass these headers along to SA
|
||||
const reqHeaders = {
|
||||
referer: event.headers["referer"],
|
||||
"user-agent": event.headers["user-agent"],
|
||||
};
|
||||
|
||||
// pass these URL parameters along to SA
|
||||
const reqQuery = event.queryStringParameters;
|
||||
reqQuery["ignore-dnt"] = true; // this isn't nefarious, we're not tracking in the first place!
|
||||
reqQuery["ignore-dnt"] = "true"; // this isn't nefarious, we're not tracking in the first place!
|
||||
|
||||
const reqOptions = {
|
||||
method: "GET",
|
||||
url: "https://queue.simpleanalyticscdn.com/simple.gif",
|
||||
url: endpointUrl,
|
||||
headers: reqHeaders,
|
||||
qs: reqQuery,
|
||||
};
|
||||
|
||||
request(reqOptions, (error, response, body) => {
|
||||
console.info(`Proxying ${event.queryStringParameters["type"]} to ${endpointPath} ...`);
|
||||
|
||||
if (error) {
|
||||
// this indicates a function error, NOT an error returned from SA
|
||||
console.error(error);
|
||||
|
||||
callback(null, {
|
||||
@@ -26,6 +38,7 @@ exports.handler = function (event, context, callback) {
|
||||
} else {
|
||||
console.info(response.statusCode, response.headers["simple-analytics-feedback"]);
|
||||
|
||||
// imitate the headers that would normally be sent back from SA's pixel
|
||||
const resHeaders = {
|
||||
"content-type": response.headers["content-type"],
|
||||
"cache-control": "no-cache, no-store, must-revalidate",
|
||||
|
Reference in New Issue
Block a user