Source: lib/net/data_uri_plugin.js

  1. /*! @license
  2. * Shaka Player
  3. * Copyright 2016 Google LLC
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. goog.provide('shaka.net.DataUriPlugin');
  7. goog.require('shaka.log');
  8. goog.require('shaka.net.NetworkingEngine');
  9. goog.require('shaka.util.AbortableOperation');
  10. goog.require('shaka.util.Error');
  11. goog.require('shaka.util.StringUtils');
  12. goog.require('shaka.util.Uint8ArrayUtils');
  13. /**
  14. * @summary A networking plugin to handle data URIs.
  15. * @see https://developer.mozilla.org/en-US/docs/Web/HTTP/data_URIs
  16. * @export
  17. */
  18. shaka.net.DataUriPlugin = class {
  19. /**
  20. * @param {string} uri
  21. * @param {shaka.extern.Request} request
  22. * @param {shaka.net.NetworkingEngine.RequestType} requestType
  23. * @param {shaka.extern.ProgressUpdated} progressUpdated Called when a
  24. * progress event happened.
  25. * @return {!shaka.extern.IAbortableOperation.<shaka.extern.Response>}
  26. * @export
  27. */
  28. static parse(uri, request, requestType, progressUpdated) {
  29. try {
  30. const parsed = shaka.net.DataUriPlugin.parseRaw(uri);
  31. /** @type {shaka.extern.Response} */
  32. const response = {
  33. uri: uri,
  34. originalUri: uri,
  35. data: parsed.data,
  36. headers: {
  37. 'content-type': parsed.contentType,
  38. },
  39. };
  40. return shaka.util.AbortableOperation.completed(response);
  41. } catch (error) {
  42. return shaka.util.AbortableOperation.failed(error);
  43. }
  44. }
  45. /**
  46. * @param {string} uri
  47. * @return {{data: BufferSource, contentType: string}}
  48. */
  49. static parseRaw(uri) {
  50. // Extract the scheme.
  51. const parts = uri.split(':');
  52. if (parts.length < 2 || parts[0] != 'data') {
  53. shaka.log.error('Bad data URI, failed to parse scheme');
  54. throw new shaka.util.Error(
  55. shaka.util.Error.Severity.CRITICAL,
  56. shaka.util.Error.Category.NETWORK,
  57. shaka.util.Error.Code.MALFORMED_DATA_URI,
  58. uri);
  59. }
  60. const path = parts.slice(1).join(':');
  61. // Extract the encoding and MIME type (required but can be empty).
  62. const infoAndData = path.split(',');
  63. if (infoAndData.length < 2) {
  64. shaka.log.error('Bad data URI, failed to extract encoding and MIME type');
  65. throw new shaka.util.Error(
  66. shaka.util.Error.Severity.CRITICAL,
  67. shaka.util.Error.Category.NETWORK,
  68. shaka.util.Error.Code.MALFORMED_DATA_URI,
  69. uri);
  70. }
  71. const info = infoAndData[0];
  72. const dataStr = window.decodeURIComponent(infoAndData.slice(1).join(','));
  73. // The MIME type is always the first thing in the semicolon-separated list
  74. // of type parameters. It may be blank.
  75. const typeInfoList = info.split(';');
  76. const contentType = typeInfoList[0];
  77. // Check for base64 encoding, which is always the last in the
  78. // semicolon-separated list if present.
  79. let base64Encoded = false;
  80. if (typeInfoList.length > 1 &&
  81. typeInfoList[typeInfoList.length - 1] == 'base64') {
  82. base64Encoded = true;
  83. typeInfoList.pop();
  84. }
  85. // Convert the data.
  86. /** @type {BufferSource} */
  87. let data;
  88. if (base64Encoded) {
  89. data = shaka.util.Uint8ArrayUtils.fromBase64(dataStr);
  90. } else {
  91. data = shaka.util.StringUtils.toUTF8(dataStr);
  92. }
  93. return {data: data, contentType};
  94. }
  95. };
  96. shaka.net.NetworkingEngine.registerScheme(
  97. 'data', shaka.net.DataUriPlugin.parse);