Source: lib/ads/ad_manager.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.ads.AdManager');
  7. goog.require('goog.asserts');
  8. goog.require('shaka.Deprecate');
  9. goog.require('shaka.Player');
  10. goog.require('shaka.ads.AdsStats');
  11. goog.require('shaka.ads.ClientSideAdManager');
  12. goog.require('shaka.ads.InterstitialAdManager');
  13. goog.require('shaka.ads.MediaTailorAdManager');
  14. goog.require('shaka.ads.Utils');
  15. goog.require('shaka.ads.ServerSideAdManager');
  16. goog.require('shaka.log');
  17. goog.require('shaka.util.Error');
  18. goog.require('shaka.util.FakeEvent');
  19. goog.require('shaka.util.FakeEventTarget');
  20. goog.require('shaka.util.IReleasable');
  21. /**
  22. * @event shaka.ads.AdManager.AdsLoadedEvent
  23. * @description Fired when a sequence of ads has been loaded.
  24. * @property {string} type
  25. * 'ads-loaded'
  26. * @property {number} loadTime
  27. * The time it takes to load ads.
  28. * @exportDoc
  29. */
  30. /**
  31. * @event shaka.ads.AdManager.AdStartedEvent
  32. * @description Fired when an ad has started playing.
  33. * @property {string} type
  34. * 'ad-started'
  35. * @property {!shaka.extern.IAd} ad
  36. * The ad that has started playing.
  37. * @property {Object} sdkAdObject
  38. * The ad object in the SDK format, if there is one.
  39. * @property {Object} originalEvent
  40. * The native SDK event, if available.
  41. * @exportDoc
  42. */
  43. /**
  44. * @event shaka.ads.AdManager.AdCompleteEvent
  45. * @description Fired when an ad has played through.
  46. * @property {string} type
  47. * 'ad-complete'
  48. * @property {Object} originalEvent
  49. * The native SDK event, if available.
  50. * @exportDoc
  51. */
  52. /**
  53. * @event shaka.ads.AdManager.AdSkippedEvent
  54. * @description Fired when an ad has been skipped.
  55. * @property {string} type
  56. * 'ad-skipped'
  57. * @property {Object} originalEvent
  58. * The native SDK event, if available.
  59. * @exportDoc
  60. */
  61. /**
  62. * @event shaka.ads.AdManager.AdFirstQuartileEvent
  63. * @description Fired when an ad has played through the first 1/4.
  64. * @property {string} type
  65. * 'ad-first-quartile'
  66. * @property {Object} originalEvent
  67. * The native SDK event, if available.
  68. * @exportDoc
  69. */
  70. /**
  71. * @event shaka.ads.AdManager.AdMidpointEvent
  72. * @description Fired when an ad has played through its midpoint.
  73. * @property {string} type
  74. * 'ad-midpoint'
  75. * @property {Object} originalEvent
  76. * The native SDK event, if available.
  77. * @exportDoc
  78. */
  79. /**
  80. * @event shaka.ads.AdManager.AdThirdQuartileEvent
  81. * @description Fired when an ad has played through the third quartile.
  82. * @property {string} type
  83. * 'ad-third-quartile'
  84. * @property {Object} originalEvent
  85. * The native SDK event, if available.
  86. * @exportDoc
  87. */
  88. /**
  89. * @event shaka.ads.AdManager.AdStoppedEvent
  90. * @description Fired when an ad has stopped playing, was skipped,
  91. * or was unable to proceed due to an error.
  92. * @property {string} type
  93. * 'ad-stopped'
  94. * @property {Object} originalEvent
  95. * The native SDK event, if available.
  96. * @exportDoc
  97. */
  98. /**
  99. * @event shaka.ads.AdManager.AdVolumeChangedEvent
  100. * @description Fired when an ad's volume changed.
  101. * @property {string} type
  102. * 'ad-volume-changed'
  103. * @property {Object} originalEvent
  104. * The native SDK event, if available.
  105. * @exportDoc
  106. */
  107. /**
  108. * @event shaka.ads.AdManager.AdMutedEvent
  109. * @description Fired when an ad was muted.
  110. * @property {string} type
  111. * 'ad-muted'
  112. * @property {Object} originalEvent
  113. * The native SDK event, if available.
  114. * @exportDoc
  115. */
  116. /**
  117. * @event shaka.ads.AdManager.AdPausedEvent
  118. * @description Fired when an ad was paused.
  119. * @property {string} type
  120. * 'ad-paused'
  121. * @property {Object} originalEvent
  122. * The native SDK event, if available.
  123. * @exportDoc
  124. */
  125. /**
  126. * @event shaka.ads.AdManager.AdResumedEvent
  127. * @description Fired when an ad was resumed after a pause.
  128. * @property {string} type
  129. * 'ad-resumed'
  130. * @property {Object} originalEvent
  131. * The native SDK event, if available.
  132. * @exportDoc
  133. */
  134. /**
  135. * @event shaka.ads.AdManager.AdSkipStateChangedEvent
  136. * @description Fired when an ad's skip state changes (for example, when
  137. * it becomes possible to skip the ad).
  138. * @property {string} type
  139. * 'ad-skip-state-changed'
  140. * @property {Object} originalEvent
  141. * The native SDK event, if available.
  142. * @exportDoc
  143. */
  144. /**
  145. * @event shaka.ads.AdManager.AdCuePointsChangedEvent
  146. * @description Fired when the ad cue points change, signalling ad breaks
  147. * change.
  148. * @property {string} type
  149. * 'ad-cue-points-changed'
  150. * @property {!Array.<!shaka.extern.AdCuePoint>} cuepoints
  151. * The ad cue points, if available.
  152. * @exportDoc
  153. */
  154. /**
  155. * @event shaka.ads.AdManager.AdProgressEvent
  156. * @description Fired when there is an update to the current ad's progress.
  157. * @property {string} type
  158. * 'ad-progress'
  159. * @property {Object} originalEvent
  160. * The native SDK event, if available.
  161. * @exportDoc
  162. */
  163. /**
  164. * @event shaka.ads.AdManager.AdBufferingEvent
  165. * @description Fired when the ad has stalled playback to buffer.
  166. * @property {string} type
  167. * 'ad-buffering'
  168. * @property {Object} originalEvent
  169. * The native SDK event, if available.
  170. * @exportDoc
  171. */
  172. /**
  173. * @event shaka.ads.AdManager.AdImpressionEvent
  174. * @description Fired when the impression URL has been pinged.
  175. * @property {string} type
  176. * 'ad-impression'
  177. * @property {Object} originalEvent
  178. * The native SDK event, if available.
  179. * @exportDoc
  180. */
  181. /**
  182. * @event shaka.ads.AdManager.AdClickEvent
  183. * @description Fired when the ad was clicked.
  184. * @property {string} type
  185. * 'ad-clicked'
  186. * @property {Object} originalEvent
  187. * The native SDK event, if available.
  188. * @exportDoc
  189. */
  190. /**
  191. * @event shaka.ads.AdManager.AdDurationChangedEvent
  192. * @description Fired when the ad's duration changes.
  193. * @property {string} type
  194. * 'ad-duration-changed'
  195. * @property {Object} originalEvent
  196. * The native SDK event, if available.
  197. * @exportDoc
  198. */
  199. /**
  200. * @event shaka.ads.AdManager.AdClosedEvent
  201. * @description Fired when the ad was closed by the user.
  202. * @property {string} type
  203. * 'ad-closed'
  204. * @property {Object} originalEvent
  205. * The native SDK event, if available.
  206. * @exportDoc
  207. */
  208. /**
  209. * @event shaka.ads.AdManager.AdLoadedEvent
  210. * @description Fired when the ad data becomes available.
  211. * @property {string} type
  212. * 'ad-loaded'
  213. * @property {Object} originalEvent
  214. * The native SDK event, if available.
  215. * @exportDoc
  216. */
  217. /**
  218. * @event shaka.ads.AdManager.AllAdsCompletedEvent
  219. * @description Fired when the ads manager is done playing all the ads.
  220. * @property {string} type
  221. * 'all-ads-completed'
  222. * @property {Object} originalEvent
  223. * The native SDK event, if available.
  224. * @exportDoc
  225. */
  226. /**
  227. * @event shaka.ads.AdManager.AdLinearChangedEvent
  228. * @description Fired when the displayed ad changes from
  229. * linear to nonlinear, or vice versa.
  230. * @property {string} type
  231. * 'ad-linear-changed'
  232. * @property {Object} originalEvent
  233. * The native SDK event, if available.
  234. * @exportDoc
  235. */
  236. /**
  237. * @event shaka.ads.AdManager.AdMetadataEvent
  238. * @description Fired when the ad's metadata becomes available.
  239. * @property {string} type
  240. * 'ad-metadata'
  241. * @property {Object} originalEvent
  242. * The native SDK event, if available.
  243. * @exportDoc
  244. */
  245. /**
  246. * @event shaka.ads.AdManager#AdBreakReadyEvent
  247. * @description Fired when the client-side SDK is ready to play a
  248. * VPAID ad or an ad rule.
  249. * @property {string} type
  250. * 'ad-break-ready'
  251. * @property {Object} originalEvent
  252. * The native SDK event, if available.
  253. * @exportDoc
  254. */
  255. /**
  256. * @event shaka.ads.AdManager.AdRecoverableErrorEvent
  257. * @description Fired when the a non-fatal error was encountered.
  258. * The presentation will continue with the same or next ad playback
  259. * depending on the error situation.
  260. * @property {string} type
  261. * 'ad-recoverable-error'
  262. * @property {Object} originalEvent
  263. * The native SDK event, if available.
  264. * @exportDoc
  265. */
  266. /**
  267. * @event shaka.ads.Utils.AD_ERROR
  268. * @description Fired when a fatal error is encountered.
  269. * @property {string} type
  270. * 'ad-error'
  271. * @property {Object} originalEvent
  272. * The native SDK event, if available.
  273. * @exportDoc
  274. */
  275. /**
  276. * @event shaka.ads.AdManager.AdInteractionEvent
  277. * @description Fired when an ad triggers the interaction callback.
  278. * @property {string} type
  279. * 'ad-interaction'
  280. * @property {Object} originalEvent
  281. * The native SDK event, if available.
  282. * @exportDoc
  283. */
  284. /**
  285. * @event shaka.ads.AdManager#ImaAdManagerLoadedEvent
  286. * @description Fired when the native IMA ad manager becomes available.
  287. * @property {string} type
  288. * 'ima-ad-manager-loaded'
  289. * @property {!Object} imaAdManager
  290. * The native IMA ad manager.
  291. * @exportDoc
  292. */
  293. /**
  294. * @event shaka.ads.AdManager#ImaStreamManagerLoadedEvent
  295. * @description Fired when the native IMA stream manager becomes available.
  296. * @property {string} type
  297. * 'ima-stream-manager-loaded'
  298. * @property {!Object} imaStreamManager
  299. * The native IMA stream manager.
  300. * @exportDoc
  301. */
  302. /**
  303. * @event shaka.ads.AdManager.AdClickedEvent
  304. * @description Fired when the ad was clicked.
  305. * @property {string} type
  306. * 'ad-clicked'
  307. * @exportDoc
  308. */
  309. /**
  310. * @event shaka.ads.AdManager.AdContentPauseRequestedEvent
  311. * @description Fired when the ad requires the main content to be paused.
  312. * Fired when the platform does not support multiple media elements.
  313. * @property {string} type
  314. * 'ad-content-pause-requested'
  315. * @property {?boolean} saveLivePosition
  316. * Indicates whether the live position has to be saved or not.
  317. * @exportDoc
  318. */
  319. /**
  320. * @event shaka.ads.AdManager.AdContentResumeRequestedEvent
  321. * @description Fired when the ad requires the main content to be resumed.
  322. * Fired when the platform does not support multiple media elements.
  323. * @property {string} type
  324. * 'ad-content-resume-requested'
  325. * @property {?number} offset
  326. * Indicates the offset that should be applied to the previously saved time.
  327. * @exportDoc
  328. */
  329. /**
  330. * @event shaka.ads.AdManager.AdContentResumeRequestedEvent
  331. * @description Fired when the ad requires the video of the main content to be
  332. * attached.
  333. * @property {string} type
  334. * 'ad-content-attach-requested'
  335. * @exportDoc
  336. */
  337. /**
  338. * A class responsible for ad-related interactions.
  339. * @implements {shaka.extern.IAdManager}
  340. * @implements {shaka.util.IReleasable}
  341. * @export
  342. */
  343. shaka.ads.AdManager = class extends shaka.util.FakeEventTarget {
  344. /** */
  345. constructor() {
  346. super();
  347. /** @private {shaka.ads.InterstitialAdManager} */
  348. this.interstitialAdManager_ = null;
  349. /** @private {shaka.ads.ClientSideAdManager} */
  350. this.csAdManager_ = null;
  351. /** @private {shaka.ads.MediaTailorAdManager} */
  352. this.mtAdManager_ = null;
  353. /** @private {shaka.ads.ServerSideAdManager} */
  354. this.ssAdManager_ = null;
  355. /** @private {shaka.ads.AdsStats} */
  356. this.stats_ = new shaka.ads.AdsStats();
  357. /** @private {string} locale */
  358. this.locale_ = navigator.language;
  359. /** @private {?shaka.extern.AdsConfiguration} */
  360. this.config_ = null;
  361. }
  362. /**
  363. * @override
  364. * @export
  365. */
  366. setLocale(locale) {
  367. this.locale_ = locale;
  368. }
  369. /**
  370. * @override
  371. * @export
  372. */
  373. configure(config) {
  374. this.config_ = config;
  375. if (this.interstitialAdManager_) {
  376. this.interstitialAdManager_.configure(this.config_);
  377. }
  378. if (this.csAdManager_) {
  379. this.csAdManager_.configure(this.config_);
  380. }
  381. if (this.ssAdManager_) {
  382. this.ssAdManager_.configure(this.config_);
  383. }
  384. }
  385. /**
  386. * @override
  387. * @export
  388. */
  389. initInterstitial(adContainer, basePlayer, baseVideo) {
  390. if (!adContainer) {
  391. shaka.log.info('Initializing interstitials without ad container');
  392. }
  393. if (this.interstitialAdManager_) {
  394. this.interstitialAdManager_.release();
  395. }
  396. this.interstitialAdManager_ = new shaka.ads.InterstitialAdManager(
  397. adContainer, basePlayer, baseVideo,
  398. (e) => this.processAndDispatchEvent_(e));
  399. goog.asserts.assert(this.config_, 'Config must not be null!');
  400. this.interstitialAdManager_.configure(this.config_);
  401. }
  402. /**
  403. * @override
  404. * @export
  405. */
  406. initClientSide(adContainer, video, adsRenderingSettings) {
  407. // Check that Client Side IMA SDK has been included
  408. // NOTE: (window['google'] && google.ima) check for any
  409. // IMA SDK, including SDK for Server Side ads.
  410. // The 3rd check insures we have the right SDK:
  411. // {google.ima.AdsLoader} is an object that's part of CS IMA SDK
  412. // but not SS SDK.
  413. if (!window['google'] || !google.ima || !google.ima.AdsLoader) {
  414. throw new shaka.util.Error(
  415. shaka.util.Error.Severity.CRITICAL,
  416. shaka.util.Error.Category.ADS,
  417. shaka.util.Error.Code.CS_IMA_SDK_MISSING);
  418. }
  419. if (this.csAdManager_) {
  420. this.csAdManager_.release();
  421. }
  422. this.csAdManager_ = new shaka.ads.ClientSideAdManager(
  423. adContainer, video, this.locale_, adsRenderingSettings,
  424. (e) => this.processAndDispatchEvent_(e));
  425. goog.asserts.assert(this.config_, 'Config must not be null!');
  426. this.csAdManager_.configure(this.config_);
  427. }
  428. /**
  429. * @override
  430. * @export
  431. */
  432. release() {
  433. if (this.interstitialAdManager_) {
  434. this.interstitialAdManager_.release();
  435. this.interstitialAdManager_ = null;
  436. }
  437. if (this.csAdManager_) {
  438. this.csAdManager_.release();
  439. this.csAdManager_ = null;
  440. }
  441. if (this.mtAdManager_) {
  442. this.mtAdManager_.release();
  443. this.mtAdManager_ = null;
  444. }
  445. if (this.ssAdManager_) {
  446. this.ssAdManager_.release();
  447. this.ssAdManager_ = null;
  448. }
  449. super.release();
  450. }
  451. /**
  452. * @override
  453. * @export
  454. */
  455. onAssetUnload() {
  456. if (this.interstitialAdManager_) {
  457. this.interstitialAdManager_.stop();
  458. }
  459. if (this.csAdManager_) {
  460. this.csAdManager_.stop();
  461. }
  462. if (this.mtAdManager_) {
  463. this.mtAdManager_.stop();
  464. }
  465. if (this.ssAdManager_) {
  466. this.ssAdManager_.stop();
  467. }
  468. this.dispatchEvent(
  469. new shaka.util.FakeEvent(shaka.ads.Utils.AD_STOPPED));
  470. this.dispatchEvent(new shaka.util.FakeEvent(
  471. shaka.ads.Utils.AD_CONTENT_ATTACH_REQUESTED));
  472. this.stats_ = new shaka.ads.AdsStats();
  473. }
  474. /**
  475. * @override
  476. * @export
  477. */
  478. requestClientSideAds(imaRequest) {
  479. if (!this.csAdManager_) {
  480. throw new shaka.util.Error(
  481. shaka.util.Error.Severity.RECOVERABLE,
  482. shaka.util.Error.Category.ADS,
  483. shaka.util.Error.Code.CS_AD_MANAGER_NOT_INITIALIZED);
  484. }
  485. this.csAdManager_.requestAds(imaRequest);
  486. }
  487. /**
  488. * @override
  489. * @export
  490. */
  491. updateClientSideAdsRenderingSettings(adsRenderingSettings) {
  492. if (!this.csAdManager_) {
  493. throw new shaka.util.Error(
  494. shaka.util.Error.Severity.RECOVERABLE,
  495. shaka.util.Error.Category.ADS,
  496. shaka.util.Error.Code.CS_AD_MANAGER_NOT_INITIALIZED);
  497. }
  498. this.csAdManager_.updateAdsRenderingSettings(adsRenderingSettings);
  499. }
  500. /**
  501. * @override
  502. * @export
  503. */
  504. initMediaTailor(adContainer, networkingEngine, video) {
  505. if (this.mtAdManager_) {
  506. this.mtAdManager_.release();
  507. }
  508. this.mtAdManager_ = new shaka.ads.MediaTailorAdManager(
  509. adContainer, networkingEngine, video,
  510. (e) => this.processAndDispatchEvent_(e));
  511. }
  512. /**
  513. * @param {string} url
  514. * @param {Object} adsParams
  515. * @param {string=} backupUrl
  516. * @return {!Promise.<string>}
  517. * @override
  518. * @export
  519. */
  520. requestMediaTailorStream(url, adsParams, backupUrl = '') {
  521. if (!this.mtAdManager_) {
  522. throw new shaka.util.Error(
  523. shaka.util.Error.Severity.RECOVERABLE,
  524. shaka.util.Error.Category.ADS,
  525. shaka.util.Error.Code.MT_AD_MANAGER_NOT_INITIALIZED);
  526. }
  527. return this.mtAdManager_.streamRequest(url, adsParams, backupUrl);
  528. }
  529. /**
  530. * @param {string} url
  531. * @override
  532. * @export
  533. */
  534. addMediaTailorTrackingUrl(url) {
  535. if (!this.mtAdManager_) {
  536. throw new shaka.util.Error(
  537. shaka.util.Error.Severity.RECOVERABLE,
  538. shaka.util.Error.Category.ADS,
  539. shaka.util.Error.Code.MT_AD_MANAGER_NOT_INITIALIZED);
  540. }
  541. this.mtAdManager_.addTrackingUrl(url);
  542. }
  543. /**
  544. * @override
  545. * @export
  546. */
  547. initServerSide(adContainer, video) {
  548. // Check that Client Side IMA SDK has been included
  549. // NOTE: (window['google'] && google.ima) check for any
  550. // IMA SDK, including SDK for Server Side ads.
  551. // The 3rd check insures we have the right SDK:
  552. // {google.ima.dai} is an object that's part of DAI IMA SDK
  553. // but not SS SDK.
  554. if (!window['google'] || !google.ima || !google.ima.dai) {
  555. throw new shaka.util.Error(
  556. shaka.util.Error.Severity.CRITICAL,
  557. shaka.util.Error.Category.ADS,
  558. shaka.util.Error.Code.SS_IMA_SDK_MISSING);
  559. }
  560. if (this.ssAdManager_) {
  561. this.ssAdManager_.release();
  562. }
  563. this.ssAdManager_ = new shaka.ads.ServerSideAdManager(
  564. adContainer, video, this.locale_,
  565. (e) => this.processAndDispatchEvent_(e));
  566. goog.asserts.assert(this.config_, 'Config must not be null!');
  567. this.ssAdManager_.configure(this.config_);
  568. }
  569. /**
  570. * @param {!google.ima.dai.api.StreamRequest} imaRequest
  571. * @param {string=} backupUrl
  572. * @return {!Promise.<string>}
  573. * @override
  574. * @export
  575. */
  576. requestServerSideStream(imaRequest, backupUrl = '') {
  577. if (!this.ssAdManager_) {
  578. throw new shaka.util.Error(
  579. shaka.util.Error.Severity.RECOVERABLE,
  580. shaka.util.Error.Category.ADS,
  581. shaka.util.Error.Code.SS_AD_MANAGER_NOT_INITIALIZED);
  582. }
  583. if (!imaRequest.adTagParameters) {
  584. imaRequest.adTagParameters = {};
  585. }
  586. const adTagParams = imaRequest.adTagParameters;
  587. if (adTagParams['mpt'] || adTagParams['mpv']) {
  588. shaka.log.alwaysWarn('You have attempted to set "mpt" and/or "mpv" ' +
  589. 'parameters of the ad tag. Please note that those parameters are ' +
  590. 'used for Shaka adoption tracking and will be overriden.');
  591. }
  592. // Set player and version parameters for tracking
  593. imaRequest.adTagParameters['mpt'] = 'shaka-player';
  594. imaRequest.adTagParameters['mpv'] = shaka.Player.version;
  595. return this.ssAdManager_.streamRequest(imaRequest, backupUrl);
  596. }
  597. /**
  598. * @override
  599. * @export
  600. */
  601. replaceServerSideAdTagParameters(adTagParameters) {
  602. if (!this.ssAdManager_) {
  603. throw new shaka.util.Error(
  604. shaka.util.Error.Severity.RECOVERABLE,
  605. shaka.util.Error.Category.ADS,
  606. shaka.util.Error.Code.SS_AD_MANAGER_NOT_INITIALIZED);
  607. }
  608. if (adTagParameters['mpt'] || adTagParameters['mpv']) {
  609. shaka.log.alwaysWarn('You have attempted to set "mpt" and/or "mpv" ' +
  610. 'parameters of the ad tag. Please note that those parameters are ' +
  611. 'used for Shaka adoption tracking and will be overriden.');
  612. }
  613. adTagParameters['mpt'] = 'Shaka Player';
  614. adTagParameters['mpv'] = shaka.Player.version;
  615. this.ssAdManager_.replaceAdTagParameters(adTagParameters);
  616. }
  617. /**
  618. * @return {!Array.<!shaka.extern.AdCuePoint>}
  619. * @override
  620. * @export
  621. */
  622. getServerSideCuePoints() {
  623. shaka.Deprecate.deprecateFeature(5,
  624. 'AdManager.getServerSideCuePoints',
  625. 'Please use getCuePoints function.');
  626. return this.getCuePoints();
  627. }
  628. /**
  629. * @return {!Array.<!shaka.extern.AdCuePoint>}
  630. * @override
  631. * @export
  632. */
  633. getCuePoints() {
  634. let cuepoints = [];
  635. if (this.ssAdManager_) {
  636. cuepoints = cuepoints.concat(this.ssAdManager_.getCuePoints());
  637. }
  638. if (this.mtAdManager_) {
  639. cuepoints = cuepoints.concat(this.mtAdManager_.getCuePoints());
  640. }
  641. return cuepoints;
  642. }
  643. /**
  644. * @return {shaka.extern.AdsStats}
  645. * @override
  646. * @export
  647. */
  648. getStats() {
  649. return this.stats_.getBlob();
  650. }
  651. /**
  652. * @override
  653. * @export
  654. */
  655. onManifestUpdated(isLive) {
  656. if (this.mtAdManager_) {
  657. this.mtAdManager_.onManifestUpdated(isLive);
  658. }
  659. }
  660. /**
  661. * @override
  662. * @export
  663. */
  664. onDashTimedMetadata(region) {
  665. if (this.ssAdManager_ && region.schemeIdUri == 'urn:google:dai:2018') {
  666. const type = region.schemeIdUri;
  667. const data = region.eventNode ?
  668. region.eventNode.attributes['messageData'] : null;
  669. const timestamp = region.startTime;
  670. this.ssAdManager_.onTimedMetadata(type, data, timestamp);
  671. }
  672. }
  673. /**
  674. * @override
  675. * @export
  676. */
  677. onHlsTimedMetadata(metadata, timestamp) {
  678. if (this.ssAdManager_) {
  679. this.ssAdManager_.onTimedMetadata('ID3', metadata['data'], timestamp);
  680. }
  681. }
  682. /**
  683. * @override
  684. * @export
  685. */
  686. onCueMetadataChange(value) {
  687. if (this.ssAdManager_) {
  688. this.ssAdManager_.onCueMetadataChange(value);
  689. }
  690. }
  691. /**
  692. * @override
  693. * @export
  694. */
  695. onHLSInterstitialMetadata(basePlayer, baseVideo, interstitial) {
  696. if (this.config_ && this.config_.disableHLSInterstitial) {
  697. return;
  698. }
  699. if (!this.interstitialAdManager_) {
  700. this.initInterstitial(/* adContainer= */ null, basePlayer, baseVideo);
  701. }
  702. if (this.interstitialAdManager_) {
  703. this.interstitialAdManager_.addMetadata(interstitial);
  704. }
  705. }
  706. /**
  707. * @override
  708. * @export
  709. */
  710. onDASHInterstitialMetadata(basePlayer, baseVideo, region) {
  711. if (this.config_ && this.config_.disableDASHInterstitial) {
  712. return;
  713. }
  714. if (region.schemeIdUri != 'urn:mpeg:dash:event:alternativeMPD:2022') {
  715. return;
  716. }
  717. if (!this.interstitialAdManager_) {
  718. this.initInterstitial(/* adContainer= */ null, basePlayer, baseVideo);
  719. }
  720. if (this.interstitialAdManager_) {
  721. this.interstitialAdManager_.addRegion(region);
  722. }
  723. }
  724. /**
  725. * @override
  726. * @export
  727. */
  728. addCustomInterstitial(interstitial) {
  729. if (!this.interstitialAdManager_) {
  730. throw new shaka.util.Error(
  731. shaka.util.Error.Severity.RECOVERABLE,
  732. shaka.util.Error.Category.ADS,
  733. shaka.util.Error.Code.INTERSTITIAL_AD_MANAGER_NOT_INITIALIZED);
  734. }
  735. this.interstitialAdManager_.addInterstitials([interstitial]);
  736. }
  737. /**
  738. * @override
  739. * @export
  740. */
  741. addAdUrlInterstitial(url) {
  742. if (!this.interstitialAdManager_) {
  743. throw new shaka.util.Error(
  744. shaka.util.Error.Severity.RECOVERABLE,
  745. shaka.util.Error.Category.ADS,
  746. shaka.util.Error.Code.INTERSTITIAL_AD_MANAGER_NOT_INITIALIZED);
  747. }
  748. return this.interstitialAdManager_.addAdUrlInterstitial(url);
  749. }
  750. /**
  751. * @param {!shaka.util.FakeEvent} event
  752. * @private
  753. */
  754. processAndDispatchEvent_(event) {
  755. if (event && event.type) {
  756. switch (event.type) {
  757. case shaka.ads.Utils.ADS_LOADED: {
  758. const loadTime = (/** @type {!Object} */ (event))['loadTime'];
  759. this.stats_.addLoadTime(loadTime);
  760. break;
  761. }
  762. case shaka.ads.Utils.AD_STARTED:
  763. this.stats_.incrementStarted();
  764. break;
  765. case shaka.ads.Utils.AD_COMPLETE:
  766. this.stats_.incrementPlayedCompletely();
  767. break;
  768. case shaka.ads.Utils.AD_SKIPPED:
  769. this.stats_.incrementSkipped();
  770. break;
  771. case shaka.ads.Utils.AD_ERROR:
  772. this.stats_.incrementErrors();
  773. break;
  774. }
  775. }
  776. this.dispatchEvent(event);
  777. }
  778. };
  779. /**
  780. * The event name for when a sequence of ads has been loaded.
  781. *
  782. * Deprecated, please use {@link shaka.ads.Utils}
  783. *
  784. * @const {string}
  785. * @export
  786. * @deprecated
  787. */
  788. shaka.ads.AdManager.ADS_LOADED = 'ads-loaded';
  789. /**
  790. * The event name for when an ad has started playing.
  791. *
  792. * Deprecated, please use {@link shaka.ads.Utils}
  793. *
  794. * @const {string}
  795. * @export
  796. * @deprecated
  797. */
  798. shaka.ads.AdManager.AD_STARTED = 'ad-started';
  799. /**
  800. * The event name for when an ad playhead crosses first quartile.
  801. *
  802. * Deprecated, please use {@link shaka.ads.Utils}
  803. *
  804. * @const {string}
  805. * @export
  806. * @deprecated
  807. */
  808. shaka.ads.AdManager.AD_FIRST_QUARTILE = 'ad-first-quartile';
  809. /**
  810. * The event name for when an ad playhead crosses midpoint.
  811. *
  812. * Deprecated, please use {@link shaka.ads.Utils}
  813. *
  814. * @const {string}
  815. * @export
  816. * @deprecated
  817. */
  818. shaka.ads.AdManager.AD_MIDPOINT = 'ad-midpoint';
  819. /**
  820. * The event name for when an ad playhead crosses third quartile.
  821. *
  822. * Deprecated, please use {@link shaka.ads.Utils}
  823. *
  824. * @const {string}
  825. * @export
  826. * @deprecated
  827. */
  828. shaka.ads.AdManager.AD_THIRD_QUARTILE = 'ad-third-quartile';
  829. /**
  830. * The event name for when an ad has completed playing.
  831. *
  832. * Deprecated, please use {@link shaka.ads.Utils}
  833. *
  834. * @const {string}
  835. * @export
  836. * @deprecated
  837. */
  838. shaka.ads.AdManager.AD_COMPLETE = 'ad-complete';
  839. /**
  840. * The event name for when an ad has finished playing
  841. * (played all the way through, was skipped, or was unable to proceed
  842. * due to an error).
  843. *
  844. * Deprecated, please use {@link shaka.ads.Utils}
  845. *
  846. * @const {string}
  847. * @export
  848. * @deprecated
  849. */
  850. shaka.ads.AdManager.AD_STOPPED = 'ad-stopped';
  851. /**
  852. * The event name for when an ad is skipped by the user.
  853. *
  854. * Deprecated, please use {@link shaka.ads.Utils}
  855. *
  856. * @const {string}
  857. * @export
  858. * @deprecated
  859. */
  860. shaka.ads.AdManager.AD_SKIPPED = 'ad-skipped';
  861. /**
  862. * The event name for when the ad volume has changed.
  863. *
  864. * Deprecated, please use {@link shaka.ads.Utils}
  865. *
  866. * @const {string}
  867. * @export
  868. * @deprecated
  869. */
  870. shaka.ads.AdManager.AD_VOLUME_CHANGED = 'ad-volume-changed';
  871. /**
  872. * The event name for when the ad was muted.
  873. *
  874. * Deprecated, please use {@link shaka.ads.Utils}
  875. *
  876. * @const {string}
  877. * @export
  878. * @deprecated
  879. */
  880. shaka.ads.AdManager.AD_MUTED = 'ad-muted';
  881. /**
  882. * The event name for when the ad was paused.
  883. *
  884. * Deprecated, please use {@link shaka.ads.Utils}
  885. *
  886. * @const {string}
  887. * @export
  888. * @deprecated
  889. */
  890. shaka.ads.AdManager.AD_PAUSED = 'ad-paused';
  891. /**
  892. * The event name for when the ad was resumed after a pause.
  893. *
  894. * Deprecated, please use {@link shaka.ads.Utils}
  895. *
  896. * @const {string}
  897. * @export
  898. * @deprecated
  899. */
  900. shaka.ads.AdManager.AD_RESUMED = 'ad-resumed';
  901. /**
  902. * The event name for when the ad's skip status changes
  903. * (usually it becomes skippable when it wasn't before).
  904. *
  905. * Deprecated, please use {@link shaka.ads.Utils}
  906. *
  907. * @const {string}
  908. * @export
  909. * @deprecated
  910. */
  911. shaka.ads.AdManager.AD_SKIP_STATE_CHANGED = 'ad-skip-state-changed';
  912. /**
  913. * The event name for when the ad's cue points (start/end markers)
  914. * have changed.
  915. *
  916. * Deprecated, please use {@link shaka.ads.Utils}
  917. *
  918. * @const {string}
  919. * @export
  920. * @deprecated
  921. */
  922. shaka.ads.AdManager.CUEPOINTS_CHANGED = 'ad-cue-points-changed';
  923. /**
  924. * The event name for when the native IMA ad manager object has
  925. * loaded and become available.
  926. *
  927. * Deprecated, please use {@link shaka.ads.Utils}
  928. *
  929. * @const {string}
  930. * @export
  931. * @deprecated
  932. */
  933. shaka.ads.AdManager.IMA_AD_MANAGER_LOADED = 'ima-ad-manager-loaded';
  934. /**
  935. * The event name for when the native IMA stream manager object has
  936. * loaded and become available.
  937. *
  938. * Deprecated, please use {@link shaka.ads.Utils}
  939. *
  940. * @const {string}
  941. * @export
  942. * @deprecated
  943. */
  944. shaka.ads.AdManager.IMA_STREAM_MANAGER_LOADED = 'ima-stream-manager-loaded';
  945. /**
  946. * The event name for when the ad was clicked.
  947. *
  948. * Deprecated, please use {@link shaka.ads.Utils}
  949. *
  950. * @const {string}
  951. * @export
  952. * @deprecated
  953. */
  954. shaka.ads.AdManager.AD_CLICKED = 'ad-clicked';
  955. /**
  956. * The event name for when there is an update to the current ad's progress.
  957. *
  958. * Deprecated, please use {@link shaka.ads.Utils}
  959. *
  960. * @const {string}
  961. * @export
  962. * @deprecated
  963. */
  964. shaka.ads.AdManager.AD_PROGRESS = 'ad-progress';
  965. /**
  966. * The event name for when the ad is buffering.
  967. *
  968. * Deprecated, please use {@link shaka.ads.Utils}
  969. *
  970. * @const {string}
  971. * @export
  972. * @deprecated
  973. */
  974. shaka.ads.AdManager.AD_BUFFERING = 'ad-buffering';
  975. /**
  976. * The event name for when the ad's URL was hit.
  977. *
  978. * Deprecated, please use {@link shaka.ads.Utils}
  979. *
  980. * @const {string}
  981. * @export
  982. * @deprecated
  983. */
  984. shaka.ads.AdManager.AD_IMPRESSION = 'ad-impression';
  985. /**
  986. * The event name for when the ad's duration changed.
  987. *
  988. * Deprecated, please use {@link shaka.ads.Utils}
  989. *
  990. * @const {string}
  991. * @export
  992. * @deprecated
  993. */
  994. shaka.ads.AdManager.AD_DURATION_CHANGED = 'ad-duration-changed';
  995. /**
  996. * The event name for when the ad was closed by the user.
  997. *
  998. * Deprecated, please use {@link shaka.ads.Utils}
  999. *
  1000. * @const {string}
  1001. * @export
  1002. * @deprecated
  1003. */
  1004. shaka.ads.AdManager.AD_CLOSED = 'ad-closed';
  1005. /**
  1006. * The event name for when the ad data becomes available.
  1007. *
  1008. * Deprecated, please use {@link shaka.ads.Utils}
  1009. *
  1010. * @const {string}
  1011. * @export
  1012. * @deprecated
  1013. */
  1014. shaka.ads.AdManager.AD_LOADED = 'ad-loaded';
  1015. /**
  1016. * The event name for when all the ads were completed.
  1017. *
  1018. * Deprecated, please use {@link shaka.ads.Utils}
  1019. *
  1020. * @const {string}
  1021. * @export
  1022. * @deprecated
  1023. */
  1024. shaka.ads.AdManager.ALL_ADS_COMPLETED = 'all-ads-completed';
  1025. /**
  1026. * The event name for when the ad changes from or to linear.
  1027. *
  1028. * Deprecated, please use {@link shaka.ads.Utils}
  1029. *
  1030. * @const {string}
  1031. * @export
  1032. * @deprecated
  1033. */
  1034. shaka.ads.AdManager.AD_LINEAR_CHANGED = 'ad-linear-changed';
  1035. /**
  1036. * The event name for when the ad's metadata becomes available.
  1037. *
  1038. * Deprecated, please use {@link shaka.ads.Utils}
  1039. *
  1040. * @const {string}
  1041. * @export
  1042. * @deprecated
  1043. */
  1044. shaka.ads.AdManager.AD_METADATA = 'ad-metadata';
  1045. /**
  1046. * The event name for when the ad display encountered a recoverable
  1047. * error.
  1048. *
  1049. * Deprecated, please use {@link shaka.ads.Utils}
  1050. *
  1051. * @const {string}
  1052. * @export
  1053. * @deprecated
  1054. */
  1055. shaka.ads.AdManager.AD_RECOVERABLE_ERROR = 'ad-recoverable-error';
  1056. /**
  1057. * The event name for when the ad manager dispatch errors.
  1058. *
  1059. * Deprecated, please use {@link shaka.ads.Utils}
  1060. *
  1061. * @const {string}
  1062. * @export
  1063. * @deprecated
  1064. */
  1065. shaka.ads.AdManager.AD_ERROR = 'ad-error';
  1066. /**
  1067. * The event name for when the client side SDK signalled its readiness
  1068. * to play a VPAID ad or an ad rule.
  1069. *
  1070. * Deprecated, please use {@link shaka.ads.Utils}
  1071. *
  1072. * @const {string}
  1073. * @export
  1074. * @deprecated
  1075. */
  1076. shaka.ads.AdManager.AD_BREAK_READY = 'ad-break-ready';
  1077. /**
  1078. * The event name for when the interaction callback for the ad was
  1079. * triggered.
  1080. *
  1081. * Deprecated, please use {@link shaka.ads.Utils}
  1082. *
  1083. * @const {string}
  1084. * @export
  1085. * @deprecated
  1086. */
  1087. shaka.ads.AdManager.AD_INTERACTION = 'ad-interaction';
  1088. /**
  1089. * The name of the event for when an ad requires the main content to be paused.
  1090. * Fired when the platform does not support multiple media elements.
  1091. *
  1092. * Deprecated, please use {@link shaka.ads.Utils}
  1093. *
  1094. * @const {string}
  1095. * @export
  1096. * @deprecated
  1097. */
  1098. shaka.ads.AdManager.AD_CONTENT_PAUSE_REQUESTED = 'ad-content-pause-requested';
  1099. /**
  1100. * The name of the event for when an ad requires the main content to be resumed.
  1101. * Fired when the platform does not support multiple media elements.
  1102. *
  1103. * Deprecated, please use {@link shaka.ads.Utils}
  1104. *
  1105. * @const {string}
  1106. * @export
  1107. * @deprecated
  1108. */
  1109. shaka.ads.AdManager.AD_CONTENT_RESUME_REQUESTED = 'ad-content-resume-requested';
  1110. /**
  1111. * The name of the event for when an ad requires the video of the main content
  1112. * to be attached.
  1113. *
  1114. * Deprecated, please use {@link shaka.ads.Utils}
  1115. *
  1116. * @const {string}
  1117. * @export
  1118. * @deprecated
  1119. */
  1120. shaka.ads.AdManager.AD_CONTENT_ATTACH_REQUESTED = 'ad-content-attach-requested';
  1121. /**
  1122. * Set this is a default ad manager for the player.
  1123. * Apps can also set their own ad manager, if they'd like.
  1124. */
  1125. shaka.Player.setAdManagerFactory(() => new shaka.ads.AdManager());