mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-25 17:45:03 +03:00
c2105a362b
This CL does: - define CS IMA externs - define Ad Insertion classes and sctructures - add a (non-working) skeleton for the Ad UI - provide a (working) early draft of the CS implementation This CL does not: - add any SS logic - have a working ad UI - provide a final and complete implementation for the CS logic - fully follow the finalized Ad Insertion design Change-Id: I645cdcb3a1d4041792b940c2d6faf011be5eb682
58 lines
1.3 KiB
JavaScript
58 lines
1.3 KiB
JavaScript
/**
|
|
* @license
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* 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
|
|
*
|
|
* http://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.
|
|
*/
|
|
|
|
|
|
goog.provide('shaka.ui.AdManager');
|
|
|
|
goog.require('shaka.ui.ClientSideAdManager');
|
|
|
|
|
|
/**
|
|
* A class responsible for ad-related interactions.
|
|
* @export
|
|
*/
|
|
shaka.ui.AdManager = class {
|
|
/**
|
|
* @param {!shaka.ui.Controls} controls
|
|
*/
|
|
constructor(controls) {
|
|
this.csAdManager_ =
|
|
new shaka.ui.ClientSideAdManager(controls);
|
|
|
|
// TODO: Server side
|
|
}
|
|
|
|
|
|
/**
|
|
* @param {!google.ima.AdsRequest} imaRequest
|
|
*/
|
|
requestClientSideAds(imaRequest) {
|
|
this.csAdManager_.requestAds(imaRequest);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param {string} assetKey
|
|
* @param {string} assetId
|
|
* @param {boolean} isLive
|
|
* @param {string=} backupUrl
|
|
*/
|
|
loadServerSideStream(assetKey, assetId, isLive, backupUrl) {
|
|
// TODO
|
|
}
|
|
};
|