| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const { URL } = require("url"); | 
					
						
							|  |  |  | const NormalModule = require("../NormalModule"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** @typedef {import("../Compiler")} Compiler */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class HttpUriPlugin { | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * Apply the plugin | 
					
						
							|  |  |  | 	 * @param {Compiler} compiler the compiler instance | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	apply(compiler) { | 
					
						
							|  |  |  | 		compiler.hooks.compilation.tap( | 
					
						
							|  |  |  | 			"HttpUriPlugin", | 
					
						
							|  |  |  | 			(compilation, { normalModuleFactory }) => { | 
					
						
							| 
									
										
										
										
											2020-07-06 23:45:09 +08:00
										 |  |  | 				normalModuleFactory.hooks.resolveForScheme | 
					
						
							|  |  |  | 					.for("http") | 
					
						
							|  |  |  | 					.tap("HttpUriPlugin", resourceData => { | 
					
						
							|  |  |  | 						const url = new URL(resourceData.resource); | 
					
						
							|  |  |  | 						resourceData.path = url.origin + url.pathname; | 
					
						
							|  |  |  | 						resourceData.query = url.search; | 
					
						
							|  |  |  | 						resourceData.fragment = url.hash; | 
					
						
							|  |  |  | 						return /** @type {true} */ (true); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 				NormalModule.getCompilationHooks(compilation) | 
					
						
							|  |  |  | 					.readResourceForScheme.for("http") | 
					
						
							|  |  |  | 					.tapAsync("HttpUriPlugin", (resource, module, callback) => { | 
					
						
							|  |  |  | 						return require("http").get(new URL(resource), res => { | 
					
						
							|  |  |  | 							if (res.statusCode !== 200) { | 
					
						
							|  |  |  | 								res.destroy(); | 
					
						
							|  |  |  | 								return callback( | 
					
						
							|  |  |  | 									new Error(`http request status code = ${res.statusCode}`) | 
					
						
							|  |  |  | 								); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 23:45:09 +08:00
										 |  |  | 							const bufferArr = []; | 
					
						
							| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 23:45:09 +08:00
										 |  |  | 							res.on("data", chunk => { | 
					
						
							|  |  |  | 								bufferArr.push(chunk); | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 23:45:09 +08:00
										 |  |  | 							res.on("end", () => { | 
					
						
							|  |  |  | 								if (!res.complete) { | 
					
						
							|  |  |  | 									return callback(new Error("http request was terminated")); | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-06 23:45:09 +08:00
										 |  |  | 								callback(null, Buffer.concat(bufferArr)); | 
					
						
							|  |  |  | 							}); | 
					
						
							| 
									
										
										
										
											2020-07-03 20:45:49 +08:00
										 |  |  | 						}); | 
					
						
							|  |  |  | 					}); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = HttpUriPlugin; |