mep-feature-ads.js
8.19 KB
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
// VAST ads plugin
// Sponsored by Minoto Video
// 2013/02/01 0.5 research
// 2013/02/09 1.5 build loading mechanism
// 2013/02/10 2.5 events to play preroll, skip function, start/end calls, \
// 2013/02/11 2 click events
// ----
// 2013/02/23 3.5 split into a generic pre-roll plugin
(function($) {
// on time insert into head
$('head').append($('<style>' +
'.mejs-ads a {' +
' display: block; ' +
' position: absolute;' +
' right: 0;' +
' top: 0;' +
' width: 100%; ' +
' height: 100%; ' +
' display: block; ' +
'}' +
'.mejs-ads .mejs-ads-skip-block {' +
' display: block; ' +
' position: absolute;' +
' right: 0;' +
' top: 0;' +
' padding: 10px; ' +
' background: #000; ' +
' background: rgba(0,0,0,0.5); ' +
' color: #fff; ' +
'}' +
'.mejs-ads .mejs-ads-skip-button {' +
' cursor: pointer; ' +
'}' +
'.mejs-ads .mejs-ads-skip-button:hover {' +
' text-decoration: underline; ' +
'}' +
'</style>'));
$.extend(mejs.MepDefaults, {
// URL to a media file
adsPrerollMediaUrl: '',
// URL for lcicking ad
adsPrerollAdUrl: '',
// if true, allows user to skip the pre-roll ad
adsPrerollAdEnableSkip: false,
// if adsPrerollAdEnableSkip=true and this is a positive number, it will only allow skipping after the time has elasped
adsPrerollAdSkipSeconds: -1
});
$.extend(MediaElementPlayer.prototype, {
// allows other plugins to all this one
adsLoaded: false,
// prevents playback in until async ad data is ready (e.g. VAST)
adsDataIsLoading: false,
// stores the main media URL when an ad is playing
adsCurrentMediaUrl: '',
adsCurrentMediaDuration: 0,
// true when the user clicks play for the first time, or if autoplay is set
adsPlayerHasStarted: false,
buildads: function(player, controls, layers, media) {
var t = this;
if (t.adsLoaded) {
return;
} else {
t.adsLoaded = true;
}
// add layer for ad links and skipping
player.adsLayer =
$('<div class="mejs-layer mejs-overlay mejs-ads">' +
'<a href="#" target="_blank"> </a>' +
'<div class="mejs-ads-skip-block">' +
'<span class="mejs-ads-skip-message"></span>' +
'<span class="mejs-ads-skip-button">Skip Ad »</span>' +
'</div>' +
'</div>')
.insertBefore( layers.find('.mejs-overlay-play') )
.hide();
player.adsLayer.find('a')
.on('click', $.proxy(t.adsAdClick, t) );
player.adsSkipBlock = player.adsLayer.find('.mejs-ads-skip-block').hide();
player.adsSkipMessage = player.adsLayer.find('.mejs-ads-skip-message').hide();
player.adsSkipButton = player.adsLayer.find('.mejs-ads-skip-button')
.on('click', $.proxy(t.adsSkipClick, t) );
// create proxies (only needed for events we want to remove later)
t.adsMediaTryingToStartProxy = $.proxy(t.adsMediaTryingToStart, t);
t.adsPrerollStartedProxy = $.proxy(t.adsPrerollStarted, t);
t.adsPrerollMetaProxy = $.proxy(t.adsPrerollMeta, t);
t.adsPrerollUpdateProxy = $.proxy(t.adsPrerollUpdate, t);
t.adsPrerollEndedProxy = $.proxy(t.adsPrerollEnded, t);
// check for start
t.media.addEventListener('play', t.adsMediaTryingToStartProxy );
t.media.addEventListener('playing', t.adsMediaTryingToStartProxy );
t.media.addEventListener('canplay', t.adsMediaTryingToStartProxy );
t.media.addEventListener('loadedmetadata', t.adsMediaTryingToStartProxy );
console.log('setup ads', t.options.adsPrerollMediaUrl);
if (t.options.adsPrerollMediaUrl != '') {
t.adsStartPreroll();
}
},
adsMediaTryingToStart: function() {
var t = this;
// make sure to pause until the ad data is loaded
if (t.adsDataIsLoading && !t.media.paused) {
t.media.pause();
}
t.adsPlayerHasStarted = true;
},
adsStartPreroll: function() {
var t = this;
console.log('adsStartPreroll', 'url', t.options.adsPrerollMediaUrl);
t.media.addEventListener('loadedmetadata', t.adsPrerollMetaProxy );
t.media.addEventListener('playing', t.adsPrerollStartedProxy );
t.media.addEventListener('ended', t.adsPrerollEndedProxy )
t.media.addEventListener('timeupdate', t.adsPrerollUpdateProxy );
// change URLs to the preroll ad
t.adsCurrentMediaUrl = t.media.src;
t.adsCurrentMediaDuration = t.media.duration;
t.media.setSrc(t.options.adsPrerollMediaUrl);
t.media.load();
// if autoplay was on, or if the user pressed play
// while the ad data was still loading, then start the ad right away
if (t.adsPlayerHasStarted) {
t.media.play();
}
},
adsPrerollMeta: function() {
var t = this,
newDuration = 0;
console.log('loadedmetadata', t.media.duration, t.adsCurrentMediaDuration);
// if duration has been set, show that
if (t.options.duration > 0) {
newDuration = t.options.duration;
} else if (!isNaN(t.adsCurrentMediaDuration)) {
newDuration = t.adsCurrentMediaDuration;
}
setTimeout(function() {
t.controls.find('.mejs-duration').html(
mejs.Utility.secondsToTimeCode(newDuration, t.options.alwaysShowHours || newDuration > 3600, t.options.showTimecodeFrameCount, t.options.framesPerSecond || 25)
);
}, 250);
},
adsPrerollStarted: function() {
console.log('adsPrerollStarted');
var t = this;
t.media.removeEventListener('playing', t.adsPrerollStartedProxy);
// turn off controls until the preroll is done
t.disableControls();
t.hideControls();
// enable clicking through
t.adsLayer.show();
if (t.options.adsPrerollAdUrl != '') {
t.adsLayer.find('a').attr('href', t.options.adsPrerollAdUrl);
}
// possibly allow the skip button to work
if (t.options.adsPrerollAdEnableSkip) {
t.adsSkipBlock.show();
if (t.options.adsPrerollAdSkipSeconds > 0) {
t.adsSkipMessage.html('Skip in ' + t.options.adsPrerollAdSkipSeconds.toString() + ' seconds.').show();
t.adsSkipButton.hide();
} else {
t.adsSkipMessage.hide();
t.adsSkipButton.show();
}
} else {
t.adsSkipBlock.hide();
}
// send click events
t.container.trigger('mejsprerollstarted');
},
adsPrerollUpdate: function() {
//console.log('adsPrerollUpdate');
var t = this;
if (t.options.adsPrerollAdEnableSkip && t.options.adsPrerollAdSkipSeconds > 0) {
// update message
if (t.media.currentTime > t.options.adsPrerollAdSkipSeconds) {
t.adsSkipButton.show();
t.adsSkipMessage.hide();
} else {
t.adsSkipMessage.html('Skip in ' + Math.round( t.options.adsPrerollAdSkipSeconds - t.media.currentTime ).toString() + ' seconds.')
}
}
t.container.trigger('mejsprerolltimeupdate');
},
adsPrerollEnded: function() {
console.log('adsPrerollEnded');
var t = this;
t.container.trigger('mejsprerollended');
t.adRestoreMainMedia();
},
adRestoreMainMedia: function() {
console.log('adRestoreMainMedia', this.adsCurrentMediaUrl);
var t = this;
t.media.setSrc(t.adsCurrentMediaUrl);
setTimeout(function() {
t.media.load();
t.media.play();
}, 10);
t.enableControls();
t.showControls();
t.adsLayer.hide();
t.media.removeEventListener('ended', t.adsPrerollEndedProxy);
t.media.removeEventListener('loadedmetadata', t.adsPrerollMetaProxy);
t.media.removeEventListener('timeupdate', t.adsPrerollUpdateProxy);
t.container.trigger('mejsprerollmainstarted');
},
adsAdClick: function(e) {
console.log('adsAdClicked');
var t = this;
if (t.media.paused) {
t.media.play();
} else {
t.media.pause();
}
t.container.trigger('mejsprerolladsclicked');
},
adsSkipClick: function() {
console.log('adsSkipClick');
var t = this;
t.container.trigger('mejsprerollskipclicked');
t.container.trigger('mejsprerollended');
t.adRestoreMainMedia();
},
// fires off fake XHR requests
adsLoadUrl: function(url) {
console.log('adsLoadUrl', url);
var img = new Image(),
rnd = Math.round(Math.random()*100000);
img.src = url + ((url.indexOf('?') > 0) ? '&' : '?') + 'random' + rnd + '=' + rnd;
img.loaded = function() {
img = null;
}
}
});
})(mejs.$);