forked from adobe/target-nodejs-sdk-samples
-
Notifications
You must be signed in to change notification settings - Fork 5
/
server.js
100 lines (87 loc) · 3.18 KB
/
server.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
/***************************************************************************************
* (c) 2019 Adobe. All rights reserved.
* This file is licensed to you 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 REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
****************************************************************************************/
const fs = require("fs");
const express = require("express");
const cookieParser = require("cookie-parser");
const TargetClient = require("@adobe/target-nodejs-sdk");
const CONFIG = {
client: "adobetargetmobile",
organizationId: "B8A054D958807F770A495DD6@AdobeOrg",
timeout: 10000,
logger: console
};
const targetClient = TargetClient.create(CONFIG);
const TEMPLATE = fs.readFileSync(__dirname + "/templates/index.tpl").toString();
const app = express();
app.use(cookieParser());
app.use(express.static(__dirname + "/public"));
function saveCookie(res, cookie) {
if (!cookie) {
return;
}
res.cookie(cookie.name, cookie.value, {maxAge: cookie.maxAge * 1000});
}
const getResponseHeaders = () => ({
"Content-Type": "text/html",
"Expires": new Date().toUTCString()
});
function sendHtml(res, offer) {
const htmlResponse = TEMPLATE
.replace("${organizationId}", CONFIG.organizationId)
.replace("${visitorState}", JSON.stringify(offer.visitorState))
.replace("${content}", JSON.stringify(offer, null, ' '));
res.status(200).send(htmlResponse);
}
function sendSuccessResponse(res, response) {
res.set(getResponseHeaders());
saveCookie(res, response.targetCookie);
saveCookie(res, response.targetLocationHintCookie);
sendHtml(res, response);
}
function sendErrorResponse(res, error) {
res.set(getResponseHeaders());
res.status(500).send(error);
}
function getAddress(req) {
return { url: req.headers.host + req.originalUrl }
}
app.get("/", async (req, res) => {
const visitorCookie = req.cookies[TargetClient.getVisitorCookieName(CONFIG.organizationId)];
const targetCookie = req.cookies[TargetClient.TargetCookieName];
const targetLocationHintCookie = req.cookies[TargetClient.TargetLocationHintCookieName];
const request = {
execute: {
mboxes: [{
address: getAddress(req),
name: "a1-serverside-ab",
profileParameters: {
country: "usa"
}
}, {
address: getAddress(req),
name: "a1-serverside-xt",
profileParameters: {
country: "usa"
}
}]
}};
try {
const response = await targetClient.getOffers({ request, visitorCookie, targetCookie, targetLocationHintCookie });
sendSuccessResponse(res, response);
} catch (error) {
console.error("Target:", error);
sendErrorResponse(res, error);
}
});
app.listen(3000, function () {
console.log("Listening on port 3000 and watching!");
});