Source: lib/polyfill/patchedmediakeys_cert.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.polyfill.PatchedMediaKeysCert');
  7. goog.require('shaka.log');
  8. goog.require('shaka.polyfill');
  9. goog.require('shaka.util.Platform');
  10. /**
  11. * @summary A polyfill to fix setServerCertificate implementation on
  12. * older platforms which claim to support modern EME.
  13. * @export
  14. */
  15. shaka.polyfill.PatchedMediaKeysCert = class {
  16. /**
  17. * Installs the polyfill if needed.
  18. * @export
  19. */
  20. static install() {
  21. if (!window.MediaKeys) {
  22. // No MediaKeys available
  23. return;
  24. }
  25. // eslint-disable-next-line no-restricted-syntax
  26. if (MediaKeys.prototype.setServerCertificate &&
  27. !shaka.polyfill.PatchedMediaKeysCert.hasInvalidImplementation_()) {
  28. // setServerCertificate is there and userAgent seems to be valid.
  29. return;
  30. }
  31. shaka.log.info('Patching MediaKeys.setServerCertificate');
  32. // eslint-disable-next-line no-restricted-syntax
  33. MediaKeys.prototype.setServerCertificate =
  34. shaka.polyfill.PatchedMediaKeysCert.setServerCertificate_;
  35. }
  36. /**
  37. * @param {!BufferSource} certificate
  38. * @return {!Promise<boolean>}
  39. * @private
  40. */
  41. static setServerCertificate_(certificate) {
  42. shaka.log.debug('PatchedMediaKeysCert.setServerCertificate');
  43. return Promise.resolve(false);
  44. }
  45. /**
  46. * @return {boolean}
  47. * @private
  48. */
  49. static hasInvalidImplementation_() {
  50. return shaka.util.Platform.isTizen3() || shaka.util.Platform.isTizen4() ||
  51. shaka.util.Platform.isTizen5_0() || shaka.util.Platform.isWebOS3();
  52. }
  53. };
  54. shaka.polyfill.register(shaka.polyfill.PatchedMediaKeysCert.install);