mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-16 16:16:40 +03:00
dc8b007d56
This is a port of the internal changes: cr/321495405, cr/321592702, and cr/321594488. Change-Id: If6a4c4266ed10a70b01442974dbd19329bb5122e
222 lines
3.7 KiB
JavaScript
222 lines
3.7 KiB
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
|
|
goog.provide('shaka.ads.ClientSideAd');
|
|
|
|
goog.require('shaka.util.EventManager');
|
|
|
|
|
|
/**
|
|
* @implements {shaka.extern.IAd}
|
|
* @export
|
|
*/
|
|
shaka.ads.ClientSideAd = class {
|
|
/**
|
|
* @param {!google.ima.Ad} imaAd
|
|
* @param {!google.ima.AdsManager} imaAdManager
|
|
*/
|
|
constructor(imaAd, imaAdManager) {
|
|
/** @private {google.ima.Ad} */
|
|
this.ad_ = imaAd;
|
|
|
|
/** @private {google.ima.AdsManager} */
|
|
this.manager_ = imaAdManager;
|
|
|
|
/** @private {boolean} */
|
|
this.isPaused_ = false;
|
|
|
|
/** @private {number} */
|
|
this.volume_ = this.manager_.getVolume();
|
|
|
|
/** @private {shaka.util.EventManager} */
|
|
this.eventManager_ = new shaka.util.EventManager();
|
|
|
|
this.eventManager_.listen(this.manager_,
|
|
google.ima.AdEvent.Type.PAUSED, () => {
|
|
this.isPaused_ = true;
|
|
});
|
|
|
|
this.eventManager_.listen(this.manager_,
|
|
google.ima.AdEvent.Type.RESUMED, () => {
|
|
this.isPaused_ = false;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getDuration() {
|
|
return this.ad_.getDuration();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getRemainingTime() {
|
|
return this.manager_.getRemainingTime();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
isPaused() {
|
|
return this.isPaused_;
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
isSkippable() {
|
|
// IMA returns -1 for non-skippable ads. Any positive number is a genuine
|
|
// skip offset, meaning the ad is skippable.
|
|
return this.ad_.getSkipTimeOffset() >= 0;
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getTimeUntilSkippable() {
|
|
const skipOffset = this.ad_.getSkipTimeOffset();
|
|
const canSkipIn = this.getRemainingTime() - skipOffset;
|
|
return Math.max(canSkipIn, 0);
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
canSkipNow() {
|
|
return this.manager_.getAdSkippableState();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
skip() {
|
|
return this.manager_.skip();
|
|
}
|
|
|
|
/**
|
|
* @param {boolean} paused
|
|
*/
|
|
setPaused(paused) {
|
|
this.isPaused_ = paused;
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
pause() {
|
|
return this.manager_.pause();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
play() {
|
|
return this.manager_.resume();
|
|
}
|
|
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getVolume() {
|
|
return this.manager_.getVolume();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
setVolume(volume) {
|
|
return this.manager_.setVolume(volume);
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
isMuted() {
|
|
return this.manager_.getVolume() == 0;
|
|
}
|
|
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
resize(width, height) {
|
|
const viewMode = document.fullscreenElement ?
|
|
google.ima.ViewMode.FULLSCREEN : google.ima.ViewMode.NORMAL;
|
|
this.manager_.resize(width, height, viewMode);
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
setMuted(muted) {
|
|
// Emulate the "mute" functionality, where current, pre-mute
|
|
// volume is saved and can be restored on unmute.
|
|
if (muted) {
|
|
this.volume_ = this.getVolume();
|
|
this.setVolume(0);
|
|
} else {
|
|
this.setVolume(this.volume_);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getSequenceLength() {
|
|
const podInfo = this.ad_.getAdPodInfo();
|
|
if (podInfo == null) {
|
|
// No pod, just one ad.
|
|
return 1;
|
|
}
|
|
|
|
return podInfo.getTotalAds();
|
|
}
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
getPositionInSequence() {
|
|
const podInfo = this.ad_.getAdPodInfo();
|
|
if (podInfo == null) {
|
|
// No pod, just one ad.
|
|
return 1;
|
|
}
|
|
|
|
return podInfo.getAdPosition();
|
|
}
|
|
|
|
|
|
/**
|
|
* @override
|
|
* @export
|
|
*/
|
|
release() {
|
|
this.ad_ = null;
|
|
this.manager_ = null;
|
|
}
|
|
};
|