-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.js
216 lines (184 loc) · 5.39 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/*
Copyright 2022 Google LLC
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
https://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.
*/
// SSP_A
import express from 'express';
import path from 'path';
import {readFile} from 'fs/promises';
import url from 'url';
const __filename = url.fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const {
EXTERNAL_PORT,
PORT,
SSP_A_HOST,
SSP_B_HOST,
SSP_A_DETAIL,
SSP_A_TOKEN,
DSP_A_HOST,
DSP_A_URI,
DSP_B_HOST,
DSP_B_URI,
SHOP_HOST,
NEWS_HOST,
} = process.env;
const DSP_A = new URL(`https://${DSP_A_HOST}:${EXTERNAL_PORT}`);
const DSP_B = new URL(`https://${DSP_B_HOST}:${EXTERNAL_PORT}`);
const SSP_A = new URL(`https://${SSP_A_HOST}:${EXTERNAL_PORT}`);
const app = express();
app.use((req, res, next) => {
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Origin-Trial', SSP_A_TOKEN);
next();
});
const ALLOWED_HOSTNAMES = [
DSP_A_HOST,
DSP_B_HOST,
SSP_A_HOST,
SSP_B_HOST,
NEWS_HOST,
];
app.use((req, res, next) => {
// opt-in fencedframe
if (req.get('sec-fetch-dest') === 'fencedframe') {
res.setHeader('Supports-Loading-Mode', 'fenced-frame');
}
if (ALLOWED_HOSTNAMES.includes(req.hostname)) {
res.setHeader('Access-Control-Allow-Origin', '*');
}
next();
});
app.use(
express.static('src/public', {
setHeaders: (res, path) => {
const shouldAddAuctionHeader = [
'decision-logic.js',
'trusted.json',
'direct.json',
].some((fileName) => path.includes(fileName));
if (shouldAddAuctionHeader) {
return res.set('Ad-Auction-Allowed', 'true');
}
if (path.endsWith('/run-ad-auction.js')) {
res.set('Supports-Loading-Mode', 'fenced-frame');
res.set('Permissions-Policy', 'run-ad-auction=(*)');
}
},
}),
);
app.set('view engine', 'ejs');
app.set('views', 'src/views');
app.get('/', async (req, res) => {
const title = SSP_A_DETAIL;
res.render('index.html.ejs', {
title,
DSP_A_HOST,
DSP_B_HOST,
SSP_A_HOST,
EXTERNAL_PORT,
SHOP_HOST,
});
});
app.get('/ad-tag.html', async (req, res) => {
res.render('ad-tag.html.ejs');
});
app.get('/video-ad-tag.html', async (req, res) => {
res.render('video-ad-tag.html.ejs');
});
async function getHeaderBiddingAd() {
const headerBids = await Promise.all(
[`${DSP_A_URI}/header-bid`, `${DSP_B_URI}/header-bid`].map(
async (dspUrl) => {
const response = await fetch(dspUrl);
const result = await response.json();
return result;
},
),
);
const [highestBid] = headerBids.sort((a, b) => b.bid - a.bid);
return highestBid;
}
function getComponentAuctionConfig() {
return {
seller: SSP_A,
decisionLogicUrl: `${SSP_A}js/decision-logic.js`,
trustedScoringSignalsURL: `${SSP_A}/signals/trusted.json`,
directFromSellerSignals: `${SSP_A}/signals/direct.json`,
interestGroupBuyers: [DSP_A, DSP_B],
perBuyerSignals: {
[DSP_A]: {'some-key': 'some-value'},
[DSP_B]: {'some-key': 'some-value'},
},
// After M123, you will be able to pass in data from the winning SSP to the
// ad creative using deprecatedReplaceInURN for component sellers:
// https://github.com/WICG/turtledove/issues/286#issuecomment-1910551260
//
// deprecatedReplaceInURN: {
// '%%SSP_VAST_URI%%': `${SSP_A}/vast/preroll.xml`,
// }
};
}
app.get('/header-bid', async (req, res) => {
res.json({
seller: SSP_A,
headerBiddingAd: await getHeaderBiddingAd(),
componentAuctionConfig: getComponentAuctionConfig(),
});
});
async function getAdServerAd() {
const adServerBids = await Promise.all(
[`${DSP_A_URI}/ad-server-bid`, `${DSP_B_URI}/ad-server-bid`].map(
async (dspUrl) => {
const response = await fetch(dspUrl);
const result = await response.json();
return result;
},
),
);
const [highestBid] = adServerBids.sort((a, b) => b.bid - a.bid);
return highestBid;
}
app.get('/ad-server-bid', async (req, res) => {
res.json({
seller: SSP_A,
adServerAd: await getAdServerAd(),
});
});
// The macros are replaced with the DSP VAST URI and the auction ID
function transformVast(sspVast, dspVastUri, auctionId) {
const vastWithDspUri = sspVast.replace(
'%%DSP_VAST_URI%%',
decodeURIComponent(dspVastUri),
);
const vastWithAuctionId = vastWithDspUri.replaceAll(
'%%AUCTION_ID%%',
auctionId,
);
return vastWithAuctionId;
}
// Responds with the finalized VAST XML that wraps the SSP VAST XML around the DSP VAST URI
app.get('/vast', async (req, res) => {
const {dspVastUri, auctionId} = req.query;
const sspVast = await readFile(
path.resolve(__dirname + '/public/vast/preroll.xml'),
'utf8',
);
const wrappedVast = transformVast(sspVast, dspVastUri, auctionId);
res.type('application/xml');
res.send(wrappedVast);
});
app.get('/reporting/:reportType', (req, res) => {
res.send(200);
});
app.listen(PORT, function () {
console.log(`Listening on port ${PORT}`);
});