forked from prebid/Prebid.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.js
66 lines (56 loc) · 2.38 KB
/
video.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
import adapterManager from './adapterManager.js';
import { getBidRequest, deepAccess, logError } from './utils.js';
import { config } from '../src/config.js';
import includes from 'core-js-pure/features/array/includes.js';
import { hook } from './hook.js';
const VIDEO_MEDIA_TYPE = 'video';
export const OUTSTREAM = 'outstream';
export const INSTREAM = 'instream';
/**
* Helper functions for working with video-enabled adUnits
*/
export const videoAdUnit = adUnit => {
const mediaType = adUnit.mediaType === VIDEO_MEDIA_TYPE;
const mediaTypes = deepAccess(adUnit, 'mediaTypes.video');
return mediaType || mediaTypes;
};
export const videoBidder = bid => includes(adapterManager.videoAdapters, bid.bidder);
export const hasNonVideoBidder = adUnit =>
adUnit.bids.filter(bid => !videoBidder(bid)).length;
/**
* @typedef {object} VideoBid
* @property {string} adId id of the bid
*/
/**
* Validate that the assets required for video context are present on the bid
* @param {VideoBid} bid Video bid to validate
* @param {BidRequest[]} bidRequests All bid requests for an auction
* @return {Boolean} If object is valid
*/
export function isValidVideoBid(bid, bidRequests) {
const bidRequest = getBidRequest(bid.requestId, bidRequests);
const videoMediaType =
bidRequest && deepAccess(bidRequest, 'mediaTypes.video');
const context = videoMediaType && deepAccess(videoMediaType, 'context');
// if context not defined assume default 'instream' for video bids
// instream bids require a vast url or vast xml content
return checkVideoBidSetup(bid, bidRequest, videoMediaType, context);
}
export const checkVideoBidSetup = hook('sync', function(bid, bidRequest, videoMediaType, context) {
if (!bidRequest || (videoMediaType && context !== OUTSTREAM)) {
// xml-only video bids require a prebid cache url
if (!config.getConfig('cache.url') && bid.vastXml && !bid.vastUrl) {
logError(`
This bid contains only vastXml and will not work when a prebid cache url is not specified.
Try enabling prebid cache with $$PREBID_GLOBAL$$.setConfig({ cache: {url: "..."} });
`);
return false;
}
return !!(bid.vastUrl || bid.vastXml);
}
// outstream bids require a renderer on the bid or pub-defined on adunit
if (context === OUTSTREAM) {
return !!(bid.renderer || bidRequest.renderer || videoMediaType.renderer);
}
return true;
}, 'checkVideoBidSetup');