-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
566 lines (538 loc) · 19.1 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
const HLSSpliceVod = require("@eyevinn/hls-splice");
const fetch = require("node-fetch");
exports.handler = async (event) => {
let response;
let prefix = "/stitch";
if (process.env.PREFIX) {
prefix = process.env.PREFIX;
}
if (event.path === `${prefix}/` && event.httpMethod === "POST") {
response = await handleCreateRequest(event);
} else if (event.path.match(`${prefix}*`) && event.httpMethod === "OPTIONS") {
response = await handleOptionsRequest();
} else if (event.path === `${prefix}/master.m3u8`) {
response = await handleMasterManifestRequest(event);
} else if (event.path === `${prefix}/media.m3u8`) {
response = await handleMediaManifestRequest(event);
} else if (event.path === `${prefix}/audio.m3u8`) {
response = await handleAudioManifestRequest(event);
} else if (event.path.match(/\/stitch\/assetlist\/.*$/)) {
response = await handleAssetListRequest(event);
} else if (event.path === "/" && event.httpMethod === "GET") {
response = {
statusCode: 200,
body: "OK",
};
} else {
response = generateErrorResponse({ code: 404 });
}
return response;
};
const deserialize = (base64data) => {
const buff = Buffer.from(base64data, "base64");
return JSON.parse(buff.toString("ascii"));
};
const serialize = (payload) => {
const buff = Buffer.from(JSON.stringify(payload));
return buff.toString("base64");
};
const generateErrorResponse = ({ code: code, message: message }) => {
let response = {
statusCode: code,
headers: {
"Content-Type": "application/json",
"Access-Control-Allow-Origin": "*",
},
};
if (message) {
response.body = JSON.stringify({ reason: message });
}
return response;
};
const generateManifestResponse = (manifest) => {
return {
statusCode: 200,
headers: {
"Content-Type": "application/vnd.apple.mpegurl",
"Access-Control-Allow-Origin": "*",
},
body: manifest,
};
};
const generateJSONResponse = ({ code: code, data: data }) => {
let response = {
statusCode: code,
headers: {
"Content-Type": "application/json",
"Access-Control-Allow-Origin": "*",
},
};
if (data) {
response.body = JSON.stringify(data);
} else {
response.body = "{}";
}
return response;
};
const generateOptionsResponse = () => {
let response = {
statusCode: 204,
headers: {
"Access-Control-Allow-Origin": "*",
"Access-Control-Allow-Methods": "POST, GET, OPTIONS",
"Access-Control-Allow-Headers": "Content-Type, Origin",
"Access-Control-Max-Age": "86400",
},
};
return response;
};
const handleOptionsRequest = async () => {
try {
return generateOptionsResponse();
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to respond to OPTIONS request" });
}
};
const handleCreateRequest = async (event) => {
const prefix = process.env.PREFIX ? process.env.PREFIX : "/stitch";
try {
if (!event.body) {
return generateErrorResponse({ code: 400, message: "Missing request body" });
} else {
const payload = JSON.parse(event.body);
console.log("Received request to create stitched manifest");
console.log(payload);
if (!payload.uri) {
return generateErrorResponse({ code: 400, message: "Missing uri in payload" });
}
let responseBody = {
uri: `${prefix}/master.m3u8?payload=` + serialize(payload),
};
let response = {
statusCode: 200,
headers: {
"Content-Type": "application/json",
"Access-Control-Allow-Origin": "*",
},
body: JSON.stringify(responseBody),
};
return response;
}
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to create stitch request" });
}
};
const handleMediaManifestRequest = async (event) => {
try {
const bw = event.queryStringParameters.bw;
const encodedPayload = event.queryStringParameters.payload;
const useInterstitial = event.queryStringParameters.i && event.queryStringParameters.i === "1";
const combineInterstitial = event.queryStringParameters.c && event.queryStringParameters.c === "1";
console.log(
`Received request /media.m3u8 (bw=${bw}, payload=${encodedPayload}, useInterstitial=${useInterstitial}, combineInterstitial=${combineInterstitial})`
);
const hlsVod = await createVodFromPayload(encodedPayload, {
baseUrlFromSource: true,
subdir: event.queryStringParameters.subdir,
useInterstitial,
combineInterstitial,
});
const mediaManifest = (await hlsVod).getMediaManifest(bw);
return generateManifestResponse(mediaManifest);
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to generate media manifest" });
}
};
const handleAudioManifestRequest = async (event) => {
try {
const groupid = event.queryStringParameters.groupid;
const language = event.queryStringParameters.language;
const encodedPayload = event.queryStringParameters.payload;
const useInterstitial = event.queryStringParameters.i && event.queryStringParameters.i === "1";
const combineInterstitial = event.queryStringParameters.c && event.queryStringParameters.c === "1";
console.log(
`Received request /audio.m3u8 (groupid=${groupid}, lang=${language}, payload=${encodedPayload}, useInterstitial=${useInterstitial}, combineInterstitial=${combineInterstitial})`
);
const hlsVod = await createVodFromPayload(encodedPayload, {
baseUrlFromSource: true,
subdir: event.queryStringParameters.subdir,
useInterstitial,
combineInterstitial,
});
const audioManifest = await hlsVod.getAudioManifest(groupid, language);
return generateManifestResponse(audioManifest);
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to generate media manifest" });
}
};
const handleMasterManifestRequest = async (event) => {
try {
const encodedPayload = event.queryStringParameters.payload;
console.log(`Received request /master.m3u8 (payload=${encodedPayload})`);
if (!encodedPayload) {
console.error(`Request missing payload`);
console.log(event.queryStringParameters);
return generateErrorResponse({ code: 400, message: "Missing payload in request" });
} else {
const useInterstitial = event.queryStringParameters.i && event.queryStringParameters.i === "1";
const combineInterstitial = event.queryStringParameters.c && event.queryStringParameters.c === "1";
const nosubs = event.queryStringParameters.f && event.queryStringParameters.f === "nosubtitles";
const manifest = await getMasterManifest(encodedPayload);
const rewrittenManifest = await rewriteMasterManifest(manifest, encodedPayload, {
useInterstitial,
combineInterstitial,
nosubs,
});
return generateManifestResponse(rewrittenManifest);
}
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to generate master manifest" });
}
};
const handleAssetListRequest = async (event) => {
try {
let encodedPayload;
const m = event.path.match(/\/assetlist\/(.*)$/);
if (m) {
encodedPayload = m[1];
}
console.log(`Received request /assetlist (payload=${encodedPayload})`);
if (!encodedPayload) {
console.error("Request missing payload");
console.log(event.queryStringParameters);
return generateErrorResponse({ code: 400, message: "Missing payload in request" });
} else {
const assetlist = await createAssetListFromPayload(encodedPayload);
return generateJSONResponse({ code: 200, data: assetlist });
}
} catch (exc) {
console.error(exc);
return generateErrorResponse({ code: 500, message: "Failed to generate an assetlist" });
}
};
const getMasterManifest = async (encodedPayload, opts) => {
const payload = deserialize(encodedPayload);
const response = await fetch(payload.uri);
return await response.text();
};
const rewriteMasterManifest = async (manifest, encodedPayload, opts) => {
const prefix = process.env.PREFIX ? process.env.PREFIX : "/stitch";
let rewrittenManifest = "";
const lines = manifest.split("\n");
let bw = null;
let group = null;
let grouplang = null;
let trackname = null;
for (let i = 0; i < lines.length; i++) {
let l = lines[i];
if (opts && opts.nosubs) {
if (l.includes("#EXT-X-MEDIA") && l.includes("TYPE=SUBTITLES")) {
continue;
}
if (l.includes("#EXT-X-STREAM-INF") && l.includes("SUBTITLES")) {
let splitLines = l.split(",");
let withoutSubs = splitLines.filter((s) => !s.includes("SUBTITLES"));
l = withoutSubs.join(",");
}
}
if (l.includes("#EXT-X-MEDIA") && l.includes("TYPE=AUDIO") && l.includes("GROUP-ID")) {
let subdir = "";
let splitLines = l.split(",");
let audioUri = splitLines.filter((s) => s.includes("URI="));
group = splitLines.filter((s) => s.includes("GROUP-ID="));
grouplang = splitLines.filter((s) => s.includes("LANGUAGE="));
trackname = splitLines.filter((s) => s.includes("NAME="));
group = group.length > 0 ? group[0].split("=").pop().replace('"', "").replace('"', "") : group;
grouplang =
grouplang.length > 0
? grouplang[0].split("=").pop().replace('"', "").replace('"', "")
: trackname.length > 0
? trackname[0].split("=").pop().replace('"', "").replace('"', "")
: grouplang;
if (audioUri.length > 0) {
let aUri = audioUri[0].slice(5);
if ((m = aUri.match(/^[^#]/))) {
let n = aUri.match("^(.*)/.*?");
if (n) {
subdir = n[1];
}
}
let newUri = "";
let useInterstitial = opts && opts.useInterstitial;
let combineInterstitial = opts && opts.combineInterstitial;
newUri =
`${prefix}/audio.m3u8?groupid=` +
group +
"&language=" +
grouplang +
"&payload=" +
encodedPayload +
(subdir ? "&subdir=" + subdir : "") +
(useInterstitial ? "&i=1" : "") +
(combineInterstitial ? "&c=1" : "");
let withoutUri = splitLines.filter((s) => !s.includes("URI="));
withoutUri.push(`URI="${newUri}"\n`);
const fixedline = withoutUri.join(",");
rewrittenManifest += fixedline;
continue;
}
}
if ((m = l.match(/BANDWIDTH=(.*?)\D+/))) {
bw = m[1];
if (!l.match(/^#EXT-X-I-FRAME-STREAM-INF/)) {
rewrittenManifest += l + "\n";
}
} else if ((m = l.match(/^[^#]/))) {
let subdir = "";
let n = l.match("^(.*)/.*?");
if (n) {
subdir = n[1];
}
let useInterstitial = opts && opts.useInterstitial;
let combineInterstitial = opts && opts.combineInterstitial;
rewrittenManifest +=
`${prefix}/media.m3u8?bw=` +
bw +
"&payload=" +
encodedPayload +
(subdir ? "&subdir=" + subdir : "") +
(useInterstitial ? "&i=1" : "") +
(combineInterstitial ? "&c=1" : "") +
"\n";
} else {
rewrittenManifest += l + "\n";
}
}
return rewrittenManifest;
};
const createVodFromPayload = async (encodedPayload, opts) => {
const payload = deserialize(encodedPayload);
const uri = payload.uri;
let vodOpts = {
merge: true,
};
if (opts && opts.baseUrlFromSource) {
const m = uri.match("^(.*)/.*?");
if (m) {
vodOpts.baseUrl = m[1] + "/";
}
if (opts.subdir) {
vodOpts.baseUrl += opts.subdir + "/";
}
}
const hlsVod = new HLSSpliceVod(uri, vodOpts);
await hlsVod.load();
adpromises = [];
if (opts && (opts.useInterstitial || opts.combineInterstitial)) {
const assetListPayload = {
assets: [],
};
const GROUP_BREAKS = (
breaks,
opts = {
interstitialOnly: false,
combo: false,
}
) => {
const _getAssetListUrlItem = (breaks) => {
return breaks.filter((b) => b.assetListUrl && !b.url);
};
const _getHybridItem = (breaks) => {
return breaks.filter((b) => b.assetListUrl && b.url);
};
let groupedBreaks = {};
breaks.forEach((b) => {
if (!groupedBreaks[b.pos]) {
groupedBreaks[b.pos] = [];
}
groupedBreaks[b.pos].push(b);
});
if (opts) {
let fixedGroupedBreaks = {};
Object.keys(groupedBreaks).forEach((pos) => {
const breaksAtPos = groupedBreaks[pos];
const assetListUrlItem = _getAssetListUrlItem(breaksAtPos);
const hybridItem = _getHybridItem(breaksAtPos);
if (opts.interstitialOnly && assetListUrlItem.length > 0) {
// Only keep the assetlisturl item
fixedGroupedBreaks[pos] = assetListUrlItem;
} else if (hybridItem.length > 0) {
const hybridItemsAssetListUrl = hybridItem[0].assetListUrl;
// add hybriditemsassetlisturl to all items in breaksAtPos
breaksAtPos.forEach((b) => {
b.assetListUrl = hybridItemsAssetListUrl;
});
fixedGroupedBreaks[pos] = breaksAtPos;
} else if (opts.combo && assetListUrlItem.length > 0) {
// Make our own hybrid items
const hybridItems = [];
const assetListUrlItemsAssetListUrl = assetListUrlItem[0].assetListUrl;
breaksAtPos.forEach((b) => {
if (b.url) {
hybridItems.push({ ...b, assetListUrl: assetListUrlItemsAssetListUrl });
}
});
if (hybridItems.length > 0) {
fixedGroupedBreaks[pos] = hybridItems;
} else {
fixedGroupedBreaks[pos] = breaksAtPos;
}
} else {
fixedGroupedBreaks[pos] = breaksAtPos;
}
});
Object.keys(fixedGroupedBreaks).forEach((pos) => {
const breaksAtPos = fixedGroupedBreaks[pos];
fixedGroupedBreaks[pos] = breaksAtPos.filter((b) => b.assetListUrl || b.url);
});
return fixedGroupedBreaks;
}
return groupedBreaks;
};
// check if any breaks have a 'assetListUrl' property
// if so, then filter out all breakItems that have 'assetListUrl' property
let payloadBreaksToUse;
const breaksWithAssetList = payload.breaks.filter((b) => b.assetListUrl !== undefined);
if (breaksWithAssetList.length > 0 && !opts.combineInterstitial) {
payloadBreaksToUse = breaksWithAssetList;
} else {
payloadBreaksToUse = payload.breaks;
}
const breakGroupsDict = GROUP_BREAKS(payloadBreaksToUse, {
interstitialOnly: opts.useInterstitial,
combo: opts.combineInterstitial,
});
let previousBreakDuration = 0;
let _id = Object.keys(breakGroupsDict).length + 1;
for (let bidx = 0; bidx < Object.keys(breakGroupsDict).length; bidx++) {
assetListPayload.assets = []; // Reset Asset List Payload
let breakPosition = Object.keys(breakGroupsDict)[bidx];
const breakGroup = breakGroupsDict[breakPosition];
let breakDur = 0;
let interstitialOpts = {
resumeOffset: 0,
};
let ASSET_LIST_URL;
let insertAtListPromises = [];
// For every ad with the same position
for (let ad of breakGroup) {
// Get All HLS Interstitial options
if (ad.pol !== undefined) {
interstitialOpts.playoutLimit = ad.pol;
}
if (ad.cue !== undefined) {
interstitialOpts.cue = ad.cue;
}
if (ad.sn !== undefined) {
interstitialOpts.snap = ad.sn;
}
if (ad.ro !== undefined) {
interstitialOpts.resumeOffset = ad.ro;
}
if (ad.ro !== undefined) {
interstitialOpts.resumeOffset = ad.ro;
}
if (ad.re !== undefined) {
interstitialOpts.restrict = ad.re;
}
if (ad.cmv !== undefined) {
interstitialOpts.contentmayvary = ad.cmv;
}
if (ad.tlo !== undefined) {
interstitialOpts.timelineoccupies = ad.tlo;
}
if (ad.tls !== undefined) {
interstitialOpts.timelinestyle = ad.tls;
}
if (ad.cb !== undefined) {
interstitialOpts.custombeacon = ad.cb;
}
if (opts.useInterstitial) {
interstitialOpts.plannedDuration = ad.duration;
}
// Create the Asset List Stitcher Payload
const assetItem = {
uri: ad.url,
dur: ad.duration / 1000,
};
breakDur += ad.duration;
assetListPayload.assets.push(assetItem);
if (opts.combineInterstitial && ad.url) {
insertAtListPromises.push(() => hlsVod.insertAdAt(ad.pos, ad.url));
interstitialOpts.resumeOffset = breakDur;
}
}
// Set the Asset List URL
if (breaksWithAssetList.length > 0) {
// filter for item that has 'assetListUrl' field
const assetListUrlItems = breaksWithAssetList.filter((b) => b.assetListUrl && breakPosition == b.pos);
if (assetListUrlItems.length > 0) {
ASSET_LIST_URL = new URL(assetListUrlItems[0].assetListUrl);
}
if (opts.combineInterstitial) {
interstitialOpts.plannedDuration = breakDur;
}
} else {
let baseUrl = process.env.ASSET_LIST_BASE_URL || "";
try {
interstitialOpts.plannedDuration = breakDur;
interstitialOpts.addDeltaOffset = breakPosition == 0 || opts.useInterstitial ? false : true;
const encodedAssetListPayload = encodeURIComponent(serialize(assetListPayload));
ASSET_LIST_URL = new URL(baseUrl + `/stitch/assetlist/${encodedAssetListPayload}`);
} catch (err) {
console.error(
"Failed to make ASSET_LIST_URL->",
err,
`${baseUrl != "" ? baseUrl : "\nEnvironment variable 'ASSET_LIST_BASE_URL' is required!"}`
);
return hlsVod;
}
}
// Create Promise to insert Interstitial at Break Position
if (opts && opts.combineInterstitial && insertAtListPromises.length > 0) {
interstitialOpts.previousBreakDuration = previousBreakDuration;
}
if (ASSET_LIST_URL && ASSET_LIST_URL.href) {
adpromises.push(() =>
hlsVod.insertInterstitialAt(
breakPosition,
`Ad-Break-${--_id}.${Date.now()}`,
ASSET_LIST_URL && ASSET_LIST_URL.href ? ASSET_LIST_URL.href : "",
true,
interstitialOpts
)
);
}
insertAtListPromises.forEach((i) => {
adpromises.push(i);
});
previousBreakDuration = breakDur;
}
} else {
for (let i = 0; i < payload.breaks.length; i++) {
const b = payload.breaks[i];
adpromises.push(() => hlsVod.insertAdAt(b.pos, b.url));
}
}
for (let promiseFn of adpromises.reverse()) {
await promiseFn();
}
return hlsVod;
};
const createAssetListFromPayload = async (encodedPayload) => {
const payload = deserialize(decodeURIComponent(encodedPayload));
let assetDescriptions = [];
for (let i = 0; i < payload.assets.length; i++) {
const asset = payload.assets[i];
assetDescriptions.push({
URI: asset.uri,
DURATION: asset.dur,
});
}
return { ASSETS: assetDescriptions };
};