Source: lib/net/http_fetch_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.HttpFetchPlugin');
  7. goog.require('goog.asserts');
  8. goog.require('shaka.log');
  9. goog.require('shaka.net.HttpPluginUtils');
  10. goog.require('shaka.net.NetworkingEngine');
  11. goog.require('shaka.util.AbortableOperation');
  12. goog.require('shaka.util.Error');
  13. goog.require('shaka.util.MapUtils');
  14. goog.require('shaka.util.Timer');
  15. /**
  16. * @summary A networking plugin to handle http and https URIs via the Fetch API.
  17. * @export
  18. */
  19. shaka.net.HttpFetchPlugin = class {
  20. /**
  21. * @param {string} uri
  22. * @param {shaka.extern.Request} request
  23. * @param {shaka.net.NetworkingEngine.RequestType} requestType
  24. * @param {shaka.extern.ProgressUpdated} progressUpdated Called when a
  25. * progress event happened.
  26. * @param {shaka.extern.HeadersReceived} headersReceived Called when the
  27. * headers for the download are received, but before the body is.
  28. * @return {!shaka.extern.IAbortableOperation.<shaka.extern.Response>}
  29. * @export
  30. */
  31. static parse(uri, request, requestType, progressUpdated, headersReceived) {
  32. const headers = new shaka.net.HttpFetchPlugin.Headers_();
  33. shaka.util.MapUtils.asMap(request.headers).forEach((value, key) => {
  34. headers.append(key, value);
  35. });
  36. const controller = new shaka.net.HttpFetchPlugin.AbortController_();
  37. /** @type {!RequestInit} */
  38. const init = {
  39. // Edge does not treat null as undefined for body; https://bit.ly/2luyE6x
  40. body: request.body || undefined,
  41. headers: headers,
  42. method: request.method,
  43. signal: controller.signal,
  44. credentials: request.allowCrossSiteCredentials ? 'include' : undefined,
  45. };
  46. /** @type {shaka.net.HttpFetchPlugin.AbortStatus} */
  47. const abortStatus = {
  48. canceled: false,
  49. timedOut: false,
  50. };
  51. const pendingRequest = shaka.net.HttpFetchPlugin.request_(
  52. uri, requestType, init, abortStatus, progressUpdated, headersReceived,
  53. request.streamDataCallback);
  54. /** @type {!shaka.util.AbortableOperation} */
  55. const op = new shaka.util.AbortableOperation(pendingRequest, () => {
  56. abortStatus.canceled = true;
  57. controller.abort();
  58. return Promise.resolve();
  59. });
  60. // The fetch API does not timeout natively, so do a timeout manually using
  61. // the AbortController.
  62. const timeoutMs = request.retryParameters.timeout;
  63. if (timeoutMs) {
  64. const timer = new shaka.util.Timer(() => {
  65. abortStatus.timedOut = true;
  66. controller.abort();
  67. });
  68. timer.tickAfter(timeoutMs / 1000);
  69. // To avoid calling |abort| on the network request after it finished, we
  70. // will stop the timer when the requests resolves/rejects.
  71. op.finally(() => {
  72. timer.stop();
  73. });
  74. }
  75. return op;
  76. }
  77. /**
  78. * @param {string} uri
  79. * @param {shaka.net.NetworkingEngine.RequestType} requestType
  80. * @param {!RequestInit} init
  81. * @param {shaka.net.HttpFetchPlugin.AbortStatus} abortStatus
  82. * @param {shaka.extern.ProgressUpdated} progressUpdated
  83. * @param {shaka.extern.HeadersReceived} headersReceived
  84. * @param {?function(BufferSource):!Promise} streamDataCallback
  85. * @return {!Promise<!shaka.extern.Response>}
  86. * @private
  87. */
  88. static async request_(uri, requestType, init, abortStatus, progressUpdated,
  89. headersReceived, streamDataCallback) {
  90. const fetch = shaka.net.HttpFetchPlugin.fetch_;
  91. const ReadableStream = shaka.net.HttpFetchPlugin.ReadableStream_;
  92. let response;
  93. let arrayBuffer;
  94. let loaded = 0;
  95. let lastLoaded = 0;
  96. // Last time stamp when we got a progress event.
  97. let lastTime = Date.now();
  98. try {
  99. // The promise returned by fetch resolves as soon as the HTTP response
  100. // headers are available. The download itself isn't done until the promise
  101. // for retrieving the data (arrayBuffer, blob, etc) has resolved.
  102. response = await fetch(uri, init);
  103. // At this point in the process, we have the headers of the response, but
  104. // not the body yet.
  105. headersReceived(shaka.net.HttpFetchPlugin.headersToGenericObject_(
  106. response.headers));
  107. // In new versions of Chromium, HEAD requests now have a response body
  108. // that is null.
  109. // So just don't try to download the body at all, if it's a HEAD request,
  110. // to avoid null reference errors.
  111. // See: https://crbug.com/1297060
  112. if (init.method != 'HEAD') {
  113. goog.asserts.assert(response.body,
  114. 'non-HEAD responses should have a body');
  115. // Getting the reader in this way allows us to observe the process of
  116. // downloading the body, instead of just waiting for an opaque promise
  117. // to resolve.
  118. // We first clone the response because calling getReader locks the body
  119. // stream; if we didn't clone it here, we would be unable to get the
  120. // response's arrayBuffer later.
  121. const reader = response.clone().body.getReader();
  122. const contentLengthRaw = response.headers.get('Content-Length');
  123. const contentLength =
  124. contentLengthRaw ? parseInt(contentLengthRaw, 10) : 0;
  125. const start = (controller) => {
  126. const push = async () => {
  127. let readObj;
  128. try {
  129. readObj = await reader.read();
  130. } catch (e) {
  131. // If we abort the request, we'll get an error here. Just ignore
  132. // it since real errors will be reported when we read the buffer
  133. // below.
  134. shaka.log.v1('error reading from stream', e.message);
  135. return;
  136. }
  137. if (!readObj.done) {
  138. loaded += readObj.value.byteLength;
  139. if (streamDataCallback) {
  140. await streamDataCallback(readObj.value);
  141. }
  142. }
  143. const currentTime = Date.now();
  144. // If the time between last time and this time we got progress event
  145. // is long enough, or if a whole segment is downloaded, call
  146. // progressUpdated().
  147. if (currentTime - lastTime > 100 || readObj.done) {
  148. const numBytesRemaining =
  149. readObj.done ? 0 : contentLength - loaded;
  150. progressUpdated(currentTime - lastTime, loaded - lastLoaded,
  151. numBytesRemaining);
  152. lastLoaded = loaded;
  153. lastTime = currentTime;
  154. }
  155. if (readObj.done) {
  156. goog.asserts.assert(!readObj.value,
  157. 'readObj should be unset when "done" is true.');
  158. controller.close();
  159. } else {
  160. controller.enqueue(readObj.value);
  161. push();
  162. }
  163. };
  164. push();
  165. };
  166. // Create a ReadableStream to use the reader. We don't need to use the
  167. // actual stream for anything, though, as we are using the response's
  168. // arrayBuffer method to get the body, so we don't store the
  169. // ReadableStream.
  170. new ReadableStream({start}); // eslint-disable-line no-new
  171. arrayBuffer = await response.arrayBuffer();
  172. }
  173. } catch (error) {
  174. if (abortStatus.canceled) {
  175. throw new shaka.util.Error(
  176. shaka.util.Error.Severity.RECOVERABLE,
  177. shaka.util.Error.Category.NETWORK,
  178. shaka.util.Error.Code.OPERATION_ABORTED,
  179. uri, requestType);
  180. } else if (abortStatus.timedOut) {
  181. throw new shaka.util.Error(
  182. shaka.util.Error.Severity.RECOVERABLE,
  183. shaka.util.Error.Category.NETWORK,
  184. shaka.util.Error.Code.TIMEOUT,
  185. uri, requestType);
  186. } else {
  187. throw new shaka.util.Error(
  188. shaka.util.Error.Severity.RECOVERABLE,
  189. shaka.util.Error.Category.NETWORK,
  190. shaka.util.Error.Code.HTTP_ERROR,
  191. uri, error, requestType);
  192. }
  193. }
  194. const headers = shaka.net.HttpFetchPlugin.headersToGenericObject_(
  195. response.headers);
  196. return shaka.net.HttpPluginUtils.makeResponse(
  197. headers, arrayBuffer, response.status, uri, response.url, requestType);
  198. }
  199. /**
  200. * @param {!Headers} headers
  201. * @return {!Object.<string, string>}
  202. * @private
  203. */
  204. static headersToGenericObject_(headers) {
  205. const headersObj = {};
  206. headers.forEach((value, key) => {
  207. // Since Edge incorrectly return the header with a leading new line
  208. // character ('\n'), we trim the header here.
  209. headersObj[key.trim()] = value;
  210. });
  211. return headersObj;
  212. }
  213. /**
  214. * Determine if the Fetch API is supported in the browser. Note: this is
  215. * deliberately exposed as a method to allow the client app to use the same
  216. * logic as Shaka when determining support.
  217. * @return {boolean}
  218. * @export
  219. */
  220. static isSupported() {
  221. // On Edge, ReadableStream exists, but attempting to construct it results in
  222. // an error. See https://bit.ly/2zwaFLL
  223. // So this has to check that ReadableStream is present AND usable.
  224. if (window.ReadableStream) {
  225. try {
  226. new ReadableStream({}); // eslint-disable-line no-new
  227. } catch (e) {
  228. return false;
  229. }
  230. } else {
  231. return false;
  232. }
  233. // Old fetch implementations hasn't body and ReadableStream implementation
  234. // See: https://github.com/shaka-project/shaka-player/issues/5088
  235. if (window.Response) {
  236. const response = new Response('');
  237. if (!response.body) {
  238. return false;
  239. }
  240. } else {
  241. return false;
  242. }
  243. return !!(window.fetch && !('polyfill' in window.fetch) &&
  244. window.AbortController);
  245. }
  246. };
  247. /**
  248. * @typedef {{
  249. * canceled: boolean,
  250. * timedOut: boolean
  251. * }}
  252. * @property {boolean} canceled
  253. * Indicates if the request was canceled.
  254. * @property {boolean} timedOut
  255. * Indicates if the request timed out.
  256. */
  257. shaka.net.HttpFetchPlugin.AbortStatus;
  258. /**
  259. * Overridden in unit tests, but compiled out in production.
  260. *
  261. * @const {function(string, !RequestInit)}
  262. * @private
  263. */
  264. shaka.net.HttpFetchPlugin.fetch_ = window.fetch;
  265. /**
  266. * Overridden in unit tests, but compiled out in production.
  267. *
  268. * @const {function(new: AbortController)}
  269. * @private
  270. */
  271. shaka.net.HttpFetchPlugin.AbortController_ = window.AbortController;
  272. /**
  273. * Overridden in unit tests, but compiled out in production.
  274. *
  275. * @const {function(new: ReadableStream, !Object)}
  276. * @private
  277. */
  278. shaka.net.HttpFetchPlugin.ReadableStream_ = window.ReadableStream;
  279. /**
  280. * Overridden in unit tests, but compiled out in production.
  281. *
  282. * @const {function(new: Headers)}
  283. * @private
  284. */
  285. shaka.net.HttpFetchPlugin.Headers_ = window.Headers;
  286. if (shaka.net.HttpFetchPlugin.isSupported()) {
  287. shaka.net.NetworkingEngine.registerScheme(
  288. 'http', shaka.net.HttpFetchPlugin.parse,
  289. shaka.net.NetworkingEngine.PluginPriority.PREFERRED,
  290. /* progressSupport= */ true);
  291. shaka.net.NetworkingEngine.registerScheme(
  292. 'https', shaka.net.HttpFetchPlugin.parse,
  293. shaka.net.NetworkingEngine.PluginPriority.PREFERRED,
  294. /* progressSupport= */ true);
  295. shaka.net.NetworkingEngine.registerScheme(
  296. 'blob', shaka.net.HttpFetchPlugin.parse,
  297. shaka.net.NetworkingEngine.PluginPriority.PREFERRED,
  298. /* progressSupport= */ true);
  299. }